mirror of
https://github.com/neovim/neovim.git
synced 2026-05-06 16:29:57 -04:00
dcaf9a60e9
closes: vim/vim#16419 https://github.com/vim/vim/commit/51754c8a498c39592250a077f56db89dd261995d Co-authored-by: Yochem van Rosmalen <git@yochem.nl>
16 lines
313 B
VimL
16 lines
313 B
VimL
" Vim filetype plugin
|
|
" Language: EditorConfig
|
|
" Maintainer: Riley Bruins <ribru17@gmail.com>
|
|
" Last Change: 2025 Jan 10
|
|
|
|
if exists('b:did_ftplugin')
|
|
finish
|
|
endif
|
|
let b:did_ftplugin = 1
|
|
|
|
setl comments=:#,:; commentstring=#\ %s
|
|
|
|
setl omnifunc=syntaxcomplete#Complete
|
|
|
|
let b:undo_ftplugin = 'setl com< cms< ofu<'
|