summaryrefslogtreecommitdiffstats
path: root/runtime
AgeCommit message (Collapse)Author
2018-09-08patch 8.1.0352: browsing compressed tar files does not always workv8.1.0352Bram Moolenaar
Problem: Browsing compressed tar files does not always work. Solution: Use the "file" command to get the compression type.
2018-09-06patch 8.1.0350: Vim may block on ch_sendraw()v8.1.0350Bram Moolenaar
Problem: Vim may block on ch_sendraw() when the job is sending data back to Vim, which isn't read yet. (Nate Bosch) Solution: Add the "noblock" option to job_start(). (closes #2548)
2018-09-06patch 8.1.0349: crash when wiping buffer in a callbackv8.1.0349Bram Moolenaar
Problem: Crash when wiping buffer in a callback. Solution: Do not handle messages when only peeking for a character. (closes #2107) Add "redraw_flag" to test_override().
2018-09-02Update runtime files.Bram Moolenaar
2018-09-02patch 8.1.0346: building with Aap is outdated and unusedv8.1.0346Bram Moolenaar
Problem: Building with Aap is outdated and unused. Solution: Remove the Aap build files.
2018-09-02patch 8.1.0345: cannot get the window id associated with the location listv8.1.0345Bram Moolenaar
Problem: Cannot get the window id associated with the location list. Solution: Add the "filewinid" argument to getloclist(). (Yegappan Lakshmanan, closes #3202)
2018-08-28Update runtime files.Bram Moolenaar
2018-08-21patch 8.1.0314: build failure without the +eval featurev8.1.0314Bram Moolenaar
Problem: Build failure without the +eval feature. (Brenton Horne) Solution: Add #ifdef. Also add the "dirty" item.
2018-08-21patch 8.1.0313: information about a swap file is unavailablev8.1.0313Bram Moolenaar
Problem: Information about a swap file is unavailable. Solution: Add swapinfo(). (Enzo Ferber)
2018-08-21patch 8.1.0311: filtering entries in a quickfix list is not easyv8.1.0311Bram Moolenaar
Problem: Filtering entries in a quickfix list is not easy. Solution: Add the cfilter plugin. (Yegappan Lakshmanan)
2018-08-21patch 8.1.0307: there is no good way to get the window layoutv8.1.0307Bram Moolenaar
Problem: There is no good way to get the window layout. Solution: Add the winlayout() function. (Yegappan Lakshmanan)
2018-08-11Update runtime files.Bram Moolenaar
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().