mirror of
https://github.com/vim/vim
synced 2025-03-15 14:27:53 +01:00
This is used to set the commentstring option. closes: #15601 Signed-off-by: Christian Brabandt <cb@256bit.org> Signed-off-by: Marc Jakobi <marc.jakobi@tiko.energy>
13 lines
240 B
VimL
13 lines
240 B
VimL
" Vim filetype plugin
|
|
" Language: Nu
|
|
" Maintainer: Marc Jakobi <marc@jakobi.dev>
|
|
" Last Change: 2024 Aug 31
|
|
|
|
if exists('b:did_ftplugin')
|
|
finish
|
|
endif
|
|
let b:did_ftplugin = 1
|
|
|
|
setlocal commentstring=#\ %s
|
|
|
|
let b:undo_ftplugin = 'setl com<'
|