diff options
author | Christian Clason <c.clason@uni-graz.at> | 2024-11-09 19:16:42 +0100 |
---|---|---|
committer | Christian Clason <ch.clason+github@icloud.com> | 2024-11-10 11:05:26 +0100 |
commit | 5ff9a9397eabad2b6656f05b9ec2c8dd7025a0c1 (patch) | |
tree | 6defd4bb0b4f35ce42aaf59e6365780d45da78b3 | |
parent | c5f217db01eb9b07368604f86cbdba0cff8f21a3 (diff) | |
download | rneovim-5ff9a9397eabad2b6656f05b9ec2c8dd7025a0c1.tar.gz rneovim-5ff9a9397eabad2b6656f05b9ec2c8dd7025a0c1.tar.bz2 rneovim-5ff9a9397eabad2b6656f05b9ec2c8dd7025a0c1.zip |
vim-patch:a14c457: runtime(dune): use :setl instead of :set in ftplugin
closes: vim/vim#11419
https://github.com/vim/vim/commit/a14c457cad99621db7950b78e7d257c300b7d897
Co-authored-by: Dani Dickstein <daniel.dickstein@gmail.com>
-rw-r--r-- | runtime/ftplugin/dune.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/ftplugin/dune.vim b/runtime/ftplugin/dune.vim index 6e20a8fabb..7608d53527 100644 --- a/runtime/ftplugin/dune.vim +++ b/runtime/ftplugin/dune.vim @@ -6,13 +6,14 @@ " 2023 Aug 28 - Added undo_ftplugin (Vim Project) " 2018 Nov 03 - Added commentstring (Markus Mottl) " 2017 Sep 06 - Initial version (Etienne Millon) +" 2024 Nov 09 - use setl instead of :set if exists("b:did_ftplugin") finish endif let b:did_ftplugin=1 -set lisp +setl lisp " Comment string setl commentstring=;\ %s |