Fix normal-mode repeat affected by visual-mode operator

This commit is contained in:
Junegunn Choi
2013-12-05 13:36:01 +09:00
parent f400e4d8d1
commit 62387b78e0
2 changed files with 24 additions and 1 deletions

View File

@@ -1545,6 +1545,23 @@ Expect:
bbb = 3
aaaa = 4
Do (Visual-mode operator is not repeatable and shouldn't affect normal-mode repeat):
\<Space>Aj=
3G
Vj\<Enter>\<Enter>=
7G
.
Expect:
a = 1
bb = 2
ccc = 3
dddd = 4
d = 1
cc = 2
bbb = 3
aaaa = 4
###########################################################
Execute:
Restore