From c43d277c44048299d804b89998b7215fdedf3282 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 13 Jun 2019 14:46:37 +1200 Subject: Use :set rather than :let where practical --- plugin/cursorline_current.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/cursorline_current.vim b/plugin/cursorline_current.vim index 1c09f91..0b698e3 100644 --- a/plugin/cursorline_current.vim +++ b/plugin/cursorline_current.vim @@ -27,13 +27,13 @@ augroup cursorline_current " to the same as the global value, to correspond with an active state. " autocmd BufEnter,FocusGained,InsertLeave,WinEnter * - \ let &l:cursorline = &g:cursorline + \ if &g:cursorline | setlocal cursorline | endif " On leaving a buffer, the Vim application window losing focus, entering " insert mode, or leaving a window, turn off the 'cursorline' option for the " linked window, so that if it's on, it will only be in the active one. " autocmd BufLeave,FocusGained,InsertEnter,WinLeave * - \ let &l:cursorline = 0 + \ setlocal nocursorline augroup END -- cgit v1.2.3 From 455a3bac66687dfcda3bd18cb1b5b12b6888c380 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 13 Jun 2019 14:47:05 +1200 Subject: Bump VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 38f77a6..7ec1d6d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.1 +2.1.0 -- cgit v1.2.3 From 0971370998c02504417b38a8abb2a4e79beb9151 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 13 Jun 2019 14:47:29 +1200 Subject: Update documentation date --- doc/cursorline_current.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/cursorline_current.txt b/doc/cursorline_current.txt index a3d67a5..6a54bb6 100644 --- a/doc/cursorline_current.txt +++ b/doc/cursorline_current.txt @@ -1,4 +1,4 @@ -*cursorline_current.txt* For Vim version 7.0 Last change: 2019 Jun 10 +*cursorline_current.txt* For Vim version 7.0 Last change: 2019 Jun 13 DESCRIPTION *cursorline_current* -- cgit v1.2.3