summaryrefslogtreecommitdiffstats
path: root/runtime
AgeCommit message (Collapse)Author
2020-08-10patch 8.2.1413: previous tab page not usable from an Ex commandv8.2.1413Bram Moolenaar
Problem: Previous tab page not usable from an Ex command. Solution: Add the "#" argument for :tabnext et al. (Yegappan Lakshmanan, closes #6677)
2020-08-09patch 8.2.1410: adding compiler plugin requires test changev8.2.1410Bram Moolenaar
Problem: Adding compiler plugin requires test change. Solution: Include compiler plugin and adjust test.
2020-08-09patch 8.2.1409: nmpmrc and php.ini filetypes not recognizedv8.2.1409Bram Moolenaar
Problem: Nmpmrc and php.ini filetypes not recognized. Solution: Add filetype detection. (Doug Kearns)
2020-08-09patch 8.2.1408: Vim9: type casting not supportedv8.2.1408Bram Moolenaar
Problem: Vim9: type casting not supported. Solution: Introduce type casting.
2020-08-09patch 8.2.1407: Vim9: type of list and dict only depends on first itemv8.2.1407Bram Moolenaar
Problem: Vim9: type of list and dict only depends on first item. Solution: Use all items to decide about the type.
2020-08-09patch 8.2.1401: cannot jump to the last used tabpagev8.2.1401Bram Moolenaar
Problem: Cannot jump to the last used tabpage. Solution: Add g<Tab> and tabpagnr('#'). (Yegappan Lakshmanan, closes #6661, neovim #11626)
2020-08-07Update runtime files.Bram Moolenaar
2020-08-02patch 8.2.1354: test 59 is old stylev8.2.1354Bram Moolenaar
Problem: Test 59 is old style. Solution: Convert into a new style test. (Yegappan Lakshmanan, closes #6604)
2020-08-01patch 8.2.1347: cannot easily get the script IDv8.2.1347Bram Moolenaar
Problem: Cannot easily get the script ID. Solution: Support expand('<SID>').
2020-08-01patch 8.2.1342: Vim9: accidentally using "t" gives a confusing errorv8.2.1342Bram Moolenaar
Problem: Vim9: accidentally using "x" gives a confusing error. Solution: Disallow using ":t" in Vim9 script. (issue #6399)
2020-07-29patch 8.2.1325: Vim9: using Vim9 script for autaload not testedv8.2.1325Bram Moolenaar
Problem: Vim9: using Vim9 script for autaload not tested. Solution: Add a test. Update help.
2020-07-28patch 8.2.1308: Vim9: accidentally using "x" causes Vim to exitv8.2.1308Bram Moolenaar
Problem: Vim9: accidentally using "x" causes Vim to exit. Solution: Disallow using ":x" or "xit" in Vim9 script. (closes #6399)
2020-07-26Update runtime files.Bram Moolenaar
2020-07-26patch 8.2.1297: when a test fails it's often not easy to see wherev8.2.1297Bram Moolenaar
Problem: When a test fails it's often not easy to see what the call stack is. Solution: Add more entries from the call stack in the exception message.
2020-07-25patch 8.2.1292: AIDL filetype not recognizedv8.2.1292Bram Moolenaar
Problem: AIDL filetype not recognized. Solution: Add filetype detection. (Dominique Pellé, closes #6533)
2020-07-20patch 8.2.1255: cannot use a lambda with quickfix functionsv8.2.1255Bram Moolenaar
Problem: Cannot use a lambda with quickfix functions. Solution: Add support for lambda. (Yegappan Lakshmanan, closes #6499)
2020-07-18patch 8.2.1241: cannot use getbufinfo() as a methodv8.2.1241Bram Moolenaar
Problem: Cannot use getbufinfo() as a method. Solution: Support using getbufinfo() as a method. (closes #6458)
2020-07-18patch 8.2.1237: changing 'completepopup' after opening popup has no effectv8.2.1237Bram Moolenaar
Problem: Changing 'completepopup' after opening a popup has no effect. (Jay Sitter) Solution: Close the popup when the options are changed. (closes #6471)
2020-07-17patch 8.2.1227: Vim9: allowing both quoted and # comments is confusingv8.2.1227Bram Moolenaar
Problem: Vim9: allowing both quoted and # comments is confusing. Solution: Only support # comments in Vim9 script.
2020-07-14patch 8.2.1215: Atari MiNT support is outdatedv8.2.1215Bram Moolenaar
Problem: Atari MiNT support is outdated. Solution: Nobody responded this code is still useful, so let's delete it.
2020-07-11patch 8.2.1183: assert_fails() checks the last error messagev8.2.1183Bram Moolenaar
Problem: assert_fails() checks the last error message. Solution: Check the first error, it is more relevant. Fix all the tests that rely on the old behavior.
2020-07-10Update runtime filesBram Moolenaar
2020-07-10patch 8.2.1172: error messages when doing "make clean" in doc or teev8.2.1172Bram Moolenaar
Problem: Error messages when doing "make clean" in the runtime/doc or src/tee directories. Solution: Use "rm -f".
2020-07-09patch 8.2.1166: once mouse move events are enabled getchar() returns themv8.2.1166Bram Moolenaar
Problem: Once mouse move events are enabled getchar() returns them. Solution: Ignore K_MOUSEMOVE in getchar(). (closes #6424)
2020-07-05patch 8.2.1128: the write message mentions characters, but it's bytesv8.2.1128Bram Moolenaar
Problem: The write message mentions characters, but it's actually bytes. Solution: Change "C" to "B" and "characters" to "bytes".
2020-07-01patch 8.2.1107: 'imactivatefunc' and 'imstatusfunc' are not used in the GUIv8.2.1107Bram Moolenaar
Problem: 'imactivatefunc' and 'imstatusfunc' are not used in the GUI. Solution: Adjust the #ifdefs. (closes #6367)
2020-06-30Runtime file updatesBram Moolenaar
2020-06-28patch 8.2.1081: Lua: cannot use table.insert() and table.remove()v8.2.1081Bram Moolenaar
Problem: Lua: cannot use table.insert() and table.remove(). Solution: Add the list functions. (Prabir Shrestha, closes #6353)
2020-06-28patch 8.2.1077: no enough test coverage for highlightingv8.2.1077Bram Moolenaar
Problem: No enough test coverage for highlighting. Solution: Add more tests. (Yegappan Lakshmanan, closes #6351)
2020-06-27patch 8.2.1066: Lua arrays are zero basedv8.2.1066Bram Moolenaar
Problem: Lua arrays are zero based. Solution: Make Lua arrays one based. (Prabir Shrestha, closes #6347) Note: this is not backwards compatible.
2020-06-26patch 8.2.1060: not all elinks files are recognizedv8.2.1060Bram Moolenaar
Problem: Not all elinks files are recognized. Solution: Just check for "elinks.conf". (Guido Cella, closes #6337)
2020-06-25patch 8.2.1055: no filetype set for pacman config filesv8.2.1055Bram Moolenaar
Problem: No filetype set for pacman config files. Solution: Recognize pacman.conf and *.hook. (Guido Cella, closes #6335)
2020-06-25patch 8.2.1054: not so easy to pass a lua function to Vimv8.2.1054Bram Moolenaar
Problem: Not so easy to pass a lua function to Vim. Solution: Convert a Lua function and closure to a Vim funcref. (Prabir Shrestha, closes #6246)
2020-06-23patch 8.2.1044: not all systemd file types are recognizedv8.2.1044Bram Moolenaar
Problem: Not all systemd file types are recognized. Solution: Match several more files. (Guido Cella, closes #6319)
2020-06-22patch 8.2.1042: Vim9: cannot put an operator on the next linev8.2.1042Bram Moolenaar
Problem: Vim9: cannot put an operator on the next line. Solution: Require a colon before a range to see if that causes problems.
2020-06-21Update runtime filesBram Moolenaar
2020-06-17patch 8.2.0997: cannot execute a register containing line continuationv8.2.0997Bram Moolenaar
Problem: Cannot execute a register containing line continuation. Solution: Concatenate lines where needed. (Yegappan Lakshmanan, closes #6272)
2020-06-17patch 8.2.0996: using "aucmdwin" in win_gettype() is not idealv8.2.0996Bram Moolenaar
Problem: Using "aucmdwin" in win_gettype() is not ideal. Solution: Rename to "autocmd".
2020-06-16patch 8.2.0991: cannot get window type for autocmd and preview windowv8.2.0991Bram Moolenaar
Problem: Cannot get window type for autocmd and preview window. Solution: Add types to win_gettype(). (Yegappan Lakshmanan, closes #6277)
2020-06-16patch 8.2.0988: getting directory contents is always case sortedv8.2.0988Bram Moolenaar
Problem: Getting directory contents is always case sorted. Solution: Add sort options and v:collate. (Christian Brabandt, closes #6229)
2020-06-15patch 8.2.0983: SConstruct file type not recognizedv8.2.0983Bram Moolenaar
Problem: SConstruct file type not recognized. Solution: Use python for SConstruct files. (Roland Hieber)
2020-06-15patch 8.2.0982: insufficient testing for reading/writing filesv8.2.0982Bram Moolenaar
Problem: Insufficient testing for reading/writing files. Solution: Add more tests. (Yegappan Lakshmanan, closes #6257) Add "ui_delay" to test_override() and use it for the CTRL-O test.
2020-06-14patch 8.2.0980: raku file extension not recognizedv8.2.0980Bram Moolenaar
Problem: Raku file extension not recognized. (Steven Penny) Solution: Recognize .raku and .rakumod. (closes #6255)
2020-06-14Update runtime filesBram Moolenaar
2020-06-13patch 8.2.0970: terminal properties are not available in Vim scriptv8.2.0970Bram Moolenaar
Problem: Terminal properties are not available in Vim script. Solution: Add the terminalprops() function.
2020-06-12patch 8.2.0964: TextYankPost does not provide info about Visual selectionv8.2.0964Bram Moolenaar
Problem: TextYankPost does not provide info about Visual selection. Solution: Add the 'visual' key in v:event. (closes #6249)
2020-06-12patch 8.2.0963: number increment/decrement does not work with 'virtualedit'v8.2.0963Bram Moolenaar
Problem: Number increment/decrement does not work with 'virtualedit'. Solution: Handle coladd changing. (Christian Brabandt, closes #6240, closes #923)
2020-06-11patch 8.2.0959: using 'quickfixtextfunc' is a bit slowv8.2.0959Bram Moolenaar
Problem: Using 'quickfixtextfunc' is a bit slow. Solution: Process a list of entries. (Yegappan Lakshmanan, closes #6234)
2020-06-10patch 8.2.0954: not all desktop files are recognizedv8.2.0954Bram Moolenaar
Problem: Not all desktop files are recognized. Solution: Add the *.directory pattern. (Eisuke Kawashima, closes #3317)
2020-06-10patch 8.2.0953: spell checking doesn't work for CamelCased wordsv8.2.0953Bram Moolenaar
Problem: Spell checking doesn't work for CamelCased words. Solution: Add the "camel" value in the new option 'spelloptions'. (closes #1235)