aboutsummaryrefslogtreecommitdiff
path: root/vim/autoload/colorscheme.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/autoload/colorscheme.vim')
-rw-r--r--vim/autoload/colorscheme.vim22
1 files changed, 22 insertions, 0 deletions
diff --git a/vim/autoload/colorscheme.vim b/vim/autoload/colorscheme.vim
new file mode 100644
index 00000000..349ee374
--- /dev/null
+++ b/vim/autoload/colorscheme.vim
@@ -0,0 +1,22 @@
+" Reset window-global value for 'cursorline' based on current colorscheme name
+function! colorscheme#UpdateCursorline(colors_name, list) abort
+
+ " Record current tab and window number so we can jump back once we're done
+ let l:tab = tabpagenr()
+ let l:win = winnr()
+
+ " Set the window-global value for 'cursorline' in each window of each tab;
+ " on if the current colorscheme is in the whitelist, and off otherwise; fire
+ " the WinEnter and WinLeave events so any other 'cursorline' related hooks
+ " can run too
+ "
+ let l:cursorline = index(a:list, a:colors_name) >= 0
+ tabdo windo let &g:cursorline = l:cursorline
+ \| silent doautocmd WinEnter,WinLeave
+
+ " Move back to the tab and window the user started in
+ execute l:tab . 'tabnext'
+ execute l:win . 'wincmd w'
+ \| silent doautocmd WinEnter
+
+endfunction