From 75b96aeb4e77032d5f239635a4b538383a0751d1 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 18 Aug 2018 15:54:18 +1200 Subject: Revert "Let's try leaving netrw on again for a ... This reverts commit 60eab724a29101c54c2d5d1cccd56385a8e5a85c. --- vim/after/plugin/dist.vim | 1 + vim/plugin/dist.vim | 2 ++ 2 files changed, 3 insertions(+) diff --git a/vim/after/plugin/dist.vim b/vim/after/plugin/dist.vim index bc8995b6..4613925f 100644 --- a/vim/after/plugin/dist.vim +++ b/vim/after/plugin/dist.vim @@ -2,6 +2,7 @@ unlet! g:loaded_getscriptPlugin unlet! g:loaded_vimballPlugin unlet! g:loaded_logiPat +unlet! g:loaded_netrwPlugin unlet! g:loaded_rrhelper unlet! g:loaded_spellfile_plugin unlet! g:loaded_gzip diff --git a/vim/plugin/dist.vim b/vim/plugin/dist.vim index 37fc9042..f9cc6d18 100644 --- a/vim/plugin/dist.vim +++ b/vim/plugin/dist.vim @@ -7,6 +7,8 @@ let g:loaded_tarPlugin = 1 let g:loaded_zipPlugin = 1 " I prefer filtering text with Unix tools let g:loaded_logiPat = 1 +" The shell, tab completion, and 'wildmenu' are good enough +let g:loaded_netrwPlugin = 1 " I don't use Vim servers let g:loaded_rrhelper = 1 " I don't need extra spelling files -- cgit v1.2.3 From f010490dcbf07844f3b37b86d3adddcd508a2449 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 19 Aug 2018 20:00:58 +1200 Subject: Add option terminators or equivs to :compilers --- vim/compiler/bash.vim | 4 ++-- vim/compiler/ksh.vim | 4 ++-- vim/compiler/perlcritic.vim | 4 ++-- vim/compiler/php.vim | 4 ++-- vim/compiler/sh.vim | 4 ++-- vim/compiler/shellcheck.vim | 4 ++-- vim/compiler/vint.vim | 4 ++-- vim/compiler/zsh.vim | 4 ++-- 8 files changed, 16 insertions(+), 16 deletions(-) diff --git a/vim/compiler/bash.vim b/vim/compiler/bash.vim index 70997f92..832e9120 100644 --- a/vim/compiler/bash.vim +++ b/vim/compiler/bash.vim @@ -10,8 +10,8 @@ endif " 7.4.191 is the earliest version with the :S file name modifier, which we " really should use if we can if v:version >= 704 || v:version == 704 && has('patch191') - CompilerSet makeprg=bash\ -n\ %:S + CompilerSet makeprg=bash\ -n\ --\ %:S else - CompilerSet makeprg=bash\ -n\ % + CompilerSet makeprg=bash\ -n\ --\ % endif CompilerSet errorformat=%f:\ line\ %l:\ %m diff --git a/vim/compiler/ksh.vim b/vim/compiler/ksh.vim index 1b31ffa7..be552972 100644 --- a/vim/compiler/ksh.vim +++ b/vim/compiler/ksh.vim @@ -10,8 +10,8 @@ endif " 7.4.191 is the earliest version with the :S file name modifier, which we " really should use if we can if v:version >= 704 || v:version == 704 && has('patch191') - CompilerSet makeprg=ksh\ -n\ %:S + CompilerSet makeprg=ksh\ -n\ --\ %:S else - CompilerSet makeprg=ksh\ -n\ % + CompilerSet makeprg=ksh\ -n\ --\ % endif CompilerSet errorformat=%f:\ %l:\ %m diff --git a/vim/compiler/perlcritic.vim b/vim/compiler/perlcritic.vim index 03d21683..0d61487b 100644 --- a/vim/compiler/perlcritic.vim +++ b/vim/compiler/perlcritic.vim @@ -10,8 +10,8 @@ endif " 7.4.191 is the earliest version with the :S file name modifier, which we " really should use if we can if v:version >= 704 || v:version == 704 && has('patch191') - CompilerSet makeprg=perlcritic\ --verbose\ 1\ %:S + CompilerSet makeprg=perlcritic\ --verbose\ 1\ --\ %:S else - CompilerSet makeprg=perlcritic\ --verbose\ 1\ % + CompilerSet makeprg=perlcritic\ --verbose\ 1\ --\ % endif CompilerSet errorformat=%f:%l:%c:%m diff --git a/vim/compiler/php.vim b/vim/compiler/php.vim index aeb171c5..2d5f4f69 100644 --- a/vim/compiler/php.vim +++ b/vim/compiler/php.vim @@ -10,9 +10,9 @@ endif " 7.4.191 is the earliest version with the :S file name modifier, which we " really should use if we can if v:version >= 704 || v:version == 704 && has('patch191') - CompilerSet makeprg=php\ -lq\ %:S + CompilerSet makeprg=php\ -lq\ -f\ %:S else - CompilerSet makeprg=php\ -lq\ % + CompilerSet makeprg=php\ -lq\ -f\ % endif " Here be copy-pasted dragons diff --git a/vim/compiler/sh.vim b/vim/compiler/sh.vim index ff5ed314..a62a00db 100644 --- a/vim/compiler/sh.vim +++ b/vim/compiler/sh.vim @@ -10,8 +10,8 @@ endif " 7.4.191 is the earliest version with the :S file name modifier, which we " really should use if we can if v:version >= 704 || v:version == 704 && has('patch191') - CompilerSet makeprg=sh\ -n\ %:S + CompilerSet makeprg=sh\ -n\ --\ %:S else - CompilerSet makeprg=sh\ -n\ % + CompilerSet makeprg=sh\ -n\ --\ % endif CompilerSet errorformat=%f:\ %l:\ %m diff --git a/vim/compiler/shellcheck.vim b/vim/compiler/shellcheck.vim index 6d6498da..354291f6 100644 --- a/vim/compiler/shellcheck.vim +++ b/vim/compiler/shellcheck.vim @@ -20,8 +20,8 @@ endif " 7.4.191 is the earliest version with the :S file name modifier, which we " really should use if we can if v:version >= 704 || v:version == 704 && has('patch191') - execute s:set . '\ %:S' + execute s:set . '\ --\ %:S' else - execute s:set . '\ %' + execute s:set . '\ --\ %' endif CompilerSet errorformat=%f:%l:%c:\ %m\ [SC%n] diff --git a/vim/compiler/vint.vim b/vim/compiler/vint.vim index 54d0fc4d..db75d3c6 100644 --- a/vim/compiler/vint.vim +++ b/vim/compiler/vint.vim @@ -10,8 +10,8 @@ endif " 7.4.191 is the earliest version with the :S file name modifier, which we " really should use if we can if v:version >= 704 || v:version == 704 && has('patch191') - CompilerSet makeprg=vint\ %:S + CompilerSet makeprg=vint\ --\ %:S else - CompilerSet makeprg=vint\ % + CompilerSet makeprg=vint\ --\ % endif CompilerSet errorformat=%f:%l:%c:\ %m diff --git a/vim/compiler/zsh.vim b/vim/compiler/zsh.vim index 685a01ad..c9290b8d 100644 --- a/vim/compiler/zsh.vim +++ b/vim/compiler/zsh.vim @@ -10,8 +10,8 @@ endif " 7.4.191 is the earliest version with the :S file name modifier, which we " really should use if we can if v:version >= 704 || v:version == 704 && has('patch191') - CompilerSet makeprg=zsh\ -n\ %:S + CompilerSet makeprg=zsh\ -n\ --\ %:S else - CompilerSet makeprg=zsh\ -n\ % + CompilerSet makeprg=zsh\ -n\ --\ % endif CompilerSet errorformat=%f:%l:\ %m -- cgit v1.2.3 From 0b3caa34cbed48794ae1c19d221dbc02553076b8 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 20 Aug 2018 10:07:30 +1200 Subject: Don't clear away g:loaded_gzip --- vim/after/plugin/dist.vim | 1 - 1 file changed, 1 deletion(-) diff --git a/vim/after/plugin/dist.vim b/vim/after/plugin/dist.vim index 4613925f..f7491d66 100644 --- a/vim/after/plugin/dist.vim +++ b/vim/after/plugin/dist.vim @@ -5,6 +5,5 @@ unlet! g:loaded_logiPat unlet! g:loaded_netrwPlugin unlet! g:loaded_rrhelper unlet! g:loaded_spellfile_plugin -unlet! g:loaded_gzip unlet! g:loaded_tarPlugin unlet! g:loaded_zipPlugin -- cgit v1.2.3 From 6c42dee2e83f3a2790252f079f47301047e7f848 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Tue, 21 Aug 2018 14:14:41 +1200 Subject: Bump VERSION --- VERSION | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 53854eb4..487f6508 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -tejr dotfiles v1.55.0 -Thu Aug 16 11:28:48 UTC 2018 +tejr dotfiles v1.56.0 +Tue Aug 21 02:14:41 UTC 2018 -- cgit v1.2.3