summaryrefslogtreecommitdiffstats
path: root/runtime
AgeCommit message (Collapse)Author
2018-08-07patch 8.1.0253: saving and restoring window title does not always workv8.1.0253Bram Moolenaar
Problem: Saving and restoring window title does not always work. Solution: Use the stack push and pop commands. (Kouichi Iwamoto, closes #3059)
2018-08-07patch 8.1.0251: using full path is not supported for 'backupdir'v8.1.0251Bram Moolenaar
Problem: Using a full path is supported for 'directory' but not for 'backupdir'. (Mikolaj Machowski) Solution: Support 'backupdir' as well. (Christian Brabandt, closes #179)
2018-07-31Update runtime files.Bram Moolenaar
2018-07-29patch 8.1.0226: too many #ifdefsv8.1.0226Bram Moolenaar
Problem: Too many #ifdefs. Solution: Graduate the +vreplace feature, it's not much code and quite a few #ifdefs.
2018-07-29patch 8.1.0225: mode() does not indicate using CTRL-O from Insert modev8.1.0225Bram Moolenaar
Problem: Mode() does not indicate using CTRL-O from Insert mode. Solution: Add "niI", "niR" and "niV" to mode() result. (closes #3000)
2018-07-29Update runtime files.Bram Moolenaar
2018-07-28patch 8.1.0221: not enough testing for the Ruby interfacev8.1.0221Bram Moolenaar
Problem: Not enough testing for the Ruby interface. Solution: Add more tests. (Dominique Pelle, closes #3252)
2018-07-28patch 8.1.0218: cannot add matches to another windowv8.1.0218Bram Moolenaar
Problem: Cannot add matches to another window. (Qiming Zhao) Solution: Add the "window" argument to matchadd() and matchaddpos(). (closes #3260)
2018-07-23patch 8.1.0207: need many menu translation files to cover regionsv8.1.0207Bram Moolenaar
Problem: Need many menu translation files to cover regions. Solution: When there is no region match, try without. (Christian Brabandt)
2018-07-21Update runtime files.Bram Moolenaar
2018-07-19patch 8.1.0196: terminal debugger error with .gdbinit filev8.1.0196Bram Moolenaar
Problem: Terminal debugger error with .gdbinit file. Solution: Check two lines for the "new ui" response. (hint from Hirohito Higashi)
2018-07-19patch 8.1.0195: terminal debugger commands don't always workv8.1.0195Bram Moolenaar
Problem: Terminal debugger commands don't always work. (Dominique Pelle) Solution: Set 'cpo' to its default value when defining commands. (Christian Brabandt)
2018-07-17patch 8.1.0193: terminal debugger buttons don't always workv8.1.0193Bram Moolenaar
Problem: Terminal debugger buttons don't always work. (Dominique Pelle) Solution: Set 'cpo' to its default value.
2018-07-15Update runtime files.Bram Moolenaar
2018-07-15patch 8.1.0187: getwininfo() and win_screenpos() return different numbersv8.1.0187Bram Moolenaar
Problem: getwininfo() and win_screenpos() return different numbers. Solution: Add one to "wincol" and "winrow" from getwininfo().
2018-07-14patch 8.1.0184: not easy to figure out the window layoutv8.1.0184Bram Moolenaar
Problem: Not easy to figure out the window layout. Solution: Add "wincol" and "winrow" to what getwininfo() returns.
2018-07-08patch 8.1.0169: calling message_filtered() a bit too oftenv8.1.0169Bram Moolenaar
Problem: Calling message_filtered() a bit too often. Solution: Only call message_filtered() when filtering is already false.
2018-07-07Update runtime files, add Danish translations.Bram Moolenaar
2018-07-03patch 8.1.0143: matchit and matchparen don't handle E363v8.1.0143Bram Moolenaar
Problem: Matchit and matchparen don't handle E363. Solution: Catch the E363 error. (Christian Brabandt)
2018-07-03Updated runtime and language files.Bram Moolenaar
2018-07-01patch 8.1.0136: Lua tests don't cover new featuresv8.1.0136Bram Moolenaar
Problem: Lua tests don't cover new features. Solution: Add more tests. (Dominique Pelle, closes #3130)
2018-06-25patch 8.1.0115: the matchparen plugin may throw an errorv8.1.0115Bram Moolenaar
Problem: The matchparen plugin may throw an error. Solution: Change the skip argument from zero to "0".
2018-06-24Update runtime files.Bram Moolenaar
2018-06-23patch 8.1.0105: all tab stops are the samev8.1.0105Bram Moolenaar
Problem: All tab stops are the same. Solution: Add the variable tabstop feature. (Christian Brabandt, closes #2711)
2018-06-23patch 8.1.0100: terminal debugger: error when setting a watch pointv8.1.0100Bram Moolenaar
Problem: Terminal debugger: error when setting a watch point. Solution: Don't try defining a sign for a watch point.
2018-06-23patch 8.1.0098: segfault when pattern with \z() is very slowv8.1.0098Bram Moolenaar
Problem: Segfault when pattern with \z() is very slow. Solution: Check for NULL regprog. Add "nfa_fail" to test_override() to be able to test this. Fix that 'searchhl' resets called_emsg.
2018-06-21patch 8.1.0093: non-MS-Windows: Cannot interrupt gdb when program is runningv8.1.0093Bram Moolenaar
Problem: non-MS-Windows: Cannot interrupt gdb when program is running. Solution: Only use debugbreak() on MS-Windows.
2018-06-20patch 8.1.0091: MS-Windows: Cannot interrupt gdb when program is runningv8.1.0091Bram Moolenaar
Problem: MS-Windows: Cannot interrupt gdb when program is running. Solution: Add debugbreak() and use it in the terminal debugger. Respect 'modified' in a prompt buffer.
2018-06-19patch 8.1.0089: error when ending the terminal debuggerv8.1.0089Bram Moolenaar
Problem: error when ending the terminal debugger Solution: Fix deleting defined signs for breakpoints. Make the debugger work better on MS-Windows.
2018-06-19patch 8.1.0081: the terminal debugger doesn't adjust to changed 'background'v8.1.0081Bram Moolenaar
Problem: The terminal debugger doesn't adjust to changed 'background'. Solution: Add an OptionSet autocommand. (Christian Brabandt)
2018-06-19patch 8.1.0080: can't see the breakpoint number in the terminal debuggerv8.1.0080Bram Moolenaar
Problem: Can't see the breakpoint number in the terminal debugger. Solution: Use the breakpoint number for the sign. (Christian Brabandt)
2018-06-19Update runtime files.Bram Moolenaar
2018-06-17patch 8.1.0072: use of 'termwinkey' is inconsistentv8.1.0072Bram Moolenaar
Problem: Use of 'termwinkey' is inconsistent. Solution: Change the documentation and the behavior. (Ken Takata)
2018-06-17patch 8.1.0071: terminal debugger only works with the terminal featurev8.1.0071Bram Moolenaar
Problem: Terminal debugger only works with the terminal feature. Solution: Make it also work with a prompt buffer. Makes it possible to use on MS-Windows. Various other improvements. (closes #3012)
2018-06-17patch 8.1.0069: cannot handle pressing CTRL-C in a prompt bufferv8.1.0069Bram Moolenaar
Problem: Cannot handle pressing CTRL-C in a prompt buffer. Solution: Add prompt_setinterrupt().
2018-06-12patch 8.1.0049: shell cannot tell running in a terminal windowv8.1.0049Bram Moolenaar
Problem: Shell cannot tell running in a terminal window. Solution: Add the VIM_TERMINAL environment variable. (Christian Brabandt)
2018-06-07patch 8.1.0039: cannot easily delete lines in another bufferv8.1.0039Bram Moolenaar
Problem: Cannot easily delete lines in another buffer. Solution: Add deletebufline().
2018-06-06patch 8.1.0037: cannot easily append lines to another bufferv8.1.0037Bram Moolenaar
Problem: Cannot easily append lines to another buffer. Solution: Add appendbufline().
2018-06-03patch 8.1.0027: difficult to make a plugin that feeds a line to a jobv8.1.0027Bram Moolenaar
Problem: Difficult to make a plugin that feeds a line to a job. Solution: Add the nitial code for the "prompt" buftype.
2018-05-22Update runtime files.Bram Moolenaar
2018-05-22patch 8.1.0020: cannot tell whether a register is executing or recordingv8.1.0020Bram Moolenaar
Problem: Cannot tell whether a register is being used for executing or recording. Solution: Add reg_executing() and reg_recording(). (Hirohito Higashi, closes #2745) Rename the global variables for consistency. Store the register name in reg_executing.
2018-05-18Runtime file and translation updates.Bram Moolenaar
2018-05-17patch 8.1.0001: the netrw plugin does not workv8.1.0001Bram Moolenaar
Problem: The netrw plugin does not work. Solution: Make it accept version 8.x.
2018-05-17Vim 8.1 releasev8.1.0000Bram Moolenaar
Update version number and information. Fix a couple of tests.
2018-05-17patch 8.0.1850: todo items in source code not visible for usersv8.0.1850Bram Moolenaar
Problem: Todo items in source code not visible for users. Solution: Move the todo items to the help file.
2018-05-17Updated runtime files.Bram Moolenaar
2018-05-15patch 8.0.1845: various comment updates needed, missing white spacev8.0.1845Bram Moolenaar
Problem: Various comment updates needed, missing white space. Solution: Update comments, add white space.
2018-05-15patch 8.0.1844: superfluous quickfix code, missing examplesv8.0.1844Bram Moolenaar
Problem: Superfluous quickfix code, missing examples. Solution: Remove unneeded code. Add a few examples. Add a bit more testing. (Yegappan Lakshmanan, closes #2916)
2018-05-15patch 8.0.1843: entry for 'wrap' in options window is wrongv8.0.1843Bram Moolenaar
Problem: Entry for 'wrap' in options window is wrong. (John Little) Solution: Make the change apply locally.
2018-05-13Updated runtime filesBram Moolenaar