From da80a4cfa817315937d7d627a16c0888ed8d22d6 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 11 Nov 2017 01:16:09 +1300 Subject: Add author/license boilerplate to all plugins user_ftplugin.vim and user_indent.vim seem to be missing it. --- vim/plugin/user_ftplugin.vim | 3 +++ vim/plugin/user_indent.vim | 3 +++ 2 files changed, 6 insertions(+) (limited to 'vim') diff --git a/vim/plugin/user_ftplugin.vim b/vim/plugin/user_ftplugin.vim index d9739bda..d19348ae 100644 --- a/vim/plugin/user_ftplugin.vim +++ b/vim/plugin/user_ftplugin.vim @@ -4,6 +4,9 @@ " b:undo_ftplugin in Vim >= 7.0. This allows you to undo your own ftplugin " files the same way you can the core ones. " +" Author: Tom Ryder +" License: Same as Vim itself +" if exists('g:loaded_user_ftplugin') \ || !has('autocmd') \ || &compatible diff --git a/vim/plugin/user_indent.vim b/vim/plugin/user_indent.vim index 01596bdb..84b966d6 100644 --- a/vim/plugin/user_indent.vim +++ b/vim/plugin/user_indent.vim @@ -4,6 +4,9 @@ " b:undo_indent in Vim >= 7.0. This allows you to undo your own indent files " the same way you can the core ones. " +" Author: Tom Ryder +" License: Same as Vim itself +" if exists('g:loaded_user_indent') \ || !has('autocmd') \ || &compatible -- cgit v1.2.3 From 6e9eb56edb2c5ec48e6daac0b46219c8a2bd24c0 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 12 Nov 2017 14:42:59 +1300 Subject: Move lots of local Vim config into vim/after This is a relatively drastic change that should have been done progressively, but I got carried away in ripping everything out and putting it back in again. Reading the documentation for writing a Vim script (:help usr_41.txt), I am convinced that all of the content that was in the vim/ftplugin directory and some of the vim/indent directory actually belonged in vim/after/ftplugin and vim/after/indent respectively. This is because the section on filetypes makes the distinction between replacing the core filetype or indent plugins and merely adding to or editing them after the fact; from :help ftplugin: > If you do want to use the default plugin, but overrule one of the > settings, you can write the different setting in a script: > > setlocal textwidth=70 > > Now write this in the "after" directory, so that it gets sourced after > the distributed "vim.vim" ftplugin after-directory. For Unix this > would be "~/.vim/after/ftplugin/vim.vim". Note that the default > plugin will have set "b:did_ftplugin", but it is ignored here. Therefore, I have deleted the user_indent.vim and user_ftplugin.vim plugins and their documentation that I wrote, and their ftplugin.vim and indent.vim shims in ~/.vim, in an attempt to make these plugins elegantly undo-ready, and instead embraced the way the documentation and $VIMRUNTIME structure seems to suggest. I broke the ftplugin files up by function and put them under subdirectories of vim/after named by filetype, as the 'runtimepath' layout permits. In doing so, I also carefully applied the documentation's advice: * Short-circuiting repeated loads * Checking for existing mappings using the prefix approach * Avoiding repeated function declarations overwriting each other * Guarding against 'cpotions' mangling things (by simply short-circuiting if 'compatible' is set). I've made the b:undo_ftplugin and b:undo_indent commands less forgiving, and append commands to it inline with the initial establishment of the setup they're reversing, including checking that the b:undo_* variable actually exists in the first place. For the indentation scripts, however, three of the four files originally in vim/indent actually do belong there: 1. csv.vim, because it doesn't have an indent file in the core. 2. tsv.vim, because it doesn't have an indent file in the core. 3. php.vim, because it does what ftplugins are allowed to do in preventing the core indent rules from running at all. The indent/vim.vim rules, however, have been moved to after/indent/vim.vim, because the tweaks it makes for two-space indentation are designed to supplement the core indent rules, not replace them. Finally, I've adjusted Makefile targets accordingly for the above, given the vim/ftplugin directory is now empty and there are three new directories in vim/after to install. We wrap these under a single `install-vim-after` parent target for convenience. The `install-vim-after-ftplugin` target accommodates the additional level of filetype directories beneath it. --- vim/after/ftplugin/html/lint.vim | 29 +++++++++++++++++ vim/after/ftplugin/html/tidy.vim | 29 +++++++++++++++++ vim/after/ftplugin/html/url_link.vim | 47 +++++++++++++++++++++++++++ vim/after/ftplugin/mail/format_flowed.vim | 13 ++++++++ vim/after/ftplugin/markdown/spell.vim | 15 +++++++++ vim/after/ftplugin/perl/check.vim | 29 +++++++++++++++++ vim/after/ftplugin/perl/lint.vim | 29 +++++++++++++++++ vim/after/ftplugin/perl/tidy.vim | 29 +++++++++++++++++ vim/after/ftplugin/sh/bash_han.vim | 15 +++++++++ vim/after/ftplugin/sh/check.vim | 40 +++++++++++++++++++++++ vim/after/ftplugin/sh/lint.vim | 40 +++++++++++++++++++++++ vim/after/ftplugin/sh/posix.vim | 25 +++++++++++++++ vim/after/ftplugin/text/spell.vim | 15 +++++++++ vim/after/ftplugin/vim/lint.vim | 29 +++++++++++++++++ vim/after/indent/vim.vim | 5 +++ vim/doc/user_ftplugin.txt | 27 ---------------- vim/doc/user_indent.txt | 27 ---------------- vim/ftplugin.vim | 1 - vim/ftplugin/html.vim | 36 --------------------- vim/ftplugin/mail.vim | 6 ---- vim/ftplugin/markdown.vim | 8 ----- vim/ftplugin/perl.vim | 20 ------------ vim/ftplugin/sh.vim | 53 ------------------------------- vim/ftplugin/text.vim | 8 ----- vim/ftplugin/vim.vim | 10 ------ vim/indent.vim | 1 - vim/indent/csv.vim | 10 ++++-- vim/indent/tsv.vim | 10 ++++-- vim/indent/vim.vim | 9 ------ vim/plugin/auto_backupdir.vim | 3 +- vim/plugin/auto_swapdir.vim | 3 +- vim/plugin/auto_undodir.vim | 4 +-- vim/plugin/big_file_options.vim | 4 +-- vim/plugin/command_typos.vim | 4 +-- vim/plugin/copy_linebreak.vim | 4 +-- vim/plugin/fixed_join.vim | 3 +- vim/plugin/mail_mutt.vim | 4 +-- vim/plugin/strip_trailing_whitespace.vim | 3 +- vim/plugin/toggle_option_flag.vim | 4 +-- vim/plugin/user_ftplugin.vim | 27 ---------------- vim/plugin/user_indent.vim | 27 ---------------- 41 files changed, 413 insertions(+), 292 deletions(-) create mode 100644 vim/after/ftplugin/html/lint.vim create mode 100644 vim/after/ftplugin/html/tidy.vim create mode 100644 vim/after/ftplugin/html/url_link.vim create mode 100644 vim/after/ftplugin/mail/format_flowed.vim create mode 100644 vim/after/ftplugin/markdown/spell.vim create mode 100644 vim/after/ftplugin/perl/check.vim create mode 100644 vim/after/ftplugin/perl/lint.vim create mode 100644 vim/after/ftplugin/perl/tidy.vim create mode 100644 vim/after/ftplugin/sh/bash_han.vim create mode 100644 vim/after/ftplugin/sh/check.vim create mode 100644 vim/after/ftplugin/sh/lint.vim create mode 100644 vim/after/ftplugin/sh/posix.vim create mode 100644 vim/after/ftplugin/text/spell.vim create mode 100644 vim/after/ftplugin/vim/lint.vim create mode 100644 vim/after/indent/vim.vim delete mode 100644 vim/doc/user_ftplugin.txt delete mode 100644 vim/doc/user_indent.txt delete mode 100644 vim/ftplugin.vim delete mode 100644 vim/ftplugin/html.vim delete mode 100644 vim/ftplugin/mail.vim delete mode 100644 vim/ftplugin/markdown.vim delete mode 100644 vim/ftplugin/perl.vim delete mode 100644 vim/ftplugin/sh.vim delete mode 100644 vim/ftplugin/text.vim delete mode 100644 vim/ftplugin/vim.vim delete mode 100644 vim/indent.vim delete mode 100644 vim/indent/vim.vim delete mode 100644 vim/plugin/user_ftplugin.vim delete mode 100644 vim/plugin/user_indent.vim (limited to 'vim') diff --git a/vim/after/ftplugin/html/lint.vim b/vim/after/ftplugin/html/lint.vim new file mode 100644 index 00000000..f6648056 --- /dev/null +++ b/vim/after/ftplugin/html/lint.vim @@ -0,0 +1,29 @@ +" Only do this when not done yet for this buffer +" Also do nothing if 'compatible' enabled +if exists('b:did_ftplugin_html_lint') || &compatible + finish +endif +let b:did_ftplugin_html_lint = 1 +let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_html_lint' + +" Set up a mapping for the linter, if we're allowed +if !exists('g:no_plugin_maps') && !exists('g:no_html_maps') + + " Define a mapping target + nnoremap + \ HtmlLint + \ :write !tidy -errors -quiet + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap HtmlLint' + + " If there isn't a key mapping already, use a default one + if !hasmapto('HtmlLint') + nmap + \ l + \ HtmlLint + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap l' + endif + +endif diff --git a/vim/after/ftplugin/html/tidy.vim b/vim/after/ftplugin/html/tidy.vim new file mode 100644 index 00000000..e5d24541 --- /dev/null +++ b/vim/after/ftplugin/html/tidy.vim @@ -0,0 +1,29 @@ +" Only do this when not done yet for this buffer +" Also do nothing if 'compatible' enabled +if exists('b:did_ftplugin_html_tidy') || &compatible + finish +endif +let b:did_ftplugin_html_tidy = 1 +let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_html_tidy' + +" Set up a mapping for the tidier, if we're allowed +if !exists('g:no_plugin_maps') && !exists('g:no_html_maps') + + " Define a mapping target + nnoremap + \ HtmlTidy + \ :%!tidy -quiet + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap HtmlTidy' + + " If there isn't a key mapping already, use a default one + if !hasmapto('HtmlTidy') + nmap + \ t + \ HtmlTidy + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap t' + endif + +endif diff --git a/vim/after/ftplugin/html/url_link.vim b/vim/after/ftplugin/html/url_link.vim new file mode 100644 index 00000000..cb0d6253 --- /dev/null +++ b/vim/after/ftplugin/html/url_link.vim @@ -0,0 +1,47 @@ +" Only do this when not done yet for this buffer +" Also do nothing if 'compatible' enabled +if exists('b:did_ftplugin_html_url_link') || &compatible + finish +endif +let b:did_ftplugin_html_url_link = 1 +let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_html_url_link' + +" Make a bare URL into a link to itself +if !exists('*s:UrlLink') + function! s:UrlLink() + + " Yank this whole whitespace-separated word + normal! yiW + " Open a link tag + normal! i + " Paste the URL into the quotes + normal! hP + " Move to the end of the link text URL + normal! E + " Close the link tag + normal! a + + endfunction +endif + +" Set up a mapping for the function, if we're allowed +if !exists('g:no_plugin_maps') && !exists('g:no_html_maps') + + " Define a mapping target + nnoremap + \ HtmlUrlLink + \ :call HtmlUrlLink() + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap HtmlUrlLink' + + " If there isn't a key mapping already, use a default one + if !hasmapto('HtmlUrlLink') + nmap + \ r + \ HtmlUrlLink + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap r' + endif + +endif diff --git a/vim/after/ftplugin/mail/format_flowed.vim b/vim/after/ftplugin/mail/format_flowed.vim new file mode 100644 index 00000000..b1b308fb --- /dev/null +++ b/vim/after/ftplugin/mail/format_flowed.vim @@ -0,0 +1,13 @@ +" Only do this when not done yet for this buffer +" Also do nothing if 'compatible' enabled +if exists('b:did_ftplugin_mail_format_flowed') || &compatible + finish +endif +let b:did_ftplugin_mail_format_flowed = 1 +let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_mail_format_flowed' + +" Use trailing whitespace to denote continued paragraph +setlocal formatoptions+=w +let b:undo_ftplugin = b:undo_ftplugin + \ . '|setlocal formatoptions<' diff --git a/vim/after/ftplugin/markdown/spell.vim b/vim/after/ftplugin/markdown/spell.vim new file mode 100644 index 00000000..8f9ce4a4 --- /dev/null +++ b/vim/after/ftplugin/markdown/spell.vim @@ -0,0 +1,15 @@ +" Only do this when not done yet for this buffer +" Also do nothing if 'compatible' enabled +if exists('b:did_ftplugin_markdown_spell') || &compatible + finish +endif +let b:did_ftplugin_markdown_spell = 1 +let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_markdown_spell' + +" Spellcheck documents by default +if has('syntax') + setlocal spell + let b:undo_ftplugin = b:undo_ftplugin + \ . '|setlocal spell<' +endif diff --git a/vim/after/ftplugin/perl/check.vim b/vim/after/ftplugin/perl/check.vim new file mode 100644 index 00000000..24a174ff --- /dev/null +++ b/vim/after/ftplugin/perl/check.vim @@ -0,0 +1,29 @@ +" Only do this when not done yet for this buffer +" Also do nothing if 'compatible' enabled +if exists('b:did_ftplugin_perl_check') || &compatible + finish +endif +let b:did_ftplugin_perl_check = 1 +let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_perl_check' + +" Set up a mapping for the checker, if we're allowed +if !exists('g:no_plugin_maps') && !exists('g:no_perl_maps') + + " Define a mapping target + nnoremap + \ PerlCheck + \ :write !perl -c + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap PerlCheck' + + " If there isn't a key mapping already, use a default one + if !hasmapto('PerlCheck') + nmap + \ c + \ PerlCheck + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap c' + endif + +endif diff --git a/vim/after/ftplugin/perl/lint.vim b/vim/after/ftplugin/perl/lint.vim new file mode 100644 index 00000000..8f6915f4 --- /dev/null +++ b/vim/after/ftplugin/perl/lint.vim @@ -0,0 +1,29 @@ +" Only do this when not done yet for this buffer +" Also do nothing if 'compatible' enabled +if exists('b:did_ftplugin_perl_lint') || &compatible + finish +endif +let b:did_ftplugin_perl_lint = 1 +let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_perl_lint' + +" Set up a mapping for the linter, if we're allowed +if !exists('g:no_plugin_maps') && !exists('g:no_perl_maps') + + " Define a mapping target + nnoremap + \ PerlLint + \ :write !perlcritic + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap PerlLint' + + " If there isn't a key mapping already, use a default one + if !hasmapto('PerlLint') + nmap + \ l + \ PerlLint + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap l' + endif + +endif diff --git a/vim/after/ftplugin/perl/tidy.vim b/vim/after/ftplugin/perl/tidy.vim new file mode 100644 index 00000000..b2aa25c3 --- /dev/null +++ b/vim/after/ftplugin/perl/tidy.vim @@ -0,0 +1,29 @@ +" Only do this when not done yet for this buffer +" Also do nothing if 'compatible' enabled +if exists('b:did_ftplugin_perl_tidy') || &compatible + finish +endif +let b:did_ftplugin_perl_tidy = 1 +let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_perl_tidy' + +" Set up a mapping for the tidier, if we're allowed +if !exists('g:no_plugin_maps') && !exists('g:no_perl_maps') + + " Define a mapping target + nnoremap + \ PerlTidy + \ :%!perltidy + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap PerlTidy' + + " If there isn't a key mapping already, use a default one + if !hasmapto('PerlTidy') + nmap + \ t + \ PerlTidy + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap t' + endif + +endif diff --git a/vim/after/ftplugin/sh/bash_han.vim b/vim/after/ftplugin/sh/bash_han.vim new file mode 100644 index 00000000..c1997d7e --- /dev/null +++ b/vim/after/ftplugin/sh/bash_han.vim @@ -0,0 +1,15 @@ +" Only do this when not done yet for this buffer +" Also do nothing if 'compatible' enabled +if exists('b:did_ftplugin_sh_bash_han') || &compatible + finish +endif +let b:did_ftplugin_sh_bash_han = 1 +let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_sh_bash_han' + +" Use han(1df) as a man(1) wrapper for Bash files if available +if exists('b:is_bash') && executable('han') + setlocal keywordprg=han + let b:undo_ftplugin = b:undo_ftplugin + \ . '|setlocal keywordprg<' +endif diff --git a/vim/after/ftplugin/sh/check.vim b/vim/after/ftplugin/sh/check.vim new file mode 100644 index 00000000..5000137d --- /dev/null +++ b/vim/after/ftplugin/sh/check.vim @@ -0,0 +1,40 @@ +" Only do this when not done yet for this buffer +" Also do nothing if 'compatible' enabled +if exists('b:did_ftplugin_sh_check') || &compatible + finish +endif +let b:did_ftplugin_sh_check = 1 +let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_sh_check' + +" Choose checker based on shell family +if exists('b:is_bash') + let b:sh_check = 'write !bash -n' +elseif exists('b:is_kornshell') + let b:sh_check = 'write !ksh -n' +else + let b:sh_check = 'write !sh -n' +endif +let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:sh_check' + +" Set up a mapping for the checker, if we're allowed +if !exists('g:no_plugin_maps') && !exists('g:no_sh_maps') + + " Define a mapping target + nnoremap + \ ShCheck + \ :execute b:sh_check + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap ShCheck' + + " If there isn't a key mapping already, use a default one + if !hasmapto('ShCheck') + nmap + \ c + \ ShCheck + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap c' + endif + +endif diff --git a/vim/after/ftplugin/sh/lint.vim b/vim/after/ftplugin/sh/lint.vim new file mode 100644 index 00000000..54f86bea --- /dev/null +++ b/vim/after/ftplugin/sh/lint.vim @@ -0,0 +1,40 @@ +" Only do this when not done yet for this buffer +" Also do nothing if 'compatible' enabled +if exists('b:did_ftplugin_sh_lint') || &compatible + finish +endif +let b:did_ftplugin_sh_lint = 1 +let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_sh_lint' + +" Choose linter based on shell family +if exists('b:is_bash') + let b:sh_lint = 'write !shellcheck -s bash -' +elseif exists('b:is_kornshell') + let b:sh_lint = 'write !shellcheck -s ksh -' +else + let b:sh_lint = 'write !shellcheck -s sh -' +endif +let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:sh_lint' + +" Set up a mapping for the linter, if we're allowed +if !exists('g:no_plugin_maps') && !exists('g:no_sh_maps') + + " Define a mapping target + nnoremap + \ ShLint + \ :execute b:sh_lint + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap ShLint' + + " If there isn't a key mapping already, use a default one + if !hasmapto('ShLint') + nmap + \ l + \ ShLint + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap l' + endif + +endif diff --git a/vim/after/ftplugin/sh/posix.vim b/vim/after/ftplugin/sh/posix.vim new file mode 100644 index 00000000..ef6b9b93 --- /dev/null +++ b/vim/after/ftplugin/sh/posix.vim @@ -0,0 +1,25 @@ +" Only do this when not done yet for this buffer +" Also do nothing if 'compatible' enabled +if exists('b:did_ftplugin_sh_posix') || &compatible + finish +endif +let b:did_ftplugin_sh_posix = 1 +let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_sh_posix' + +" +" If we have a #!/bin/sh shebang and filetype.vim determined we were neither +" POSIX nor Bash nor Korn shell, we'll guess POSIX, just because it's far more +" likely that's what I want to write than plain Bourne shell. +" +" You're supposed to be able to do this by setting g:is_posix, but if that's +" set, the syntax file ends up setting g:is_kornshell for you too, for reasons +" I don't really understand. This method works though, and is cleaner than +" the other workaround I had been trying. +" +if exists('b:is_sh') + unlet b:is_sh + if !exists('b:is_bash') && !exists('b:is_kornshell') + let b:is_posix = 1 + endif +endif diff --git a/vim/after/ftplugin/text/spell.vim b/vim/after/ftplugin/text/spell.vim new file mode 100644 index 00000000..107723e5 --- /dev/null +++ b/vim/after/ftplugin/text/spell.vim @@ -0,0 +1,15 @@ +" Only do this when not done yet for this buffer +" Also do nothing if 'compatible' enabled +if exists('b:did_ftplugin_text_spell') || &compatible + finish +endif +let b:did_ftplugin_text_spell = 1 +let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_text_spell' + +" Spellcheck documents by default +if has('syntax') + setlocal spell + let b:undo_ftplugin = b:undo_ftplugin + \ . '|setlocal spell<' +endif diff --git a/vim/after/ftplugin/vim/lint.vim b/vim/after/ftplugin/vim/lint.vim new file mode 100644 index 00000000..5e4ea601 --- /dev/null +++ b/vim/after/ftplugin/vim/lint.vim @@ -0,0 +1,29 @@ +" Only do this when not done yet for this buffer +" Also do nothing if 'compatible' enabled +if exists('b:did_ftplugin_vim_lint') || &compatible + finish +endif +let b:did_ftplugin_vim_lint = 1 +let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_vim_lint' + +" Set up a mapping for the linter, if we're allowed +if !exists('g:no_plugin_maps') && !exists('g:no_vim_maps') + + " Define a mapping target + nnoremap + \ VimLint + \ :write !vint -s /dev/stdin + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap VimLint' + + " If there isn't a key mapping already, use a default one + if !hasmapto('VimLint') + nmap + \ l + \ VimLint + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap l' + endif + +endif diff --git a/vim/after/indent/vim.vim b/vim/after/indent/vim.vim new file mode 100644 index 00000000..b87964a4 --- /dev/null +++ b/vim/after/indent/vim.vim @@ -0,0 +1,5 @@ +" Observe VimL conventions for two-space indents +setlocal shiftwidth=2 +setlocal softtabstop=2 +let b:undo_indent = b:undo_indent + \ . '|setlocal shiftwidth< softtabstop<' diff --git a/vim/doc/user_ftplugin.txt b/vim/doc/user_ftplugin.txt deleted file mode 100644 index 603bf4d0..00000000 --- a/vim/doc/user_ftplugin.txt +++ /dev/null @@ -1,27 +0,0 @@ -*user_ftplugin.txt* "Undo" for local ftplugin files - -Author: Tom Ryder -License: Same terms as Vim itself (see |license|) - -This plugin adds an |autocmd| hook to |FileType| to run before the one that the -core ftplugin.vim sets, to allow setting a b:undo_user_ftplugin variable with -code to |:execute| when the filetype is next changed, in much the same way that -the core files in Vim >= 7.0x support a b:|undo_ftplugin| variable. - -This will only work if it's loaded before ftplugin.vim so that the autocmd -hooks run in the right order. There are a couple of ways to do this: - -1. Create your own ~/.vim/ftplugin.vim with the following contents: - - silent! runtime plugin/user_ftplugin.vim - - This will then be sourced before the core ftplugin.vim runs. This is the - suggested method. - -2. Run the same line in your ~/.vimrc before your `filetype ftplugin on` line. - -See also: user_indent.vim. - -This plugin lives in Tom Ryder's "dotfiles" suite, and will eventually be spun -off into a separate distribution as it solidifies and this documentation -improves. diff --git a/vim/doc/user_indent.txt b/vim/doc/user_indent.txt deleted file mode 100644 index e0152e32..00000000 --- a/vim/doc/user_indent.txt +++ /dev/null @@ -1,27 +0,0 @@ -*user_indent.txt* "Undo" for local indent files - -Author: Tom Ryder -License: Same terms as Vim itself (see |license|) - -This plugin adds an |autocmd| hook to |FileType| to run before the one that the -core indent.vim sets, to allow setting a b:undo_user_indent variable with -code to |:execute| when the filetype is next changed, in much the same way that -the core files in Vim >= 7.0x support a b:|undo_indent| variable. - -This will only work if it's loaded before indent.vim so that the autocmd hooks -run in the right order. There are a couple of ways to do this: - -1. Create your own ~/.vim/indent.vim with the following contents: - - silent! runtime plugin/user_indent.vim - - This will then be sourced before the core indent.vim runs. This is the - suggested method. - -2. Run the same line in your ~/.vimrc before your `filetype indent on` line. - -See also: user_ftplugin.vim. - -This plugin lives in Tom Ryder's "dotfiles" suite, and will eventually be spun -off into a separate distribution as it solidifies and this documentation -improves. diff --git a/vim/ftplugin.vim b/vim/ftplugin.vim deleted file mode 100644 index 21665dad..00000000 --- a/vim/ftplugin.vim +++ /dev/null @@ -1 +0,0 @@ -silent! runtime plugin/user_ftplugin.vim diff --git a/vim/ftplugin/html.vim b/vim/ftplugin/html.vim deleted file mode 100644 index d2c6a3e3..00000000 --- a/vim/ftplugin/html.vim +++ /dev/null @@ -1,36 +0,0 @@ -" Run `tidy -errors -quiet` over buffer -nnoremap - \ c - \ :write !tidy -errors -quiet - -" Filter buffer through `tidy` -nnoremap - \ t - \ :%!tidy -quiet - -" Make a bare URL into a link to itself -function! s:UrlLink() - - " Yank this whole whitespace-separated word - normal! yiW - " Open a link tag - normal! i - " Paste the URL into the quotes - normal! hP - " Move to the end of the link text URL - normal! E - " Close the link tag - normal! a - -endfunction - -" Mapping for the function above -nnoremap - \ r - \ :call UrlLink() - -" Unload this filetype plugin -let b:undo_user_ftplugin - \ = 'silent! nunmap c' - \ . '|silent! nunmap t' - \ . '|silent! nunmap r' diff --git a/vim/ftplugin/mail.vim b/vim/ftplugin/mail.vim deleted file mode 100644 index 697ce499..00000000 --- a/vim/ftplugin/mail.vim +++ /dev/null @@ -1,6 +0,0 @@ -" Use trailing whitespace to denote continued paragraph -setlocal formatoptions+=w - -" Unload this filetype plugin -let b:undo_user_ftplugin - \ = 'setlocal formatoptions<' diff --git a/vim/ftplugin/markdown.vim b/vim/ftplugin/markdown.vim deleted file mode 100644 index f26fb156..00000000 --- a/vim/ftplugin/markdown.vim +++ /dev/null @@ -1,8 +0,0 @@ -" Spellcheck documents by default -if has('syntax') - setlocal spell -endif - -" Unload this filetype plugin -let b:undo_user_ftplugin - \ = 'silent! setlocal spell<' diff --git a/vim/ftplugin/perl.vim b/vim/ftplugin/perl.vim deleted file mode 100644 index 5549e33d..00000000 --- a/vim/ftplugin/perl.vim +++ /dev/null @@ -1,20 +0,0 @@ -" Run `perl -c` over buffer -nnoremap - \ c - \ :write !perl -c - -" Run `perlcritic` over buffer -nnoremap - \ l - \ :write !perlcritic - -" Filter buffer through `perltidy` -nnoremap - \ t - \ :%!perltidy - -" Unload this filetype plugin -let b:undo_user_ftplugin - \ = 'silent! nunmap c' - \ . '|silent! nunmap l' - \ . '|silent! nunmap t' diff --git a/vim/ftplugin/sh.vim b/vim/ftplugin/sh.vim deleted file mode 100644 index 60e8b6c4..00000000 --- a/vim/ftplugin/sh.vim +++ /dev/null @@ -1,53 +0,0 @@ -" -" If we have a #!/bin/sh shebang and filetype.vim determined we were neither -" POSIX nor Bash nor Korn shell, we'll guess POSIX, just because it's far more -" likely that's what I want to write than plain Bourne shell. -" -" You're supposed to be able to do this by setting g:is_posix, but if that's -" set, the syntax file ends up setting g:is_kornshell for you too, for reasons -" I don't really understand. This method works though, and is cleaner than -" the other workaround I had been trying. -" -if exists('b:is_sh') - unlet b:is_sh - if !exists('b:is_bash') && !exists('b:is_kornshell') - let b:is_posix = 1 - endif -endif - -" Use han(1df) as a man(1) wrapper for Bash files if available -if exists('b:is_bash') - \ && executable('han') - setlocal keywordprg=han -endif - -" Map checker based on shell family -if exists('b:is_bash') - let b:sh_check = 'write !bash -n' -elseif exists('b:is_kornshell') - let b:sh_check = 'write !ksh -n' -else - let b:sh_check = 'write !sh -n' -endif -nnoremap - \ c - \ :execute b:sh_check - -" Map linter based on shell family -if exists('b:is_bash') - let b:sh_lint = 'write !shellcheck -s bash -' -elseif exists('b:is_kornshell') - let b:sh_lint = 'write !shellcheck -s ksh -' -else - let b:sh_lint = 'write !shellcheck -s sh -' -endif -nnoremap - \ l - \ :execute b:sh_lint - -" Unload this filetype plugin -let b:undo_user_ftplugin - \ = 'setlocal keywordprg<' - \ . '|unlet! b:sh_check b:sh_lint' - \ . '|silent! nunmap c' - \ . '|silent! nunmap l' diff --git a/vim/ftplugin/text.vim b/vim/ftplugin/text.vim deleted file mode 100644 index f26fb156..00000000 --- a/vim/ftplugin/text.vim +++ /dev/null @@ -1,8 +0,0 @@ -" Spellcheck documents by default -if has('syntax') - setlocal spell -endif - -" Unload this filetype plugin -let b:undo_user_ftplugin - \ = 'silent! setlocal spell<' diff --git a/vim/ftplugin/vim.vim b/vim/ftplugin/vim.vim deleted file mode 100644 index e8113134..00000000 --- a/vim/ftplugin/vim.vim +++ /dev/null @@ -1,10 +0,0 @@ -" Run `vint` over buffer -" /dev/stdin is not optimal here; it's widely implemented, but not POSIX. -" `vint` does not seem to have another way to parse standard input. -nnoremap - \ l - \ :write !vint -s /dev/stdin - -" Unload this filetype plugin -let b:undo_user_ftplugin - \ = 'silent! nunmap l' diff --git a/vim/indent.vim b/vim/indent.vim deleted file mode 100644 index baedf89b..00000000 --- a/vim/indent.vim +++ /dev/null @@ -1 +0,0 @@ -silent! runtime plugin/user_indent.vim diff --git a/vim/indent/csv.vim b/vim/indent/csv.vim index ae2b6f6c..d092838f 100644 --- a/vim/indent/csv.vim +++ b/vim/indent/csv.vim @@ -1,7 +1,11 @@ +" Only do this when not done yet for this buffer +if exists('b:did_indent') + finish +endif +let b:did_indent = 1 + " Manual indenting and literal tabs for CSVs setlocal noautoindent setlocal noexpandtab - -" Unload this indent plugin -let b:undo_user_indent +let b:undo_indent \ = 'setlocal autoindent< expandtab<' diff --git a/vim/indent/tsv.vim b/vim/indent/tsv.vim index 759602ed..56721a4c 100644 --- a/vim/indent/tsv.vim +++ b/vim/indent/tsv.vim @@ -1,7 +1,11 @@ +" Only do this when not done yet for this buffer +if exists('b:did_indent') + finish +endif +let b:did_indent = 1 + " Manual indenting and literal tabs for TSVs setlocal noautoindent setlocal noexpandtab - -" Unload this indent plugin -let b:undo_user_indent +let b:undo_indent \ = 'setlocal autoindent< expandtab<' diff --git a/vim/indent/vim.vim b/vim/indent/vim.vim deleted file mode 100644 index 138b9205..00000000 --- a/vim/indent/vim.vim +++ /dev/null @@ -1,9 +0,0 @@ -" Observe VimL conventions for two-space indents -setlocal shiftwidth=2 -setlocal softtabstop=2 -setlocal tabstop=2 - -" Unload this indent plugin; suppress errors because ancient Vim can't use the -" '<' suffix syntax for resetting local integer -let b:undo_user_indent - \ = 'silent! setlocal shiftwidth< softtabstop< tabstop<' diff --git a/vim/plugin/auto_backupdir.vim b/vim/plugin/auto_backupdir.vim index f15e7ce6..d15c3150 100644 --- a/vim/plugin/auto_backupdir.vim +++ b/vim/plugin/auto_backupdir.vim @@ -5,8 +5,7 @@ " Author: Tom Ryder " License: Same as Vim itself " -if exists('g:loaded_auto_backupdir') - \ || &compatible +if exists('g:loaded_auto_backupdir') || &compatible finish endif let g:loaded_auto_backupdir = 1 diff --git a/vim/plugin/auto_swapdir.vim b/vim/plugin/auto_swapdir.vim index ea41a0f0..b5f9ce3a 100644 --- a/vim/plugin/auto_swapdir.vim +++ b/vim/plugin/auto_swapdir.vim @@ -5,8 +5,7 @@ " Author: Tom Ryder " License: Same as Vim itself " -if exists('g:loaded_auto_swapdir') - \ || &compatible +if exists('g:loaded_auto_swapdir') || &compatible finish endif let g:loaded_auto_swapdir = 1 diff --git a/vim/plugin/auto_undodir.vim b/vim/plugin/auto_undodir.vim index 1d20ba95..9a686fb1 100644 --- a/vim/plugin/auto_undodir.vim +++ b/vim/plugin/auto_undodir.vim @@ -5,9 +5,7 @@ " Author: Tom Ryder " License: Same as Vim itself " -if exists('g:loaded_auto_undodir') - \ || !has('persistent_undo') - \ || &compatible +if exists('g:loaded_auto_undodir') || &compatible || !has('persistent_undo') finish endif let g:loaded_auto_undodir = 1 diff --git a/vim/plugin/big_file_options.vim b/vim/plugin/big_file_options.vim index cdced67d..cbbacc42 100644 --- a/vim/plugin/big_file_options.vim +++ b/vim/plugin/big_file_options.vim @@ -5,9 +5,7 @@ " Author: Tom Ryder " License: Same as Vim itself " -if exists('g:loaded_big_file_options') - \ || !has('autocmd') - \ || &compatible +if exists('g:loaded_big_file_options') || &compatible || !has('autocmd') finish endif let g:loaded_big_file_options = 1 diff --git a/vim/plugin/command_typos.vim b/vim/plugin/command_typos.vim index 60245a30..afc04ed3 100644 --- a/vim/plugin/command_typos.vim +++ b/vim/plugin/command_typos.vim @@ -7,9 +7,7 @@ " Author: Tom Ryder " License: Same as Vim itself " -if exists('g:loaded_command_typos') - \ || !has('user_commands') - \ || &compatible +if exists('g:loaded_command_typos') || &compatible || !has('user_commands') finish endif let g:loaded_command_typos = 1 diff --git a/vim/plugin/copy_linebreak.vim b/vim/plugin/copy_linebreak.vim index 732acfea..158282bf 100644 --- a/vim/plugin/copy_linebreak.vim +++ b/vim/plugin/copy_linebreak.vim @@ -6,9 +6,7 @@ " Author: Tom Ryder " License: Same as Vim itself " -if exists('g:loaded_copy_linebreak') - \ || !has('linebreak') - \ || &compatible +if exists('g:loaded_copy_linebreak') || &compatible || !has('linebreak') finish endif let g:loaded_copy_linebreak = 1 diff --git a/vim/plugin/fixed_join.vim b/vim/plugin/fixed_join.vim index 2c9e1d92..83977c2f 100644 --- a/vim/plugin/fixed_join.vim +++ b/vim/plugin/fixed_join.vim @@ -5,8 +5,7 @@ " Author: Tom Ryder " License: Same as Vim itself " -if exists('g:loaded_fixed_join') - \ || &compatible +if exists('g:loaded_fixed_join') || &compatible finish endif let g:loaded_fixed_join = 1 diff --git a/vim/plugin/mail_mutt.vim b/vim/plugin/mail_mutt.vim index 9bb4abd4..24ce01dd 100644 --- a/vim/plugin/mail_mutt.vim +++ b/vim/plugin/mail_mutt.vim @@ -5,9 +5,7 @@ " Author: Tom Ryder " License: Same as Vim itself " -if exists('g:loaded_mail_mutt') - \ || !has('user_commands') - \ || &compatible +if exists('g:loaded_mail_mutt') || &compatible || !has('user_commands') finish endif let g:loaded_mail_mutt = 1 diff --git a/vim/plugin/strip_trailing_whitespace.vim b/vim/plugin/strip_trailing_whitespace.vim index 1264a11f..1b6d2f38 100644 --- a/vim/plugin/strip_trailing_whitespace.vim +++ b/vim/plugin/strip_trailing_whitespace.vim @@ -5,8 +5,7 @@ " Author: Tom Ryder " License: Same as Vim itself " -if exists('g:loaded_strip_trailing_whitespace') - \ || &compatible +if exists('g:loaded_strip_trailing_whitespace') || &compatible finish endif let g:loaded_strip_trailing_whitespace = 1 diff --git a/vim/plugin/toggle_option_flag.vim b/vim/plugin/toggle_option_flag.vim index dcc26cce..5c848368 100644 --- a/vim/plugin/toggle_option_flag.vim +++ b/vim/plugin/toggle_option_flag.vim @@ -5,9 +5,7 @@ " Author: Tom Ryder " License: Same as Vim itself " -if exists('g:loaded_toggle_option_flag') - \ || !has('user_commands') - \ || &compatible +if exists('g:loaded_toggle_option_flag') || &compatible || !has('user_commands') finish endif let g:loaded_toggle_option_flag = 1 diff --git a/vim/plugin/user_ftplugin.vim b/vim/plugin/user_ftplugin.vim deleted file mode 100644 index d19348ae..00000000 --- a/vim/plugin/user_ftplugin.vim +++ /dev/null @@ -1,27 +0,0 @@ -" -" user_ftplugin.vim: When switching filetypes, look for a b:undo_user_ftplugin -" variable and use it in much the same way the core's ftplugin.vim does -" b:undo_ftplugin in Vim >= 7.0. This allows you to undo your own ftplugin -" files the same way you can the core ones. -" -" Author: Tom Ryder -" License: Same as Vim itself -" -if exists('g:loaded_user_ftplugin') - \ || !has('autocmd') - \ || &compatible - finish -endif -let g:loaded_user_ftplugin = 1 - -function! s:LoadUserFtplugin() - if exists('b:undo_user_ftplugin') - execute b:undo_user_ftplugin - unlet b:undo_user_ftplugin - endif -endfunction - -augroup user_ftplugin - autocmd! - autocmd FileType * call s:LoadUserFtplugin() -augroup END diff --git a/vim/plugin/user_indent.vim b/vim/plugin/user_indent.vim deleted file mode 100644 index 84b966d6..00000000 --- a/vim/plugin/user_indent.vim +++ /dev/null @@ -1,27 +0,0 @@ -" -" user_indent.vim: When switching filetypes, look for a b:undo_user_indent -" variable and use it in much the same way the core's indent.vim does -" b:undo_indent in Vim >= 7.0. This allows you to undo your own indent files -" the same way you can the core ones. -" -" Author: Tom Ryder -" License: Same as Vim itself -" -if exists('g:loaded_user_indent') - \ || !has('autocmd') - \ || &compatible - finish -endif -let g:loaded_user_indent = 1 - -function! s:LoadUserIndent() - if exists('b:undo_user_indent') - execute b:undo_user_indent - unlet b:undo_user_indent - endif -endfunction - -augroup user_indent - autocmd! - autocmd FileType * call s:LoadUserIndent() -augroup END -- cgit v1.2.3 From 6f0336f247705aeddc24b6c340e72ce81ca2a500 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 12 Nov 2017 16:32:44 +1300 Subject: Exclude SC1090 (failed source) shellcheck error This error seems to be raised when ShellCheck can't source a file because its filename is not known until runtime. I don't want it to do that anyway, so I've just excluded it by default. --- vim/after/ftplugin/sh/lint.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'vim') diff --git a/vim/after/ftplugin/sh/lint.vim b/vim/after/ftplugin/sh/lint.vim index 54f86bea..b6377966 100644 --- a/vim/after/ftplugin/sh/lint.vim +++ b/vim/after/ftplugin/sh/lint.vim @@ -9,11 +9,11 @@ let b:undo_ftplugin = b:undo_ftplugin " Choose linter based on shell family if exists('b:is_bash') - let b:sh_lint = 'write !shellcheck -s bash -' + let b:sh_lint = 'write !shellcheck -e SC1090 -s bash -' elseif exists('b:is_kornshell') - let b:sh_lint = 'write !shellcheck -s ksh -' + let b:sh_lint = 'write !shellcheck -e SC1090 -s ksh -' else - let b:sh_lint = 'write !shellcheck -s sh -' + let b:sh_lint = 'write !shellcheck -e SC1090 -s sh -' endif let b:undo_ftplugin = b:undo_ftplugin \ . '|unlet b:sh_lint' -- cgit v1.2.3 From a2281bd121949f2215ee9257e28e2c0966f3f003 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 12 Nov 2017 16:38:09 +1300 Subject: Add guards for presence of b:undo_* var This variable is not set in older Vims (early 6.x), and I think it's worth guarding for. --- vim/after/ftplugin/html/lint.vim | 20 ++++++++++++++------ vim/after/ftplugin/html/tidy.vim | 18 ++++++++++++------ vim/after/ftplugin/html/url_link.vim | 18 ++++++++++++------ vim/after/ftplugin/mail/format_flowed.vim | 12 ++++++++---- vim/after/ftplugin/markdown/spell.vim | 12 ++++++++---- vim/after/ftplugin/perl/check.vim | 18 ++++++++++++------ vim/after/ftplugin/perl/lint.vim | 18 ++++++++++++------ vim/after/ftplugin/perl/tidy.vim | 18 ++++++++++++------ vim/after/ftplugin/sh/bash_han.vim | 12 ++++++++---- vim/after/ftplugin/sh/check.vim | 24 ++++++++++++++++-------- vim/after/ftplugin/sh/lint.vim | 24 ++++++++++++++++-------- vim/after/ftplugin/sh/posix.vim | 6 ++++-- vim/after/ftplugin/text/spell.vim | 12 ++++++++---- vim/after/ftplugin/vim/lint.vim | 18 ++++++++++++------ vim/after/indent/vim.vim | 6 ++++-- 15 files changed, 158 insertions(+), 78 deletions(-) (limited to 'vim') diff --git a/vim/after/ftplugin/html/lint.vim b/vim/after/ftplugin/html/lint.vim index f6648056..3ac760ed 100644 --- a/vim/after/ftplugin/html/lint.vim +++ b/vim/after/ftplugin/html/lint.vim @@ -4,8 +4,12 @@ if exists('b:did_ftplugin_html_lint') || &compatible finish endif let b:did_ftplugin_html_lint = 1 -let b:undo_ftplugin = b:undo_ftplugin - \ . '|unlet b:did_ftplugin_html_lint' + +" Initialise undo variable if not already done +if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_html_lint' +endif " Set up a mapping for the linter, if we're allowed if !exists('g:no_plugin_maps') && !exists('g:no_html_maps') @@ -14,16 +18,20 @@ if !exists('g:no_plugin_maps') && !exists('g:no_html_maps') nnoremap \ HtmlLint \ :write !tidy -errors -quiet - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap HtmlLint' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap HtmlLint' + endif " If there isn't a key mapping already, use a default one if !hasmapto('HtmlLint') nmap \ l \ HtmlLint - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap l' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap l' + endif endif endif diff --git a/vim/after/ftplugin/html/tidy.vim b/vim/after/ftplugin/html/tidy.vim index e5d24541..519a7cd6 100644 --- a/vim/after/ftplugin/html/tidy.vim +++ b/vim/after/ftplugin/html/tidy.vim @@ -4,8 +4,10 @@ if exists('b:did_ftplugin_html_tidy') || &compatible finish endif let b:did_ftplugin_html_tidy = 1 -let b:undo_ftplugin = b:undo_ftplugin - \ . '|unlet b:did_ftplugin_html_tidy' +if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_html_tidy' +endif " Set up a mapping for the tidier, if we're allowed if !exists('g:no_plugin_maps') && !exists('g:no_html_maps') @@ -14,16 +16,20 @@ if !exists('g:no_plugin_maps') && !exists('g:no_html_maps') nnoremap \ HtmlTidy \ :%!tidy -quiet - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap HtmlTidy' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap HtmlTidy' + endif " If there isn't a key mapping already, use a default one if !hasmapto('HtmlTidy') nmap \ t \ HtmlTidy - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap t' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap t' + endif endif endif diff --git a/vim/after/ftplugin/html/url_link.vim b/vim/after/ftplugin/html/url_link.vim index cb0d6253..4f2d2526 100644 --- a/vim/after/ftplugin/html/url_link.vim +++ b/vim/after/ftplugin/html/url_link.vim @@ -4,8 +4,10 @@ if exists('b:did_ftplugin_html_url_link') || &compatible finish endif let b:did_ftplugin_html_url_link = 1 -let b:undo_ftplugin = b:undo_ftplugin - \ . '|unlet b:did_ftplugin_html_url_link' +if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_html_url_link' +endif " Make a bare URL into a link to itself if !exists('*s:UrlLink') @@ -32,16 +34,20 @@ if !exists('g:no_plugin_maps') && !exists('g:no_html_maps') nnoremap \ HtmlUrlLink \ :call HtmlUrlLink() - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap HtmlUrlLink' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap HtmlUrlLink' + endif " If there isn't a key mapping already, use a default one if !hasmapto('HtmlUrlLink') nmap \ r \ HtmlUrlLink - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap r' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap r' + endif endif endif diff --git a/vim/after/ftplugin/mail/format_flowed.vim b/vim/after/ftplugin/mail/format_flowed.vim index b1b308fb..040a1a51 100644 --- a/vim/after/ftplugin/mail/format_flowed.vim +++ b/vim/after/ftplugin/mail/format_flowed.vim @@ -4,10 +4,14 @@ if exists('b:did_ftplugin_mail_format_flowed') || &compatible finish endif let b:did_ftplugin_mail_format_flowed = 1 -let b:undo_ftplugin = b:undo_ftplugin - \ . '|unlet b:did_ftplugin_mail_format_flowed' +if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_mail_format_flowed' +endif " Use trailing whitespace to denote continued paragraph setlocal formatoptions+=w -let b:undo_ftplugin = b:undo_ftplugin - \ . '|setlocal formatoptions<' +if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|setlocal formatoptions<' +endif diff --git a/vim/after/ftplugin/markdown/spell.vim b/vim/after/ftplugin/markdown/spell.vim index 8f9ce4a4..bb344374 100644 --- a/vim/after/ftplugin/markdown/spell.vim +++ b/vim/after/ftplugin/markdown/spell.vim @@ -4,12 +4,16 @@ if exists('b:did_ftplugin_markdown_spell') || &compatible finish endif let b:did_ftplugin_markdown_spell = 1 -let b:undo_ftplugin = b:undo_ftplugin - \ . '|unlet b:did_ftplugin_markdown_spell' +if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_markdown_spell' +endif " Spellcheck documents by default if has('syntax') setlocal spell - let b:undo_ftplugin = b:undo_ftplugin - \ . '|setlocal spell<' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|setlocal spell<' + endif endif diff --git a/vim/after/ftplugin/perl/check.vim b/vim/after/ftplugin/perl/check.vim index 24a174ff..6b057c82 100644 --- a/vim/after/ftplugin/perl/check.vim +++ b/vim/after/ftplugin/perl/check.vim @@ -4,8 +4,10 @@ if exists('b:did_ftplugin_perl_check') || &compatible finish endif let b:did_ftplugin_perl_check = 1 -let b:undo_ftplugin = b:undo_ftplugin - \ . '|unlet b:did_ftplugin_perl_check' +if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_perl_check' +endif " Set up a mapping for the checker, if we're allowed if !exists('g:no_plugin_maps') && !exists('g:no_perl_maps') @@ -14,16 +16,20 @@ if !exists('g:no_plugin_maps') && !exists('g:no_perl_maps') nnoremap \ PerlCheck \ :write !perl -c - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap PerlCheck' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap PerlCheck' + endif " If there isn't a key mapping already, use a default one if !hasmapto('PerlCheck') nmap \ c \ PerlCheck - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap c' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap c' + endif endif endif diff --git a/vim/after/ftplugin/perl/lint.vim b/vim/after/ftplugin/perl/lint.vim index 8f6915f4..86740c81 100644 --- a/vim/after/ftplugin/perl/lint.vim +++ b/vim/after/ftplugin/perl/lint.vim @@ -4,8 +4,10 @@ if exists('b:did_ftplugin_perl_lint') || &compatible finish endif let b:did_ftplugin_perl_lint = 1 -let b:undo_ftplugin = b:undo_ftplugin - \ . '|unlet b:did_ftplugin_perl_lint' +if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_perl_lint' +endif " Set up a mapping for the linter, if we're allowed if !exists('g:no_plugin_maps') && !exists('g:no_perl_maps') @@ -14,16 +16,20 @@ if !exists('g:no_plugin_maps') && !exists('g:no_perl_maps') nnoremap \ PerlLint \ :write !perlcritic - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap PerlLint' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap PerlLint' + endif " If there isn't a key mapping already, use a default one if !hasmapto('PerlLint') nmap \ l \ PerlLint - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap l' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap l' + endif endif endif diff --git a/vim/after/ftplugin/perl/tidy.vim b/vim/after/ftplugin/perl/tidy.vim index b2aa25c3..18033a42 100644 --- a/vim/after/ftplugin/perl/tidy.vim +++ b/vim/after/ftplugin/perl/tidy.vim @@ -4,8 +4,10 @@ if exists('b:did_ftplugin_perl_tidy') || &compatible finish endif let b:did_ftplugin_perl_tidy = 1 -let b:undo_ftplugin = b:undo_ftplugin - \ . '|unlet b:did_ftplugin_perl_tidy' +if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_perl_tidy' +endif " Set up a mapping for the tidier, if we're allowed if !exists('g:no_plugin_maps') && !exists('g:no_perl_maps') @@ -14,16 +16,20 @@ if !exists('g:no_plugin_maps') && !exists('g:no_perl_maps') nnoremap \ PerlTidy \ :%!perltidy - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap PerlTidy' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap PerlTidy' + endif " If there isn't a key mapping already, use a default one if !hasmapto('PerlTidy') nmap \ t \ PerlTidy - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap t' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap t' + endif endif endif diff --git a/vim/after/ftplugin/sh/bash_han.vim b/vim/after/ftplugin/sh/bash_han.vim index c1997d7e..a160165c 100644 --- a/vim/after/ftplugin/sh/bash_han.vim +++ b/vim/after/ftplugin/sh/bash_han.vim @@ -4,12 +4,16 @@ if exists('b:did_ftplugin_sh_bash_han') || &compatible finish endif let b:did_ftplugin_sh_bash_han = 1 -let b:undo_ftplugin = b:undo_ftplugin - \ . '|unlet b:did_ftplugin_sh_bash_han' +if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_sh_bash_han' +endif " Use han(1df) as a man(1) wrapper for Bash files if available if exists('b:is_bash') && executable('han') setlocal keywordprg=han - let b:undo_ftplugin = b:undo_ftplugin - \ . '|setlocal keywordprg<' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|setlocal keywordprg<' + endif endif diff --git a/vim/after/ftplugin/sh/check.vim b/vim/after/ftplugin/sh/check.vim index 5000137d..334ec1db 100644 --- a/vim/after/ftplugin/sh/check.vim +++ b/vim/after/ftplugin/sh/check.vim @@ -4,8 +4,10 @@ if exists('b:did_ftplugin_sh_check') || &compatible finish endif let b:did_ftplugin_sh_check = 1 -let b:undo_ftplugin = b:undo_ftplugin - \ . '|unlet b:did_ftplugin_sh_check' +if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_sh_check' +endif " Choose checker based on shell family if exists('b:is_bash') @@ -15,8 +17,10 @@ elseif exists('b:is_kornshell') else let b:sh_check = 'write !sh -n' endif -let b:undo_ftplugin = b:undo_ftplugin - \ . '|unlet b:sh_check' +if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:sh_check' +endif " Set up a mapping for the checker, if we're allowed if !exists('g:no_plugin_maps') && !exists('g:no_sh_maps') @@ -25,16 +29,20 @@ if !exists('g:no_plugin_maps') && !exists('g:no_sh_maps') nnoremap \ ShCheck \ :execute b:sh_check - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap ShCheck' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap ShCheck' + endif " If there isn't a key mapping already, use a default one if !hasmapto('ShCheck') nmap \ c \ ShCheck - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap c' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap c' + endif endif endif diff --git a/vim/after/ftplugin/sh/lint.vim b/vim/after/ftplugin/sh/lint.vim index b6377966..8745a31e 100644 --- a/vim/after/ftplugin/sh/lint.vim +++ b/vim/after/ftplugin/sh/lint.vim @@ -4,8 +4,10 @@ if exists('b:did_ftplugin_sh_lint') || &compatible finish endif let b:did_ftplugin_sh_lint = 1 -let b:undo_ftplugin = b:undo_ftplugin - \ . '|unlet b:did_ftplugin_sh_lint' +if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_sh_lint' +endif " Choose linter based on shell family if exists('b:is_bash') @@ -15,8 +17,10 @@ elseif exists('b:is_kornshell') else let b:sh_lint = 'write !shellcheck -e SC1090 -s sh -' endif -let b:undo_ftplugin = b:undo_ftplugin - \ . '|unlet b:sh_lint' +if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:sh_lint' +endif " Set up a mapping for the linter, if we're allowed if !exists('g:no_plugin_maps') && !exists('g:no_sh_maps') @@ -25,16 +29,20 @@ if !exists('g:no_plugin_maps') && !exists('g:no_sh_maps') nnoremap \ ShLint \ :execute b:sh_lint - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap ShLint' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap ShLint' + endif " If there isn't a key mapping already, use a default one if !hasmapto('ShLint') nmap \ l \ ShLint - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap l' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap l' + endif endif endif diff --git a/vim/after/ftplugin/sh/posix.vim b/vim/after/ftplugin/sh/posix.vim index ef6b9b93..a1b2c7ff 100644 --- a/vim/after/ftplugin/sh/posix.vim +++ b/vim/after/ftplugin/sh/posix.vim @@ -4,8 +4,10 @@ if exists('b:did_ftplugin_sh_posix') || &compatible finish endif let b:did_ftplugin_sh_posix = 1 -let b:undo_ftplugin = b:undo_ftplugin - \ . '|unlet b:did_ftplugin_sh_posix' +if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_sh_posix' +endif " " If we have a #!/bin/sh shebang and filetype.vim determined we were neither diff --git a/vim/after/ftplugin/text/spell.vim b/vim/after/ftplugin/text/spell.vim index 107723e5..322090ca 100644 --- a/vim/after/ftplugin/text/spell.vim +++ b/vim/after/ftplugin/text/spell.vim @@ -4,12 +4,16 @@ if exists('b:did_ftplugin_text_spell') || &compatible finish endif let b:did_ftplugin_text_spell = 1 -let b:undo_ftplugin = b:undo_ftplugin - \ . '|unlet b:did_ftplugin_text_spell' +if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_text_spell' +endif " Spellcheck documents by default if has('syntax') setlocal spell - let b:undo_ftplugin = b:undo_ftplugin - \ . '|setlocal spell<' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|setlocal spell<' + endif endif diff --git a/vim/after/ftplugin/vim/lint.vim b/vim/after/ftplugin/vim/lint.vim index 5e4ea601..1b557593 100644 --- a/vim/after/ftplugin/vim/lint.vim +++ b/vim/after/ftplugin/vim/lint.vim @@ -4,8 +4,10 @@ if exists('b:did_ftplugin_vim_lint') || &compatible finish endif let b:did_ftplugin_vim_lint = 1 -let b:undo_ftplugin = b:undo_ftplugin - \ . '|unlet b:did_ftplugin_vim_lint' +if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_vim_lint' +endif " Set up a mapping for the linter, if we're allowed if !exists('g:no_plugin_maps') && !exists('g:no_vim_maps') @@ -14,16 +16,20 @@ if !exists('g:no_plugin_maps') && !exists('g:no_vim_maps') nnoremap \ VimLint \ :write !vint -s /dev/stdin - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap VimLint' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap VimLint' + endif " If there isn't a key mapping already, use a default one if !hasmapto('VimLint') nmap \ l \ VimLint - let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap l' + if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap l' + endif endif endif diff --git a/vim/after/indent/vim.vim b/vim/after/indent/vim.vim index b87964a4..0cb1d397 100644 --- a/vim/after/indent/vim.vim +++ b/vim/after/indent/vim.vim @@ -1,5 +1,7 @@ " Observe VimL conventions for two-space indents setlocal shiftwidth=2 setlocal softtabstop=2 -let b:undo_indent = b:undo_indent - \ . '|setlocal shiftwidth< softtabstop<' +if exists('b:undo_indent') + let b:undo_indent = b:undo_indent + \ . '|setlocal shiftwidth< softtabstop<' +endif -- cgit v1.2.3