diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2017-11-06 19:51:21 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2017-11-06 19:51:21 +1300 |
commit | b773d3324f108c292e00fc51cc07df90d10b7007 (patch) | |
tree | 93ba1042d490e8690f6321b70454d5fe5c609706 /vim/plugin | |
parent | Merge branch 'feature/vim-togglef...' into develop (diff) | |
download | dotfiles-b773d3324f108c292e00fc51cc07df90d10b7007.tar.gz dotfiles-b773d3324f108c292e00fc51cc07df90d10b7007.zip |
Use consistent comment layout for Vim plugins
Diffstat (limited to 'vim/plugin')
-rw-r--r-- | vim/plugin/command_typos.vim | 7 | ||||
-rw-r--r-- | vim/plugin/copy_linebreak.vim | 6 | ||||
-rw-r--r-- | vim/plugin/fixed_join.vim | 4 | ||||
-rw-r--r-- | vim/plugin/strip_trailing_whitespace.vim | 3 |
4 files changed, 11 insertions, 9 deletions
diff --git a/vim/plugin/command_typos.vim b/vim/plugin/command_typos.vim index adf2d0eb..60245a30 100644 --- a/vim/plugin/command_typos.vim +++ b/vim/plugin/command_typos.vim @@ -1,7 +1,8 @@ " -" Tolerate typos like :Wq, :Q, or :Qa and do what I mean, including any -" arguments or modifiers; I fat-finger these commands a lot because I type -" them so rapidly, and they don't correspond to any other commands I use +" command_typos.vim: Tolerate typos like :Wq, :Q, or :Qa and do what I mean, +" including any arguments or modifiers; I fat-finger these commands a lot +" because I type them so rapidly, and they don't correspond to any other +" commands I use " " Author: Tom Ryder <tom@sanctum.geek.nz> " License: Same as Vim itself diff --git a/vim/plugin/copy_linebreak.vim b/vim/plugin/copy_linebreak.vim index faeb1617..40f03393 100644 --- a/vim/plugin/copy_linebreak.vim +++ b/vim/plugin/copy_linebreak.vim @@ -1,7 +1,7 @@ " -" Bind a user-defined key sequence to turn off linebreak and toggle the -" showbreak characters and breakindent mode on and off, for convenience of -" copying multiple lines from terminal emulators. +" copy_linebreak.vim: Bind a user-defined key sequence to turn off linebreak +" and toggle the showbreak characters and breakindent mode on and off, for +" convenience of copying multiple lines from terminal emulators. " " Author: Tom Ryder <tom@sanctum.geek.nz> " License: Same as Vim itself diff --git a/vim/plugin/fixed_join.vim b/vim/plugin/fixed_join.vim index 18f563f3..4c7c7ed4 100644 --- a/vim/plugin/fixed_join.vim +++ b/vim/plugin/fixed_join.vim @@ -1,6 +1,6 @@ " -" User-defined key mapping to keep cursor in place when joining lines in -" normal mode +" fixed_join.vim: User-defined key mapping to keep cursor in place when +" joining lines in normal mode. " " Author: Tom Ryder <tom@sanctum.geek.nz> " License: Same as Vim itself diff --git a/vim/plugin/strip_trailing_whitespace.vim b/vim/plugin/strip_trailing_whitespace.vim index d5f5624a..9fb2e65b 100644 --- a/vim/plugin/strip_trailing_whitespace.vim +++ b/vim/plugin/strip_trailing_whitespace.vim @@ -1,5 +1,6 @@ " -" User-defined key mapping to strip trailing whitespace in the whole document +" strip_trailing_whitespace.vim: User-defined key mapping to strip trailing +" whitespace in the whole document. " " Author: Tom Ryder <tom@sanctum.geek.nz> " License: Same as Vim itself |