diff options
-rw-r--r-- | VERSION | 4 | ||||
-rw-r--r-- | vim/after/indent/help.vim | 6 | ||||
m--------- | vim/bundle/paste_insert | 0 | ||||
-rw-r--r-- | vim/indent/help.vim | 12 | ||||
-rw-r--r-- | vim/vimrc | 2 |
5 files changed, 15 insertions, 9 deletions
@@ -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 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/bundle/paste_insert b/vim/bundle/paste_insert -Subproject d754e506fdfb10688d721935c01d2615d11b2a1 +Subproject 6a8fda5f3dd282bddf4c9353fee08c17aaf6339 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<' @@ -1153,7 +1153,7 @@ nnoremap <expr> <Space> " 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 <C-C> <Plug>(InsertCancel) endif |