mirror of
https://github.com/neovim/neovim.git
synced 2026-08-29 18:41:48 +00:00
vim-patch:7.4.754
Problem: Using CTRL-A in Visual mode does not work well. (Gary Johnson)
Solution: Make it increment all numbers in the Visual area. (Christian
Brabandt)
3a304b2382
This commit is contained in:
@@ -28,6 +28,7 @@ SCRIPTS := \
|
||||
test_charsearch.out \
|
||||
test_close_count.out \
|
||||
test_command_count.out \
|
||||
test_increment.out \
|
||||
|
||||
NEW_TESTS =
|
||||
|
||||
@@ -131,7 +132,7 @@ test1.out: .gdbinit test1.in
|
||||
|
||||
# Check if the test.out file matches test.ok.
|
||||
@/bin/sh -c "if test -f test.out; then \
|
||||
if diff test.out $*.ok; then \
|
||||
if diff -u test.out $*.ok; then \
|
||||
mv -f test.out $*.out; \
|
||||
else \
|
||||
echo $* FAILED >> test.log; \
|
||||
|
||||
Reference in New Issue
Block a user