aboutsummaryrefslogtreecommitdiff
path: root/vim/plugin
diff options
context:
space:
mode:
Diffstat (limited to 'vim/plugin')
-rw-r--r--vim/plugin/cursorline_current.vim7
1 files changed, 5 insertions, 2 deletions
diff --git a/vim/plugin/cursorline_current.vim b/vim/plugin/cursorline_current.vim
index 1668b69a..a552fe95 100644
--- a/vim/plugin/cursorline_current.vim
+++ b/vim/plugin/cursorline_current.vim
@@ -66,7 +66,10 @@ augroup cursorline_current
autocmd WinEnter * call s:Restore()
" Turn off 'cursorline' when in insert mode
- autocmd InsertEnter * call s:Suspend()
- autocmd InsertLeave * call s:Restore()
+ " Check g:cursorline_current_insert, in case the user doesn't want it
+ if get(g:, 'cursorline_current_insert', 1)
+ autocmd InsertEnter * call s:Suspend()
+ autocmd InsertLeave * call s:Restore()
+ endif
augroup END