diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-05-02 10:19:25 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-05-02 10:23:35 -0400 |
commit | 6a8436065ca7282569fd4d96b1c02a8ba8eaacf1 (patch) | |
tree | 57c7c58d216376a56fa65e217a80177624a5619f /runtime/ftplugin/lisp.vim | |
parent | 2081504a331f2ca97922056f6b42b8d0e6c2e306 (diff) | |
download | rneovim-6a8436065ca7282569fd4d96b1c02a8ba8eaacf1.tar.gz rneovim-6a8436065ca7282569fd4d96b1c02a8ba8eaacf1.tar.bz2 rneovim-6a8436065ca7282569fd4d96b1c02a8ba8eaacf1.zip |
vim-patch:9faec4e3d439
Update runtime files.
https://github.com/vim/vim/commit/9faec4e3d439968e21ad74e917aebb289df8f849
Omit vim9.
Diffstat (limited to 'runtime/ftplugin/lisp.vim')
-rw-r--r-- | runtime/ftplugin/lisp.vim | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/runtime/ftplugin/lisp.vim b/runtime/ftplugin/lisp.vim index 130f30b146..9825d2484a 100644 --- a/runtime/ftplugin/lisp.vim +++ b/runtime/ftplugin/lisp.vim @@ -14,13 +14,11 @@ endif " Don't load another plugin for this buffer let b:did_ftplugin = 1 -setl comments=:; +setl comments=:;;;;,:;;;,:;;,:;,sr:#\|,mb:\|,ex:\|# setl define=^\\s*(def\\k* setl formatoptions-=t setl iskeyword+=+,-,*,/,%,<,=,>,:,$,?,!,@-@,94 setl lisp setl commentstring=;%s -setl comments^=:;;;,:;;,sr:#\|,mb:\|,ex:\|# - let b:undo_ftplugin = "setlocal comments< define< formatoptions< iskeyword< lisp< commentstring<" |