1
0
Fork 0
mirror of https://github.com/vim/vim synced 2025-03-19 16:25:11 +01:00
vim/runtime/ftplugin/elm.vim

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
369 B
VimL
Raw Normal View History

2020-06-07 21:07:18 +02:00
" Elm filetype plugin file
" Language: Elm
" Maintainer: Andreas Scharf <as@99n.de>
2022-04-27 15:25:03 +01:00
" Latest Revision: 2022-04-25
2020-06-07 21:07:18 +02:00
if exists("b:did_ftplugin")
finish
endif
let b:did_ftplugin = 1
let s:cpo_save = &cpo
set cpo&vim
setlocal comments=s1fl:{-,mb:\ ,ex:-},:--
setlocal commentstring=--\ %s
2022-04-27 15:25:03 +01:00
let b:undo_ftplugin = "setl com< cms<"
2020-06-07 21:07:18 +02:00
let &cpo = s:cpo_save
unlet s:cpo_save