diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-11-27 16:22:48 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-11-27 16:22:48 +0100 |
commit | b96a7f325c9047d6a65424d40e493d3e0eff26b5 (patch) | |
tree | e1ede3b804b7e235b967d5a607eaa2d4a916fc63 /src/Makefile | |
parent | baf0344ed7031369a0f355beb062eb4c34e35261 (diff) | |
download | vim-git-b96a7f325c9047d6a65424d40e493d3e0eff26b5.tar.gz |
updated for version 7.4.530v7.4.530
Problem: Many commands take a count or range that is not using line
numbers.
Solution: For each command specify what kind of count it uses. For windows,
buffers and arguments have "$" and "." have a relevant meaning.
(Marcin Szamotulski)
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 6bf8c1737..13fe70b1a 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1890,10 +1890,12 @@ unittest unittests: $(UNITTEST_TARGETS) done # Run individual test, assuming that Vim was already compiled. -test1 test2 test3 test4 test5 test6 test7 test8 test9 \ +test1 \ + test_argument_count \ test_autoformat_join \ test_breakindent \ test_changelist \ + test_close_count \ test_eval \ test_insertcount \ test_listlbr \ @@ -1904,6 +1906,7 @@ test1 test2 test3 test4 test5 test6 test7 test8 test9 \ test_signs \ test_utf8 \ test_writefile \ + test2 test3 test4 test5 test6 test7 test8 test9 \ test10 test11 test12 test13 test14 test15 test16 test17 test18 test19 \ test20 test21 test22 test23 test24 test25 test26 test27 test28 test29 \ test30 test31 test32 test33 test34 test35 test36 test37 test38 test39 \ |