summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-02-13patch 8.0.1518: error messages suppressed after ":silent! try"Bram Moolenaar
Problem: Error messages suppressed after ":silent! try". (Ben Reilly) Solution: Restore emsg_silent before executing :try. (closes #2531)
2018-02-13patch 8.0.1517: invalid memory acces with pattern using look-behind matchBram Moolenaar
Problem: Invalid memory acces with pattern using look-behind match. (Dominique Pelle) Solution: Get a pointer to the right line.
2018-02-13patch 8.0.1516: errors for job options are not very specificBram Moolenaar
Problem: Errors for job options are not very specific. Solution: Add more specific error messages.
2018-02-13patch 8.0.1515: BufWinEnter event fired when opening hidden terminalBram Moolenaar
Problem: BufWinEnter event fired when opening hidden terminal. Solution: Do not fire BufWinEnter when the terminal is midden and does not open a window. (Kenta Sato, closes #2636)
2018-02-13patch 8.0.1514: getting the list of changes is not easyBram Moolenaar
Problem: Getting the list of changes is not easy. Solution: Add the getchangelist() function. (Yegappan Lakshmanan, closes #2634)
2018-02-13patch 8.0.1513: the jumplist is not always properly cleaned upBram Moolenaar
Problem: The jumplist is not always properly cleaned up. Solution: Call fname2fnum() before cleanup_jumplist(). (Yegappan Lakshmanan)
2018-02-13patch 8.0.1512: warning for possibly using NULL pointerBram Moolenaar
Problem: Warning for possibly using NULL pointer. (Coverity) Solution: Skip using the pointer if it's NULL.
2018-02-13patch 8.0.1511: some code for the debugger watch expression is clumsyBram Moolenaar
Problem: Some code for the debugger watch expression is clumsy. Solution: Clean up the code.
2018-02-13patch 8.0.1510: cannot test if a command causes a beepBram Moolenaar
Problem: Cannot test if a command causes a beep. Solution: Add assert_beeps().
2018-02-12patch 8.0.1509: test for failing drag-n-drop command no longer failsBram Moolenaar
Problem: Test for failing drag-n-drop command no longer fails. Solution: Check for the "dnd" feature.
2018-02-12patch 8.0.1508: the :drop command is not always availableBram Moolenaar
Problem: The :drop command is not always available. Solution: Include :drop in all builds. (Yasuhiro Matsumoto, closes #2639)
2018-02-12patch 8.0.1507: timer test is a bit flakyBram Moolenaar
Problem: Timer test is a bit flaky. Solution: Add it to the list of flaky tests.
2018-02-12patch 8.0.1506: new version of HP NonStop (Tandem) doesn't like a headerBram Moolenaar
Problem: New version of HP NonStop (Tandem) doesn't like the default header for setenv(). Solution: Put a #ifdef around the setenv() entry. (Joachim Schmitz)
2018-02-11patch 8.0.1505: debugger can't break on a conditionBram Moolenaar
Problem: Debugger can't break on a condition. (Charles Campbell) Solution: Add ":breakadd expr". (Christian Brabandt, closes #859)
2018-02-11patch 8.0.1504: Win32: the screen may be cleared on startupBram Moolenaar
Problem: Win32: the screen may be cleared on startup. Solution: Only call shell_resized() when the size actually changed. (Ken Takata, closes #2527)
2018-02-11patch 8.0.1503: access memory beyond end of stringBram Moolenaar
Problem: Access memory beyond end of string. (Coverity) Solution: Keep allocated memory in separate pointer. Avoid outputting the NUL character.
2018-02-11patch 8.0.1502: in out-of-memory situation character is not restoredBram Moolenaar
Problem: In out-of-memory situation character is not restored. (Coverity) Solution: Restore the character in all situations.
2018-02-11patch 8.0.1501: out-of-memory situation not correctly handledBram Moolenaar
Problem: Out-of-memory situation not correctly handled. (Coverity) Solution: Check for NULL value.
2018-02-11patch 8.0.1500: possible NULL pointer dereferenceBram Moolenaar
Problem: Possible NULL pointer dereference. (Coverity) Solution: Check for the pointer not being NULL.
2018-02-11patch 8.0.1499: out-of-memory situation not correctly handledBram Moolenaar
Problem: Out-of-memory situation not correctly handled. (Coverity) Solution: Check for NULL value.
2018-02-11patch 8.0.1498: getjumplist() returns duplicate entriesBram Moolenaar
Problem: Getjumplist() returns duplicate entries. (lacygoill) Solution: Call cleanup_jumplist(). (Yegappan Lakshmanan)
2018-02-10patch 8.0.1497: getting the jump list requires parsing the output of :jumpsBram Moolenaar
Problem: Getting the jump list requires parsing the output of :jumps. Solution: Add getjumplist(). (Yegappan Lakshmanan, closes #2609)
2018-02-10patch 8.0.1496: clearing a pointer takes two linesBram Moolenaar
Problem: Clearing a pointer takes two lines. Solution: Add VIM_CLEAR() and replace vim_clear(). (Hirohito Higashi, closes #2629)
2018-02-10patch 8.0.1495: having 'pumwidth' default to zero has no meritBram Moolenaar
Problem: Having 'pumwidth' default to zero has no merit. Solution: Make the default 15, as the actual default value.
2018-02-10patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menuBram Moolenaar
Problem: No autocmd triggered in Insert mode with visible popup menu. Solution: Add TextChangedP. (Prabir Shrestha, Christian Brabandt, closes #2372, closes #1691) Fix that the TextChanged autocommands are not always triggered when sourcing a script.
2018-02-10patch 8.0.1493: completion items cannot be annotatedBram Moolenaar
Problem: Completion items cannot be annotated. Solution: Add a "user_data" entry to the completion item. (Ben Jackson, coses #2608, closes #2508)
2018-02-10patch 8.0.1492: memory leak in balloon_split()Bram Moolenaar
Problem: Memory leak in balloon_split(). Solution: Free the balloon lines. Free the balloon when exiting.
2018-02-10patch 8.0.1491: the minimum width of the popup menu is hard codedBram Moolenaar
Problem: The minimum width of the popup menu is hard coded. Solution: Add the 'pumwidth' option. (Christian Brabandt, James McCoy, closes #2314)
2018-02-10patch 8.0.1490: number of spell regions is spread out through the codeBram Moolenaar
Problem: Number of spell regions is spread out through the code. Solution: Define MAXREGIONS.
2018-02-09Update runtime files.Bram Moolenaar
2018-02-09patch 8.0.1489: there is no easy way to get the global directoryBram Moolenaar
Problem: There is no easy way to get the global directory, esp. if some windows have a local directory. Solution: Make getcwd(-1) return the global directory. (Andy Massimino, closes #2606)
2018-02-09patch 8.0.1488: emacs tags no longer workBram Moolenaar
Problem: Emacs tags no longer work. (zdohnal) Solution: Do not skip over end of line.
2018-02-09patch 8.0.1487: test 14 failsBram Moolenaar
Problem: Test 14 fails. Solution: Fix of-by-one error.
2018-02-09patch 8.0.1486: accessing invalid memory with "it"Bram Moolenaar
Problem: Accessing invalid memory with "it". (Dominique Pelle) Solution: Avoid going over the end of the line. (Christian Brabandt, closes #2532)
2018-02-09patch 8.0.1485: weird autocmd may cause arglist to be changed recursivelyBram Moolenaar
Problem: Weird autocmd may cause arglist to be changed recursively. Solution: Prevent recursively changing the argument list. (Christian Brabandt, closes #2472)
2018-02-09patch 8.0.1484: reduntant conditionsBram Moolenaar
Problem: Reduntant conditions. Solution: Remove them. (Dominique Pelle)
2018-02-09patch 8.0.1483: searchpair() might return an invalid value on timeoutBram Moolenaar
Problem: Searchpair() might return an invalid value on timeout. Solution: When the second search times out, do not accept a match from the first search. (Daniel Hahler, closes #2552)
2018-02-09patch 8.0.1482: using feedkeys() does not work to test completionBram Moolenaar
Problem: Using feedkeys() does not work to test Insert mode completion. (Lifepillar) Solution: Do not check for typed keys when executing :normal or feedkeys(). Fix thesaurus completion not working when 'complete' is empty.
2018-02-09patch 8.0.1481: clearing a pointer takes two linesBram Moolenaar
Problem: Clearing a pointer takes two lines. Solution: Add vim_clear() to free and clear the pointer.
2018-02-09patch 8.0.1480: patch missing changeBram Moolenaar
Problem: Patch missing change. Solution: Add missing change.
2018-02-09patch 8.0.1479: insert mode completion state is confusingBram Moolenaar
Problem: Insert mode completion state is confusing. Solution: Move ctrl_x_mode into edit.c. Add CTRL_X_NORMAL for zero.
2018-02-08patch 8.0.1478: unnecessary conditionBram Moolenaar
Problem: Unnecessary condition for "len" being zero. Solution: Remove the condition. (Dominique Pelle)
2018-02-08patch 8.0.1477: redraw flicker when moving the mouse outside of terminal windowBram Moolenaar
Problem: Redraw flicker when moving the mouse outside of terminal window. Solution: Instead of updating the cursor color and shape every time leaving and entering a terminal window, only update when different from the previously used cursor.
2018-02-08patch 8.0.1476: screen isn't always updated right awayBram Moolenaar
Problem: Screen isn't always updated right away. Solution: Adjust #ifdef: Call out_flush() when not running the GUI.
2018-02-06patch 8.0.1475: invalid memory access in read_redo()Bram Moolenaar
Problem: Invalid memory access in read_redo(). (gy741) Solution: Convert the replacement character back from a negative number to CR or NL. (hint by Dominique Pelle, closes #2616)
2018-02-06patch 8.0.1474: Visual C 2017 has multiple MSVCVER numbersBram Moolenaar
Problem: Visual C 2017 has multiple MSVCVER numbers. Solution: Assume the 2017 version if MSVCVER >= 1910. (Leonardo Valeri Manera, closes #2619)
2018-02-04patch 8.0.1473: MS-Windows: D&D fails between 32 and 64 bit appsBram Moolenaar
Problem: MS-Windows: D&D fails between 32 and 64 bit apps. Solution: Add the /HIGHENTROPYVA:NO linker option. (Ken Takata, closes #2504)
2018-02-04patch 8.0.1472: MS-Windows: nsis installer is a bit slowBram Moolenaar
Problem: MS-Windows: nsis installer is a bit slow. Solution: Use ReserveFile for vimrc.ini. (closes #2522)
2018-02-04patch 8.0.1471: on MS-Windows CursorIM highlighting no longer worksBram Moolenaar
Problem: On MS-Windows CursorIM highlighting no longer works. Solution: Adjust #if statements. (Ken Takata)
2018-02-04patch 8.0.1470: integer overflow when using regexp patternBram Moolenaar
Problem: Integer overflow when using regexp pattern. (geeknik) Solution: Use a long instead of int. (Christian Brabandt, closes #2251)