From 0b7fd1dcc338c2ee7242ab080a44c7d849c3c8d1 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 29 Dec 2018 22:23:27 +1300 Subject: Correct and adjust `normal!` keystrokes --- autoload/regex_escape.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/autoload/regex_escape.vim b/autoload/regex_escape.vim index 06b3c07..2390804 100644 --- a/autoload/regex_escape.vim +++ b/autoload/regex_escape.vim @@ -29,11 +29,11 @@ function! regex_escape#Operatorfunc(type) abort " Select or re-select text, depending on how we were invoked if a:type ==# 'line' - execute "normal! '[V']y" + normal! '[V']y elseif a:type ==# 'block' " Typically doesn't work too well - execute "normal! `[\`]y" " + execute "normal! `[\`]y" else - execute "normal! `[v`]y" + normal! `[v`]y endif " Determine the regex flavor to use; if one is defined for the buffer, use -- cgit v1.2.3 From fde2b13ade895a30e8be91bac2cb9e076d77e448 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 29 Dec 2018 22:25:58 +1300 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