From c3405f8d8f66d7d25cba97469ddb2e7538cccd69 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 4 Aug 2018 21:10:15 +1200 Subject: Correct backwards loop-skipping condition --- plugin/cursorline_current.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/cursorline_current.vim b/plugin/cursorline_current.vim index e42e96d..8a8ea91 100644 --- a/plugin/cursorline_current.vim +++ b/plugin/cursorline_current.vim @@ -43,7 +43,7 @@ function! s:Load() abort " Iterate through all the windows and suspend all but the current one for l:wnum in range(1, winnr('$')) - if l:wnum != l:wcur + if l:wnum == l:wcur continue endif execute l:wnum . 'wincmd w' -- cgit v1.2.3 From 6c14391ca90ba86ac285ca7f23194753dc2cd6c5 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 4 Aug 2018 21:10:33 +1200 Subject: Bump VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 6e8bf73..17e51c3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.0 +0.1.1 -- cgit v1.2.3