From 50dea6ef40330aca0ad11060a0766af776159488 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 20 Jun 2019 00:00:43 +1200 Subject: Flip a test --- vim/vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/vimrc b/vim/vimrc index 5121cce6..977cc05d 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -1153,7 +1153,7 @@ nnoremap " If the plugin isn't available, I just abandon CTRL-C to continue its " uselessness. " -if &loadplugins && globpath(&runtimepath, 'plugin/insert_cancel.vim') ==# '' +if &loadplugins && globpath(&runtimepath, 'plugin/insert_cancel.vim') !=# '' imap (InsertCancel) endif -- cgit v1.2.3 From 5cd1dbb216318f5210e0eccb958fdfffe74205f1 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 20 Jun 2019 00:17:43 +1200 Subject: Update vim-paste-insert to v0.2.0 --- vim/bundle/paste_insert | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/bundle/paste_insert b/vim/bundle/paste_insert index d754e506..6a8fda5f 160000 --- a/vim/bundle/paste_insert +++ b/vim/bundle/paste_insert @@ -1 +1 @@ -Subproject commit d754e506fdfb10688d721935c01d2615d11b2a12 +Subproject commit 6a8fda5f3dd282bddf4c9353fee08c17aaf63396 -- cgit v1.2.3 From 877b2f3593c52ae3c819b725f48271b93443a763 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 20 Jun 2019 00:38:10 +1200 Subject: Move Vim help indent rules to main indent ftplugin I assumed Vim's runtime files included indent rules for :help files, but they don't. --- vim/after/indent/help.vim | 6 ------ vim/indent/help.vim | 12 ++++++++++++ 2 files changed, 12 insertions(+), 6 deletions(-) delete mode 100644 vim/after/indent/help.vim create mode 100644 vim/indent/help.vim diff --git a/vim/after/indent/help.vim b/vim/after/indent/help.vim deleted file mode 100644 index 449e3b4a..00000000 --- a/vim/after/indent/help.vim +++ /dev/null @@ -1,6 +0,0 @@ -" Use hard tabs for Vim help -setlocal noexpandtab shiftwidth=0 tabstop=8 -if &softtabstop != -1 - let &softtabstop = &shiftwidth -endif -let b:undo_indent .= '|setlocal expandtab< shiftwidth< softtabstop< tabstop<' diff --git a/vim/indent/help.vim b/vim/indent/help.vim new file mode 100644 index 00000000..1edf64fb --- /dev/null +++ b/vim/indent/help.vim @@ -0,0 +1,12 @@ +" Only do this when not done yet for this buffer +if exists('b:did_indent') + finish +endif +let b:did_indent = 1 + +" Use hard tabs for editing Vim help files +setlocal noexpandtab shiftwidth=0 tabstop=8 +if &softtabstop != -1 + let &softtabstop = &shiftwidth +endif +let b:undo_indent = 'setlocal expandtab< shiftwidth< softtabstop< tabstop<' -- cgit v1.2.3 From 317448e09eb7e69bef3d385d92a1b3be314e6637 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 20 Jun 2019 09:06:33 +1200 Subject: Bump VERSION --- VERSION | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 6b758ce6..788f97a4 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -tejr dotfiles v6.33.0 -Wed, 19 Jun 2019 10:42:51 +0000 +tejr dotfiles v6.34.0 +Wed, 19 Jun 2019 21:06:33 +0000 -- cgit v1.2.3