Justin M. Keyes
7e74ba4108
Merge pull request #4804 from brcolow/vim-7.4.1150
...
vim-patch:7.4.{1150,1151}
2016-06-08 00:23:48 -04:00
Michael Ennen
24a329b53a
vim-patch:7.4.1151
...
Problem: Missing change to eval.c
Solution: Also change feedkeys().
5f8a14b9de
2016-06-07 01:14:25 -07:00
Shota
78c6f5c06d
vim-patch:7.4.1056 ( #4870 )
...
Problem: Don't know why finding spell suggestions is slow.
Solution: Add some code to gather profiling information.
ca1fe98517
2016-06-05 04:00:58 -04:00
Michael Ennen
40e7efe91c
vim-patch:7.4.1150
...
Problem: 'langmap' applies to the first character typed in Select mode.
(David Watson)
Solution: Check for SELECTMODE. (Christian Brabandt, closes #572 )
Add the 'x' flag to feedkeys().
25281634cd
2016-06-04 13:08:48 -07:00
shotat
14648cb741
vim-patch:7.4.1130
...
Problem: Memory leak in :vimgrep.
Solution: Call FreeWild(). (Yegappan Lakshmanan)
61ff4dd6a4
mark 1130 as NA
2016-06-05 01:12:02 +09:00
James McCoy
667c1dc4de
vim-patch:7.4.1108 ( #4872 )
...
Problem: Expanding "~" halfway a file name.
Solution: Handle the file name as one name. (Marco Hinz) Add a test.
Closes vim/vim#564 .
58adb14739
2016-06-03 23:18:40 -04:00
James McCoy
29e618c93c
vim-patch:7.4.1695
...
Problem: ":syn reset" clears the effect ":syn iskeyword". (James McCoy)
Solution: Remove clearing the syntax keywords.
8bc189e81a
2016-06-02 10:30:36 -04:00
James McCoy
1b6681e073
vim-patch:7.4.1142
...
Problem: Cannot define keyword characters for a syntax file.
Solution: Add the ":syn iskeyword" command. (Christian Brabandt)
b8060fe862
2016-06-02 10:28:46 -04:00
Justin M. Keyes
ecbc9dbdfe
Merge pull request #4740 from brcolow/vim-7.4.1276
...
vim-patch:7.4.1276
2016-05-29 00:05:49 -04:00
Justin M. Keyes
1e70ebe849
Merge pull request #4756 from jbradaric/vim-7.4.1119
...
vim-patch:7.4.1119,7.4.1123,7.4.1132,7.4.1161
2016-05-29 00:03:54 -04:00
Rui Abreu Ferreira
46aac2a09a
Windows: Don't build the TUI is systems where it is not supported
...
The TUI can be enabled/disabled at build time with -DFEAT_TUI, default is ON for
UNIX, and OFF for non UNIX. When off, Neovim prints a message to stderr, along
with a list of the server endpoints.
2016-05-27 23:43:40 +01:00
James McCoy
ccef5c9c77
vim-patch:7.4.1567
...
Problem: Crash in assert_fails().
Solution: Check for NULL. (Dominique Pelle) Add a test.
1abb502635
2016-05-25 21:02:52 -04:00
James McCoy
bc306ab5aa
vim-patch:7.4.1096
...
Problem: Need several lines to verify a command produces an error.
Solution: Add assert_fails(). (suggested by Nikolay Pavlov)
Make the quickfix alloc test actually work.
a260b87d9d
2016-05-25 17:13:05 -04:00
Björn Linse
c74ce334f2
Merge pull request #4624 from bfredl/timers
...
implement timers and process events during sleep
2016-05-25 11:00:54 +02:00
Justin M. Keyes
1e22076a65
Merge pull request #4741 from brcolow/vim-7.4.1281
...
vim-patch:7.4.1281
2016-05-25 04:30:50 -04:00
Michael Ennen
b37b5a59af
vim-patch:7.4.1281
...
Problem: No test for skipping over code that isn't evaluated.
Solution: Add a test with code that would fail when not skipped.
ea8c219ca8
Also add Test 91 from 7.4.1157 to test_viml.vim.
2016-05-25 00:52:38 -07:00
Justin M. Keyes
52348a1f8c
Merge pull request #4807 from jamessan/vim-7.4.1053
...
vim-patch:7.4.{1053,1071}
2016-05-25 02:54:08 -04:00
James McCoy
3d12192521
vim-patch:7.4.1064
...
Problem: When a spell file has single letter compounding creating
suggestions takes an awful long time.
Solution: Add th eNOCOMPOUNDSUGS flag.
7b877b3605
2016-05-24 22:07:37 -04:00
James McCoy
4a40231317
vim-patch:7.4.1071
...
Problem: New style tests are executed in arbitrary order.
Solution: Sort the test function names. (Hirohito Higashi)
Fix the quickfix test that depended on the order.
cfc0a350a9
2016-05-24 20:49:19 -04:00
James McCoy
da9b6b1de0
vim-patch:7.4.1053
...
Problem: Insufficient testing for quickfix commands.
Solution: Add a new style quickfix test. (Yegappan Lakshmanan)
da59dd5da6
2016-05-24 20:49:19 -04:00
Björn Linse
61e8adb25e
eval: implement timers. vim-patch: 7.4.1578, 7.4.1831
...
For the moment, timers are triggered during sleep,
but not in wait-for-input modes, like press-RETURN or f_getchar()
2016-05-24 22:08:56 +02:00
Justin M. Keyes
849d61b551
Merge pull request #4786 from jbradaric/vim-7.4.1516
...
vim-patch:7.4.1516,7.4.1521
2016-05-22 12:55:30 -04:00
Justin M. Keyes
d8d159c123
Merge pull request #4787 from brcolow/vim-7.4.1050
...
vim-patch:7.4.1050
2016-05-22 12:24:30 -04:00
Justin M. Keyes
c3ebfff18b
Merge pull request #4793 from brcolow/vim-7.4.1061
...
vim-patch:7.4.1061
2016-05-22 12:21:41 -04:00
Michael Ennen
7b57ab1480
vim-patch:7.4.1090
...
Problem: No tests for :hardcopy and related options.
Solution: Add test_hardcopy.
b5690794cf
2016-05-20 23:32:01 -07:00
James McCoy
853440053c
vim-patch:7.4.1034
...
Problem: There is no test for the 'backspace' option behavior.
Solution: Add a test. (Hirohito Higashi)
aac624bacd
2016-05-20 21:43:15 -04:00
James McCoy
d5168064bf
vim-patch:7.4.1018
...
Problem: Failure running tests.
Solution: Add missing change to list of old style tests.
af2dff8fbc
2016-05-20 21:43:15 -04:00
James McCoy
8a379aacd7
vim-patch:7.4.1017
...
Problem: When there is a backslash in an option ":set -=" doesn't work.
Solution: Handle a backslash better. (Jacob Niehus) Add a new test, merge
in old test.
8f79acdf7e
2016-05-20 21:43:15 -04:00
Justin M. Keyes
56cb1eb9f9
Merge pull request #4791 from brcolow/vim-7.4.1059
...
vim-patch:7.4.1059
2016-05-20 00:55:59 -04:00
Michael Ennen
620806ec07
vim-patch:7.4.1061
...
Problem: Compiler warning for ignoring return value of fwrite().
Solution: Do use the return value. (idea: Charles Campbell)
285bf84b4b
2016-05-19 21:47:52 -07:00
Michael Ennen
3e1ab7c8d6
vim-patch:7.4.1059
...
Problem: Code will never be executed.
Solution: Remove the code.
fd39d08fb6
2016-05-19 21:34:57 -07:00
Justin M. Keyes
1ead15ad81
Merge pull request #4790 from brcolow/vim-7.4.1057
...
vim-patch:7.4.1057
2016-05-20 00:24:35 -04:00
Michael Ennen
817438f16c
vim-patch:7.4.1057
...
Problem: Typos in the :options window.
Solution: Fix the typos. (Dominique Pelle)
2b7db933b0
2016-05-19 21:23:08 -07:00
Michael Ennen
2ebf365db9
vim-patch:7.4.1050
...
Problem: Warning for unused var with tiny features. (Tony Mechelynck)
Solution: Add #ifdef. Use vim_snprintf(). Reduce number of statements.
c71982b239
2016-05-19 14:46:38 -07:00
Jurica Bradaric
07382048b0
vim-patch:7.4.1521
...
Problem: File permission test fails on MS-Windows.
Solution: Expect a different permission.
8322e1f06e
2016-05-19 22:46:50 +02:00
Jurica Bradaric
093f8d5376
vim-patch:7.4.1516
...
Problem: Cannot change file permissions.
Solution: Add setfperm().
8049253b96
2016-05-19 22:46:50 +02:00
Justin M. Keyes
509089d053
Merge pull request #4657 from brcolow/vim-7.4.1036
...
vim-patch: 7.4.1036
2016-05-19 09:06:04 -04:00
James McCoy
b907c85fb4
vim-patch:7.4.1046
...
Problem: No test coverage for menus.
Solution: Load the standard menus and check there is no error.
2d6c800272
2016-05-18 22:15:56 -04:00
Justin M. Keyes
a69c3fbc8a
Merge pull request #4734 from jbradaric/vim-7.4.1102
...
vim-patch:7.4.1102, 7.4.1110, 7.4.1832
2016-05-18 00:08:47 -04:00
Jurica Bradaric
91796f70ed
vim-patch:7.4.1832
...
Problem: Memory leak in debug commands.
Solution: Free memory before overwriting the pointer. (hint by Justin Keyes)
dc303bce10
2016-05-17 21:00:31 +02:00
Jurica Bradaric
5fdb6043d7
vim-patch:7.4.1110
...
Problem: Test 108 fails when language is French.
Solution: Force English messages. (Dominique Pelle)
8c600052fa
2016-05-17 20:54:42 +02:00
Jurica Bradaric
b4cbfd3c08
vim-patch:7.4.1102
...
Problem: Debugger has no stack backtrace support.
Solution: Add "backtrace", "frame", "up" and "down" commands. (Alberto
Fanjul, closes vim/vim#433 )
f1f60f859c
2016-05-17 20:54:42 +02:00
Michael Ennen
087623aa3c
vim-patch: 7.4.1036
...
Problem: Only terminals with up to 256 colors work properly.
Solution: Use the 256 color behavior for all terminals with 256 or more
colors. (Robert de Bath)
fa03fd6c4a
2016-05-17 11:30:08 -07:00
Michael Ennen
cf29b4025d
vim-patch:7.4.1276
...
Problem: Warning for not using return value of fcntl().
Solution: Explicitly ignore the return value.
fbc4b4db3a
2016-05-17 11:24:25 -07:00
Justin M. Keyes
7d11cc6912
Merge pull request #4759 from jbradaric/vim-7.4.1513
...
vim-patch:7.4.1513
2016-05-17 02:35:12 -04:00
Michael Ennen
c3c409c70f
vim-patch:7.4.1728
...
patch 7.4.1728
Problem: The help for functions require a space after the "(".
Solution: Make CTRL-] on a function name ignore the arguments. (Hirohito
Higashi)
81edd171a9
2016-05-17 00:04:40 -04:00
James McCoy
850f91c51c
vim-patch:7.4.1571
...
patch 7.4.1571
Problem: No test for ":help"
Solution: Add a test for what 7.4.1568 fixed. (Higashi Higashi)
8e15ffcde7
2016-05-17 00:04:40 -04:00
Michael Ennen
10c819d453
vim-patch:7.4.1568
...
patch 7.4.1568
Problem: Using CTRL-] in help on option in parentheses doesn't work.
Solution: Skip the "(" in "('". (Hirohito Higashi)
00f9e0dbbd
2016-05-17 00:04:40 -04:00
Jurica Bradaric
d81556513d
vim-patch:7.4.1513
...
Problem: "J" fails if there are not enough lines. (Christian Neukirchen)
Solution: Reduce the count, only fail on the last line.
41e0f2f48f
2016-05-15 22:42:17 +02:00
James McCoy
8c399d6b37
vim-patch:7.4.1037
...
Problem: Using "q!" when there is a modified hidden buffer does not unload
the current buffer, resulting in the need to abandon it again.
Solution: When using "q!" unload the current buffer when needed. (Yasuhiro
Matsumoto, Hirohito Higashi)
027387f70c
2016-05-14 17:16:18 -04:00