summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* patch 8.1.1222: build still fails on MS-Windowsv8.1.1222Bram Moolenaar2019-04-272-1/+3
| | | | | Problem: Build still fails on MS-Windows. Solution: Move another declaration to start of block.
* patch 8.1.1221: filtering does not work when listing marksv8.1.1221Bram Moolenaar2019-04-274-32/+55
| | | | | Problem: Filtering does not work when listing marks. Solution: Implement filtering marks. (Marcin Szamotulski, closes #3895)
* patch 8.1.1220: build fails on MS-Windowsv8.1.1220Bram Moolenaar2019-04-272-1/+3
| | | | | Problem: Build fails on MS-Windows. Solution: Move declaration to start of block.
* patch 8.1.1219: not checking for NULL return from alloc()v8.1.1219Bram Moolenaar2019-04-2714-36/+82
| | | | | Problem: Not checking for NULL return from alloc(). Solution: Add checks. (Martin Kunev, closes #4303, closes #4174)
* patch 8.1.1218: cannot set a directory for a tab pagev8.1.1218Bram Moolenaar2019-04-2720-66/+441
| | | | | Problem: Cannot set a directory for a tab page. Solution: Add the tab-local directory. (Yegappan Lakshmanan, closes #4212)
* patch 8.1.1217: MS-Windows: no space reserved for font quality namev8.1.1217Bram Moolenaar2019-04-272-1/+4
| | | | | Problem: MS-Windows: no space reserved for font quality name. Solution: Add quality_name length if present. (Ken Takata, closes #4311)
* patch 8.1.1216: mouse middle click is not testedv8.1.1216Bram Moolenaar2019-04-272-1/+53
| | | | | Problem: Mouse middle click is not tested. Solution: Add a test. (Dominique Pelle, closes #4310)
* patch 8.1.1215: "make clean" does not remove generated src/po filesv8.1.1215Bram Moolenaar2019-04-272-0/+3
| | | | | Problem: "make clean" does not remove generated src/po files. Solution: Remove the files for "make clean". (Christian Brabandt)
* patch 8.1.1214: old style testsv8.1.1214Bram Moolenaar2019-04-2711-131/+206
| | | | | | Problem: Old style tests. Solution: Move tests from test14 to new style test files. (Yegappan Lakshmanan, closes #4308)
* patch 8.1.1213: "make clean" in top dir does not cleanup indent test outputv8.1.1213Bram Moolenaar2019-04-274-13/+9
| | | | | | Problem: "make clean" in top dir does not cleanup indent test output. Solution: Clean the indent test output. Do not rely on the vim executable for that. (closes #4307)
* patch 8.1.1212: signal PWR is not testedv8.1.1212Bram Moolenaar2019-04-272-11/+41
| | | | | | Problem: Signal PWR is not tested. Solution: Test that PWR updates the swap file. (Dominique Pelle, closes #4312)
* patch 8.1.1211: not all user command code is testedv8.1.1211Bram Moolenaar2019-04-272-0/+96
| | | | | Problem: Not all user command code is tested. Solution: Add more tests.
* patch 8.1.1210: support for user commands is spread outv8.1.1210Bram Moolenaar2019-04-2729-1738/+1778
| | | | | | | Problem: Support for user commands is spread out. No good reason to make user commands optional. Solution: Move user command support to usercmd.c. Always enable the user_commands feature.
* patch 8.1.1209: clever compiler warns for buffer being too smallv8.1.1209Bram Moolenaar2019-04-263-3/+5
| | | | | Problem: Clever compiler warns for buffer being too small. Solution: Make the buffer bigger (even though it's not really needed).
* patch 8.1.1208: links to repository use wrong file namev8.1.1208Bram Moolenaar2019-04-262-2/+4
| | | | | Problem: Links to repository use wrong file name. Solution: Swap the file names. (Nahuel Ourthe, closes #4304)
* patch 8.1.1207: some compilers give warning messagesv8.1.1207Bram Moolenaar2019-04-265-5/+7
| | | | | | Problem: Some compilers give warning messages. Solution: Initialize variables, change printf() argument. (Christian Brabandt, closes #4305)
* patch 8.1.1206: user command parsing and listing not properly testedv8.1.1206Bram Moolenaar2019-04-252-0/+142
| | | | | Problem: User command parsing and listing not properly tested. Solution: Add more tests. (Dominique Pelle, closes #4296)
* patch 8.1.1205: a BufReadPre autocommand may cause the cursor to movev8.1.1205Bram Moolenaar2019-04-256-1/+97
| | | | | | | Problem: A BufReadPre autocommand may cause the cursor to move. Solution: Restore the cursor position after executing the autocommand, unless the autocommand moved it. (Christian Brabandt, closes #4302, closes #4294)
* patch 8.1.1204: output of :command with address completion is not nicev8.1.1204Bram Moolenaar2019-04-253-24/+29
| | | | | Problem: Output of :command with address completion is not nice. Solution: Shorten the address completion names.
* patch 8.1.1203: some autocmd tests are old stylev8.1.1203Bram Moolenaar2019-04-258-153/+206
| | | | | Problem: Some autocmd tests are old style. Solution: Turn the tests into new style. (Yegappan Lakshmanan, closes #4295)
* patch 8.1.1202: always get regexp debugging logs when building with -DDEBUGv8.1.1202Bram Moolenaar2019-04-252-5/+7
| | | | | Problem: Always get regexp debugging logs when building with -DDEBUG. Solution: By default do not create regexp debugging logs. (Ken Takata)
* patch 8.1.1201: output of :command is hard to readv8.1.1201Bram Moolenaar2019-04-246-31/+59
| | | | | | Problem: Output of :command is hard to read. Solution: Make some columns wider, some narrower. Truncate the command when listing all.
* patch 8.1.1200: old style comments in debugger sourcev8.1.1200Bram Moolenaar2019-04-233-85/+83
| | | | | Problem: Old style comments in debugger source. Solution: Use new style comments. (Yegappan Lakshmanan, closes #4286)
* patch 8.1.1199: no test for :abclearv8.1.1199Bram Moolenaar2019-04-232-0/+58
| | | | | Problem: No test for :abclear. Solution: Add a test. (Dominique Pelle, closes #4292)
* patch 8.1.1198: bracketed paste may remain active after Vim existsv8.1.1198Bram Moolenaar2019-04-212-7/+13
| | | | | | | Problem: Bracketed paste may remain active after Vim exists, because the terminal emulater restores the setting. Solution: Set/reset bracketed paste mode before setting the terminal mode. (closes #3579)
* patch 8.1.1197: when starting with multiple tabs file messages is confusingv8.1.1197Bram Moolenaar2019-04-214-0/+53
| | | | | Problem: When starting with multiple tabs file messages is confusing. Solution: Set 'shortmess' when loading the other tabs. (Christian Brabandt)
* patch 8.1.1196: parallel build may failv8.1.1196Bram Moolenaar2019-04-212-34/+35
| | | | | Problem: Parallel build may fail. Solution: Update dependencies.
* patch 8.1.1195: Vim script debugger functionality needs cleanupv8.1.1195Bram Moolenaar2019-04-2117-1001/+1063
| | | | | | Problem: Vim script debugger functionality needs cleanup. Solution: Move debugger code to a separate file. Add more tests. (Yegappan Lakshmanan, closes #4285)
* Update runtime filesBram Moolenaar2019-04-2114-987/+404
|
* patch 8.1.1194: typos and small problems in source filesv8.1.1194Bram Moolenaar2019-04-2110-15/+16
| | | | | Problem: Typos and small problems in source files. Solution: Small fixes.
* patch 8.1.1193: typos and small problems in test filesv8.1.1193Bram Moolenaar2019-04-207-7/+15
| | | | | Problem: Typos and small problems in test files. Solution: Small improvements.
* patch 8.1.1192: mode is not cleared when leaving Insert mode with mapped Escv8.1.1192Bram Moolenaar2019-04-204-9/+47
| | | | | Problem: Mode is not cleared when leaving Insert mode with mapped Esc. Solution: Clear the mode when redraw_cmdline is set. (closes #4269)
* patch 8.1.1191: not all debug commands are covered by a testv8.1.1191Bram Moolenaar2019-04-202-17/+101
| | | | | Problem: Not all debug commands are covered by a test. Solution: Add more tests. (Yegappan Lakshmanan, closes #4282)
* patch 8.1.1190: has('vimscript-3') does not workv8.1.1190Bram Moolenaar2019-04-203-0/+6
| | | | | Problem: has('vimscript-3') does not work. Solution: Add "vimscript-3" to the list of features.
* patch 8.1.1189: mode is not cleared when leaving Insert modev8.1.1189Bram Moolenaar2019-04-204-2/+37
| | | | | Problem: Mode is not cleared when leaving Insert mode. Solution: Clear the mode when got_int is set. (Ozaki Kiichi, closes #4270)
* patch 8.1.1188: not all Vim variables require the v: prefixv8.1.1188Bram Moolenaar2019-04-205-10/+36
| | | | | | Problem: Not all Vim variables require the v: prefix. Solution: When scriptversion is 3 all Vim variables can only be used with the v: prefix. (Ken Takata, closes #4274)
* patch 8.1.1187: cannot recognize Pipfilev8.1.1187Bram Moolenaar2019-04-193-4/+11
| | | | | Problem: Cannot recognize Pipfile. Solution: Use existing filetypes. (Charles Ross, closes #4280)
* patch 8.1.1186: readdir() allocates list twicev8.1.1186Bram Moolenaar2019-04-192-7/+4
| | | | | Problem: readdir() allocates list twice. Solution: Remove second allocation. Also check for zero length.
* patch 8.1.1185: mapping for CTRL-X is inconsistentv8.1.1185Bram Moolenaar2019-04-182-1/+3
| | | | | | Problem: Mapping for CTRL-X is inconsistent. Solution: Map CTRL-X to "*d also for the MS-Windows console. (Ken Takata, closes #4265)
* patch 8.1.1184: undo file left behind after running testv8.1.1184Bram Moolenaar2019-04-182-0/+3
| | | | | Problem: Undo file left behind after running test. Solution: Delete the undo file. (Dominique Pelle, closes #4279)
* patch 8.1.1183: typos in VisVim commentsv8.1.1183Bram Moolenaar2019-04-174-5/+7
| | | | | Problem: Typos in VisVim comments. Solution: Correct the typos. (Christ van Willegen)
* patch 8.1.1182: some function prototypes are outdatedv8.1.1182Bram Moolenaar2019-04-178-7/+21
| | | | | Problem: Some function prototypes are outdated. Solution: Update function prototypes. (Ken Takata, closes #4267)
* patch 8.1.1181: tests for mouse clicks are a bit flakyv8.1.1181Bram Moolenaar2019-04-172-18/+20
| | | | | | | Problem: Tests for mouse clicks are a bit flaky when run in an interactive terminal. Solution: Use "xterm2" instead of "xterm" for 'ttymouse' to avoid spurious drag events.
* patch 8.1.1180: Vim script debugger tests are old stylev8.1.1180Bram Moolenaar2019-04-177-173/+238
| | | | | Problem: Vim script debugger tests are old style. Solution: Turn into new style tests. (Yegappan Lakshmanan, closes #4259)
* patch 8.1.1179: no test for mouse clicks in the fold columnv8.1.1179Bram Moolenaar2019-04-172-0/+53
| | | | | Problem: No test for mouse clicks in the fold column. Solution: Add a test. (Dominique Pelle, closes #4261)
* patch 8.1.1178: when mouse click tests fails value of 'ttytype' is unknownv8.1.1178Bram Moolenaar2019-04-172-37/+47
| | | | | Problem: When mouse click tests fails value of 'ttytype' is unknown. Solution: Add a message to the assert.
* patch 8.1.1177: .ts files are recognized as xml, typescript is more commonv8.1.1177Bram Moolenaar2019-04-163-1/+7
| | | | | Problem: .ts files are recognized as xml, while typescript is more common. Solution: Recognize .ts files as typescript. (closes #4264)
* patch 8.1.1176: test for dragging a tab is flakyv8.1.1176Bram Moolenaar2019-04-152-0/+4
| | | | | Problem: Test for dragging a tab is flaky. Solution: Add a brief sleep.
* patch 8.1.1175: no test for dragging a tab and double click for new tabv8.1.1175Bram Moolenaar2019-04-152-0/+98
| | | | | | Problem: No test for dragging a tab with the mouse and for creating a new tab by double clicking in the tabline. Solution: Add two tests. (Dominique Pelle, closes #4258)
* patch 8.1.1174: cannot build with Ruby 1.8v8.1.1174Bram Moolenaar2019-04-142-1/+6
| | | | | Problem: Cannot build with Ruby 1.8. (Tom G. Christensen) Solution: Include ruby/st.h. (Ozaki Kiichi, closes #4257)