mirror of
https://github.com/vim/vim
synced 2025-07-16 01:01:58 +00:00
runtime(dune): use :setl instead of :set in ftplugin
closes: #11419 Signed-off-by: Dani Dickstein <daniel.dickstein@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
5e7f43b6ac
commit
a14c457cad
@ -6,13 +6,14 @@
|
|||||||
" 2023 Aug 28 - Added undo_ftplugin (Vim Project)
|
" 2023 Aug 28 - Added undo_ftplugin (Vim Project)
|
||||||
" 2018 Nov 03 - Added commentstring (Markus Mottl)
|
" 2018 Nov 03 - Added commentstring (Markus Mottl)
|
||||||
" 2017 Sep 06 - Initial version (Etienne Millon)
|
" 2017 Sep 06 - Initial version (Etienne Millon)
|
||||||
|
" 2024 Nov 09 - use setl instead of :set
|
||||||
|
|
||||||
if exists("b:did_ftplugin")
|
if exists("b:did_ftplugin")
|
||||||
finish
|
finish
|
||||||
endif
|
endif
|
||||||
let b:did_ftplugin=1
|
let b:did_ftplugin=1
|
||||||
|
|
||||||
set lisp
|
setl lisp
|
||||||
|
|
||||||
" Comment string
|
" Comment string
|
||||||
setl commentstring=;\ %s
|
setl commentstring=;\ %s
|
||||||
|
Reference in New Issue
Block a user