2014-07-11 04:05:51 +00:00
|
|
|
" Vim filetype plugin file
|
2017-11-06 05:05:54 +01:00
|
|
|
" Language: Haskell
|
2018-10-29 23:38:41 +01:00
|
|
|
" Maintainer: Daniel Campoverde <alx@sillybytes.net>
|
2017-11-06 05:05:54 +01:00
|
|
|
" Previous Maintainer: Nikolai Weibull <now@bitwi.se>
|
2018-10-29 23:38:41 +01:00
|
|
|
" Latest Revision: 2018-08-27
|
2014-07-11 04:05:51 +00:00
|
|
|
|
|
|
|
|
if exists("b:did_ftplugin")
|
|
|
|
|
finish
|
|
|
|
|
endif
|
|
|
|
|
let b:did_ftplugin = 1
|
|
|
|
|
|
|
|
|
|
let s:cpo_save = &cpo
|
|
|
|
|
set cpo&vim
|
|
|
|
|
|
|
|
|
|
let b:undo_ftplugin = "setl com< cms< fo<"
|
|
|
|
|
|
|
|
|
|
setlocal comments=s1fl:{-,mb:-,ex:-},:-- commentstring=--\ %s
|
|
|
|
|
setlocal formatoptions-=t formatoptions+=croql
|
2018-10-29 23:38:41 +01:00
|
|
|
setlocal omnifunc=haskellcomplete#Complete
|
2023-08-21 09:55:12 +09:00
|
|
|
setlocal iskeyword+='
|
2014-07-11 04:05:51 +00:00
|
|
|
|
|
|
|
|
let &cpo = s:cpo_save
|
|
|
|
|
unlet s:cpo_save
|