diff options
author | Christian Clason <c.clason@uni-graz.at> | 2024-05-20 19:16:02 +0200 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2024-05-20 22:58:05 +0200 |
commit | 666911be917d60ba3a19a4b56bbf1e8c16da5297 (patch) | |
tree | b990ba15e5f1c5ef10a644d97da9a282e94d8d29 | |
parent | 91892f56b6cbf21c24474e8e5f0199f02a0602b1 (diff) | |
download | rneovim-666911be917d60ba3a19a4b56bbf1e8c16da5297.tar.gz rneovim-666911be917d60ba3a19a4b56bbf1e8c16da5297.tar.bz2 rneovim-666911be917d60ba3a19a4b56bbf1e8c16da5297.zip |
vim-patch:69dff00dfb37
runtime(verilog): set commentstring option
closes: vim/vim#14810
https://github.com/vim/vim/commit/69dff00dfb37077f4a80fd9635ea963889ad4b49
Co-authored-by: Riley Bruins <ribru17@hotmail.com>
-rw-r--r-- | runtime/ftplugin/verilog.vim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/ftplugin/verilog.vim b/runtime/ftplugin/verilog.vim index 83c3754e05..c20be25865 100644 --- a/runtime/ftplugin/verilog.vim +++ b/runtime/ftplugin/verilog.vim @@ -3,6 +3,7 @@ " Maintainer: Chih-Tsun Huang <cthuang@cs.nthu.edu.tw> " Last Change: 2017 Aug 25 by Chih-Tsun Huang " 2024 Jan 14 by Vim Project (browsefilter) +" 2024 May 20 by Riley Bruins <ribru17@gmail.com> (commentstring) " URL: http://www.cs.nthu.edu.tw/~cthuang/vim/ftplugin/verilog.vim " " Credits: @@ -22,7 +23,7 @@ let s:cpo_save = &cpo set cpo&vim " Undo the plugin effect -let b:undo_ftplugin = "setlocal fo< com< tw<" +let b:undo_ftplugin = "setlocal fo< com< tw< cms<" \ . "| unlet! b:browsefilter b:match_ignorecase b:match_words" " Set 'formatoptions' to break comment lines but not other lines, @@ -31,6 +32,7 @@ setlocal fo-=t fo+=croqlm1 " Set 'comments' to format dashed lists in comments. setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,:// +setlocal commentstring=//\ %s " Format comments to be up to 78 characters long if &textwidth == 0 |