- Feb 04, 2018
-
-
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)
-
Bram Moolenaar authored
Problem: When in silent mode too much output is buffered. Solution: Use line buffering instead of fully buffered. (Brian M. Carlson, closes #2537)
-
- Feb 02, 2018
-
-
Bram Moolenaar authored
Problem: Terminal test fails on some slow terminals. Solution: Increase timeout to 10 seconds.
-
Bram Moolenaar authored
Problem: Terminal test fails on some systems. (jonathonf) Solution: Use "cat" instead of Python to produce the input. Add a delay. (closes #2607)
-
- Jan 31, 2018
-
-
Bram Moolenaar authored
Problem: It is difficult to set the python home directory properly for Python 2.7 and 3.5 since both use $PYTHONHOME. Solution: Add the 'pythonhome' and 'pythonthreehome' options. (Kazuki Sakamoto, closes #1266)
-
Bram Moolenaar authored
Problem: Endless loop when gui_mch_stop_blink() is called while blink_state is BLINK_OFF. (zdohnal) Solution: Avoid calling gui_update_cursor() recursively.
-
Bram Moolenaar authored
Problem: Slow redrawing with DirectX. Solution: Avoid calling gui_mch_flush() unnecessarily, especially when updating the cursor. (Ken Takata, closes #2560)
-
Bram Moolenaar authored
Problem: Segmentation fault when Ruby throws an exception inside :rubyfile command. Solution: Use rb_protect() instead of rb_load_protect(). (ujihisa, closes #2147, greywolf, closes #2512, #2511)
-
Bram Moolenaar authored
Problem: Still too many old style tests. Solution: Turn a few tests into new style. (Yegappan Lakshmanan, closes #2509)
-
Bram Moolenaar authored
Problem: Acessing freed memory after window command in auto command. (gy741) Solution: Adjust the pointer in the parent frame. (Christian Brabandt, closes #2467)
-
Bram Moolenaar authored
Problem: Cannot act on edits in the command line. Solution: Add the CmdlineChanged autocommand event. (xtal8, closes #2603, closes #2524)
-
Bram Moolenaar authored
Problem: Missing -D_FILE_OFFSET_BITS=64 may cause problems if a library is compiled with it. Solution: Include -D_FILE_OFFSET_BITS if some CFLAGS has it. (James McCoy, closes #2600)
-
Bram Moolenaar authored
Problem: Compiler complains about uninitialized variable. (Tony Mechelynck) Solution: Assign a value to the variable.
-
- Jan 30, 2018
-
-
Bram Moolenaar authored
Problem: Using pointer before it is set. Solution: Search in whole buffer instead of next token.
-
Bram Moolenaar authored
Problem: Using ":undo 0" leaves undo in wrong state. Solution: Instead of searching for state 1 and go above, just use the start. (Ozaki Kiichi, closes #2595)
-
Bram Moolenaar authored
Problem: Terminal window: some vterm responses are delayed. Solution: After writing input. check if there is output to read. (Ozaki Kiichi, closes #2594)
-
Bram Moolenaar authored
Problem: If cscope fails a search Vim may hang. Solution: Bail out when a search error is encountered. (Safouane Baroudi, closes #2598)
-
- Jan 29, 2018
-
-
Bram Moolenaar authored
Problem: Filetype detection test not updated for change. Solution: Update the test.
-
- Jan 28, 2018
-
-
Bram Moolenaar authored
Problem: Pkg-config doesn't work with cross compiling. Solution: Use AC_PATH_TOOL() instead of AC_PATH_PROG(). (James McCoy, closes #2513)
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Not enough information about what Python version may work. Solution: Add "python_compiled", "python3_compiled", "python_dynamic" and "python3_dynamic" values for has().
-
Bram Moolenaar authored
Problem: Memory leak in test_arabic. Solution: Free the from and to parts. (Christian Brabandt, closes #2569)
-
Bram Moolenaar authored
Problem: GTK: :promtfind does not put focus on text input. (Adam Novak) Solution: When re-opening the dialog put focus on the text input. (Kazunobu Kuriyama, closes #2563)
-
- Jan 27, 2018
-
-
Bram Moolenaar authored
Problem: Illegal memory access after undo. (Dominique Pelle) Solution: Avoid the column becomes negative. (Christian Brabandt, closes #2533)
-
Bram Moolenaar authored
Problem: After ":copen" can't get the window-ID of the quickfix window. (FalacerSelene) Solution: Make it work without a quickfix list. Add a test. (Yegappan Lakshmanan, closes #2541)
-
- Jan 26, 2018
-
-
Bram Moolenaar authored
Problem: MS-Windows: vimtutor fails if %TMP% has special chars. Solution: Add quotes. (Tamce, closes #2561)
-