- Feb 10, 2018
-
-
Bram Moolenaar authored
Problem: Completion items cannot be annotated. Solution: Add a "user_data" entry to the completion item. (Ben Jackson, coses #2608, closes #2508)
-
Bram Moolenaar authored
Problem: Memory leak in balloon_split(). Solution: Free the balloon lines. Free the balloon when exiting.
-
Bram Moolenaar authored
Problem: The minimum width of the popup menu is hard coded. Solution: Add the 'pumwidth' option. (Christian Brabandt, James McCoy, closes #2314)
-
Bram Moolenaar authored
Problem: Number of spell regions is spread out through the code. Solution: Define MAXREGIONS.
-
- Feb 09, 2018
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: Emacs tags no longer work. (zdohnal) Solution: Do not skip over end of line.
-
Bram Moolenaar authored
Problem: Test 14 fails. Solution: Fix of-by-one error.
-
Bram Moolenaar authored
Problem: Accessing invalid memory with "it". (Dominique Pelle) Solution: Avoid going over the end of the line. (Christian Brabandt, closes #2532)
-
Bram Moolenaar authored
Problem: Weird autocmd may cause arglist to be changed recursively. Solution: Prevent recursively changing the argument list. (Christian Brabandt, closes #2472)
-
Bram Moolenaar authored
Problem: Reduntant conditions. Solution: Remove them. (Dominique Pelle)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
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.
-
Bram Moolenaar authored
Problem: Clearing a pointer takes two lines. Solution: Add vim_clear() to free and clear the pointer.
-
Bram Moolenaar authored
Problem: Patch missing change. Solution: Add missing change.
-
Bram Moolenaar authored
Problem: Insert mode completion state is confusing. Solution: Move ctrl_x_mode into edit.c. Add CTRL_X_NORMAL for zero.
-
- Feb 08, 2018
-
-
Bram Moolenaar authored
Problem: Unnecessary condition for "len" being zero. Solution: Remove the condition. (Dominique Pelle)
-
Bram Moolenaar authored
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.
-
Bram Moolenaar authored
Problem: Screen isn't always updated right away. Solution: Adjust #ifdef: Call out_flush() when not running the GUI.
-
- Feb 06, 2018
-
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: Visual C 2017 has multiple MSVCVER numbers. Solution: Assume the 2017 version if MSVCVER >= 1910. (Leonardo Valeri Manera, closes #2619)
-
- Feb 04, 2018
-
-
Bram Moolenaar authored
Problem: MS-Windows: D&D fails between 32 and 64 bit apps. Solution: Add the /HIGHENTROPYVA:NO linker option. (Ken Takata, closes #2504)
-
Bram Moolenaar authored
Problem: MS-Windows: nsis installer is a bit slow. Solution: Use ReserveFile for vimrc.ini. (closes #2522)
-
Bram Moolenaar authored
Problem: On MS-Windows CursorIM highlighting no longer works. Solution: Adjust #if statements. (Ken Takata)
-
Bram Moolenaar authored
Problem: Integer overflow when using regexp pattern. (geeknik) Solution: Use a long instead of int. (Christian Brabandt, closes #2251)
-
Bram Moolenaar authored
Problem: When package path is a symlink adding it to 'runtimepath' happens at the end. Solution: Do not resolve symlinks before locating the position in 'runtimepath'. (Ozaki Kiichi, closes #2604)
-
Bram Moolenaar authored
Problem: Illegal memory access in del_bytes(). Solution: Check for negative byte count. (Christian Brabandt, closes #2466)
-
Bram Moolenaar authored
Problem: Libvterm doesn't handle illegal byte sequence correctly. Solution: After the invalid code check if there is space to store another character. Allocate one more character. (zhykzhykzhyk, closes #2614, closes #2613)
-
Bram Moolenaar authored
Problem: Older GTK versions don't have gtk_entry_get_text_length(). Solution: Add a function with #ifdefs to take care of GTK version differences. (Kazunobu Kuriyama, closes #2605)
-
- Feb 03, 2018
-
-
Bram Moolenaar authored
Problem: Python2 and python3 detection not tested. (Matej Cepl) Solution: Add test for detecting python2 and python3. Also detect a script using "js" as javascript.
-
Bram Moolenaar authored
Problem: Completing directory after :find does not add slash. Solution: Adjust the flags for globpath(). (Genki Sky)
-
Bram Moolenaar authored
Problem: Test fails without 'autochdir' option. Solution: Skip test if 'autochdir' is not supported.
-
Bram Moolenaar authored
Problem: Missing yet another file in patch. Solution: Add changes to missing file.
-
Bram Moolenaar authored
Problem: Missing another file in patch. Solution: Add changes to missing file.
-
Bram Moolenaar authored
Problem: Missing file in patch. Solution: Add changes to missing file.
-
Bram Moolenaar authored
Problem: Cannot handle change of directory. Solution: Add the DirChanged autocommand event. (Andy Massimino, closes #888) Avoid changing directory for 'autochdir' too often.
-
Bram Moolenaar authored
Problem: Filetype detection test does not check all scripts. Solution: Add most scripts to the test
-
Bram Moolenaar authored
Problem: Clojure now supports a shebang line. Solution: Detect clojure script from the shebang line. (David Burgin, closes #2570)
-
Bram Moolenaar authored
Problem: Timer test on travis Mac is still flaky. Solution: Increase time range a bit more.
-
Bram Moolenaar authored
Problem: If $SHELL contains a space then the default value of 'shell' is incorrect. (Matthew Horan) Solution: Escape spaces in $SHELL. (Christian Brabandt, closes #459)
-