aboutsummaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-20 00:00:43 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-20 00:00:43 +1200
commit50dea6ef40330aca0ad11060a0766af776159488 (patch)
tree7cbf111b90a2ebde18587d38403d673af6828902 /vim
parentMerge branch 'release/v6.33.0' into develop (diff)
downloaddotfiles-50dea6ef40330aca0ad11060a0766af776159488.tar.gz
dotfiles-50dea6ef40330aca0ad11060a0766af776159488.zip
Flip a test
Diffstat (limited to 'vim')
-rw-r--r--vim/vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 5121cce6..977cc05d 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -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