summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2019-04-28patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exev8.1.1230Bram Moolenaar
Problem: A lot of code is shared between vim.exe and gvim.exe. Solution: Optionally put the shared code in vim.dll. (Ken Takata, closes #4287)
2019-04-28patch 8.1.1229: warning for posix_openpt() not declaredv8.1.1229Bram Moolenaar
Problem: Warning for posix_openpt() not declared. (Tony Mechelynck) Solution: Add declaration.
2019-04-28patch 8.1.1228: not possible to process tags with a functionv8.1.1228Bram Moolenaar
Problem: Not possible to process tags with a function. Solution: Add tagfunc() (Christian Brabandt, Andy Massimino, closes #4010)
2019-04-28patch 8.1.1227: duplicate entries in the generate .desktop filesv8.1.1227Bram Moolenaar
Problem: Duplicate entries in the generate .desktop files. (Ralf Schandl) Solution: Remove translated entries from the .in files. (closes #4313)
2019-04-28patch 8.1.1226: {not in Vi} remarks get in the way of useful help textv8.1.1226Bram Moolenaar
Problem: {not in Vi} remarks get in the way of useful help text. Solution: Make a list of all Vi options, instead of mentioning what Vi does not have. Update the help text for options.
2019-04-28patch 8.1.1225: cannot create a pty to use with :terminal on FreeBSDv8.1.1225Bram Moolenaar
Problem: Cannot create a pty to use with :terminal on FreeBSD. Solution: Add support for posix_openpt(). (Ozaki Kiichi, closes #4306, closes #4289)
2019-04-28patch 8.1.1224: MS-Windows: cannot specify font weightv8.1.1224Bram Moolenaar
Problem: MS-Windows: cannot specify font weight. Solution: Add the "W" option to 'guifont'. (closes #4309) Move GUI font explanation out of options.txt.
2019-04-28patch 8.1.1223: middle mouse click test fails without a clipboardv8.1.1223Bram Moolenaar
Problem: Middle mouse click test fails without a clipboard. Solution: Check if the clipboard can be used. (Dominique Pelle, Christian Brabandt) Also use WorkingClipboard() instead of checking for the "clipboard" feature.
2019-04-27patch 8.1.1222: build still fails on MS-Windowsv8.1.1222Bram Moolenaar
Problem: Build still fails on MS-Windows. Solution: Move another declaration to start of block.
2019-04-27patch 8.1.1221: filtering does not work when listing marksv8.1.1221Bram Moolenaar
Problem: Filtering does not work when listing marks. Solution: Implement filtering marks. (Marcin Szamotulski, closes #3895)
2019-04-27patch 8.1.1220: build fails on MS-Windowsv8.1.1220Bram Moolenaar
Problem: Build fails on MS-Windows. Solution: Move declaration to start of block.
2019-04-27patch 8.1.1219: not checking for NULL return from alloc()v8.1.1219Bram Moolenaar
Problem: Not checking for NULL return from alloc(). Solution: Add checks. (Martin Kunev, closes #4303, closes #4174)
2019-04-27patch 8.1.1218: cannot set a directory for a tab pagev8.1.1218Bram Moolenaar
Problem: Cannot set a directory for a tab page. Solution: Add the tab-local directory. (Yegappan Lakshmanan, closes #4212)
2019-04-27patch 8.1.1217: MS-Windows: no space reserved for font quality namev8.1.1217Bram Moolenaar
Problem: MS-Windows: no space reserved for font quality name. Solution: Add quality_name length if present. (Ken Takata, closes #4311)
2019-04-27patch 8.1.1216: mouse middle click is not testedv8.1.1216Bram Moolenaar
Problem: Mouse middle click is not tested. Solution: Add a test. (Dominique Pelle, closes #4310)
2019-04-27patch 8.1.1215: "make clean" does not remove generated src/po filesv8.1.1215Bram Moolenaar
Problem: "make clean" does not remove generated src/po files. Solution: Remove the files for "make clean". (Christian Brabandt)
2019-04-27patch 8.1.1214: old style testsv8.1.1214Bram Moolenaar
Problem: Old style tests. Solution: Move tests from test14 to new style test files. (Yegappan Lakshmanan, closes #4308)
2019-04-27patch 8.1.1213: "make clean" in top dir does not cleanup indent test outputv8.1.1213Bram Moolenaar
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)
2019-04-27patch 8.1.1212: signal PWR is not testedv8.1.1212Bram Moolenaar
Problem: Signal PWR is not tested. Solution: Test that PWR updates the swap file. (Dominique Pelle, closes #4312)
2019-04-27patch 8.1.1211: not all user command code is testedv8.1.1211Bram Moolenaar
Problem: Not all user command code is tested. Solution: Add more tests.
2019-04-27patch 8.1.1210: support for user commands is spread outv8.1.1210Bram Moolenaar
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.
2019-04-26patch 8.1.1209: clever compiler warns for buffer being too smallv8.1.1209Bram Moolenaar
Problem: Clever compiler warns for buffer being too small. Solution: Make the buffer bigger (even though it's not really needed).
2019-04-26patch 8.1.1208: links to repository use wrong file namev8.1.1208Bram Moolenaar
Problem: Links to repository use wrong file name. Solution: Swap the file names. (Nahuel Ourthe, closes #4304)
2019-04-26patch 8.1.1207: some compilers give warning messagesv8.1.1207Bram Moolenaar
Problem: Some compilers give warning messages. Solution: Initialize variables, change printf() argument. (Christian Brabandt, closes #4305)
2019-04-25patch 8.1.1206: user command parsing and listing not properly testedv8.1.1206Bram Moolenaar
Problem: User command parsing and listing not properly tested. Solution: Add more tests. (Dominique Pelle, closes #4296)
2019-04-25patch 8.1.1205: a BufReadPre autocommand may cause the cursor to movev8.1.1205Bram Moolenaar
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)
2019-04-25patch 8.1.1204: output of :command with address completion is not nicev8.1.1204Bram Moolenaar
Problem: Output of :command with address completion is not nice. Solution: Shorten the address completion names.
2019-04-25patch 8.1.1203: some autocmd tests are old stylev8.1.1203Bram Moolenaar
Problem: Some autocmd tests are old style. Solution: Turn the tests into new style. (Yegappan Lakshmanan, closes #4295)
2019-04-25patch 8.1.1202: always get regexp debugging logs when building with -DDEBUGv8.1.1202Bram Moolenaar
Problem: Always get regexp debugging logs when building with -DDEBUG. Solution: By default do not create regexp debugging logs. (Ken Takata)
2019-04-24patch 8.1.1201: output of :command is hard to readv8.1.1201Bram Moolenaar
Problem: Output of :command is hard to read. Solution: Make some columns wider, some narrower. Truncate the command when listing all.
2019-04-23patch 8.1.1200: old style comments in debugger sourcev8.1.1200Bram Moolenaar
Problem: Old style comments in debugger source. Solution: Use new style comments. (Yegappan Lakshmanan, closes #4286)
2019-04-23patch 8.1.1199: no test for :abclearv8.1.1199Bram Moolenaar
Problem: No test for :abclear. Solution: Add a test. (Dominique Pelle, closes #4292)
2019-04-21patch 8.1.1198: bracketed paste may remain active after Vim existsv8.1.1198Bram Moolenaar
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)
2019-04-21patch 8.1.1197: when starting with multiple tabs file messages is confusingv8.1.1197Bram Moolenaar
Problem: When starting with multiple tabs file messages is confusing. Solution: Set 'shortmess' when loading the other tabs. (Christian Brabandt)
2019-04-21patch 8.1.1196: parallel build may failv8.1.1196Bram Moolenaar
Problem: Parallel build may fail. Solution: Update dependencies.
2019-04-21patch 8.1.1195: Vim script debugger functionality needs cleanupv8.1.1195Bram Moolenaar
Problem: Vim script debugger functionality needs cleanup. Solution: Move debugger code to a separate file. Add more tests. (Yegappan Lakshmanan, closes #4285)
2019-04-21Update runtime filesBram Moolenaar
2019-04-21patch 8.1.1194: typos and small problems in source filesv8.1.1194Bram Moolenaar
Problem: Typos and small problems in source files. Solution: Small fixes.
2019-04-20patch 8.1.1193: typos and small problems in test filesv8.1.1193Bram Moolenaar
Problem: Typos and small problems in test files. Solution: Small improvements.
2019-04-20patch 8.1.1192: mode is not cleared when leaving Insert mode with mapped Escv8.1.1192Bram Moolenaar
Problem: Mode is not cleared when leaving Insert mode with mapped Esc. Solution: Clear the mode when redraw_cmdline is set. (closes #4269)
2019-04-20patch 8.1.1191: not all debug commands are covered by a testv8.1.1191Bram Moolenaar
Problem: Not all debug commands are covered by a test. Solution: Add more tests. (Yegappan Lakshmanan, closes #4282)
2019-04-20patch 8.1.1190: has('vimscript-3') does not workv8.1.1190Bram Moolenaar
Problem: has('vimscript-3') does not work. Solution: Add "vimscript-3" to the list of features.
2019-04-20patch 8.1.1189: mode is not cleared when leaving Insert modev8.1.1189Bram Moolenaar
Problem: Mode is not cleared when leaving Insert mode. Solution: Clear the mode when got_int is set. (Ozaki Kiichi, closes #4270)
2019-04-20patch 8.1.1188: not all Vim variables require the v: prefixv8.1.1188Bram Moolenaar
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)
2019-04-19patch 8.1.1187: cannot recognize Pipfilev8.1.1187Bram Moolenaar
Problem: Cannot recognize Pipfile. Solution: Use existing filetypes. (Charles Ross, closes #4280)
2019-04-19patch 8.1.1186: readdir() allocates list twicev8.1.1186Bram Moolenaar
Problem: readdir() allocates list twice. Solution: Remove second allocation. Also check for zero length.
2019-04-18patch 8.1.1185: mapping for CTRL-X is inconsistentv8.1.1185Bram Moolenaar
Problem: Mapping for CTRL-X is inconsistent. Solution: Map CTRL-X to "*d also for the MS-Windows console. (Ken Takata, closes #4265)
2019-04-18patch 8.1.1184: undo file left behind after running testv8.1.1184Bram Moolenaar
Problem: Undo file left behind after running test. Solution: Delete the undo file. (Dominique Pelle, closes #4279)
2019-04-17patch 8.1.1183: typos in VisVim commentsv8.1.1183Bram Moolenaar
Problem: Typos in VisVim comments. Solution: Correct the typos. (Christ van Willegen)
2019-04-17patch 8.1.1182: some function prototypes are outdatedv8.1.1182Bram Moolenaar
Problem: Some function prototypes are outdated. Solution: Update function prototypes. (Ken Takata, closes #4267)