- Feb 24, 2018
-
-
Bram Moolenaar authored
Problem: C syntax test still fails when using gvim. Solution: Clear Normal cterm highlighting instead of setting it.
-
Bram Moolenaar authored
Problem: C syntax test fails when using gvim Solution: Force running in a terminal. Check that 'background' is correct even when $COLORFGBG is set.
-
Bram Moolenaar authored
Problem: Libterm doesn't support requesting fg and bg color. Solution: Implement t_RF and t_RB.
-
- Feb 23, 2018
-
-
Bram Moolenaar authored
Problem: Compiler warnings without termguicolors feature. Solution: Add #ifdef. (John Marriott) Cleanup the code a bit.
-
- Feb 22, 2018
-
-
Bram Moolenaar authored
Problem: Cannot use 24 bit colors in MS-Windows console. Solution: Add support for vcon. (Nobuhiro Takasaki, Ken Takasaki, fixes #1270, fixes #2060)
-
Bram Moolenaar authored
Problem: Dump test fails when using a shadow directory. Solution: Add the directory to the list of symlinks to make (Elimar Riesebieter)
-
- Feb 20, 2018
-
-
Bram Moolenaar authored
Problem: Assert_equalfile() does not close file descriptors. (Coverity) Solution: Close the file descriptors.
-
Bram Moolenaar authored
Problem: Dead code found. Solution: Remove the useless lines. (CodeAi, closes #2656)
-
Bram Moolenaar authored
Problem: Screen dump test fails on MS-Windows. Solution: Skip dump test on MS-Windows for now.
-
Bram Moolenaar authored
Problem: No test using a screen dump yet. Solution: Add a test for C syntax highlighting. Add helper functions.
-
- Feb 19, 2018
-
-
Bram Moolenaar authored
Problem: Using :wqa exits even if a job runs in a terminal window. (Jason Felice) Solution: Check if a terminal has a running job. (closes #2654)
-
Bram Moolenaar authored
Problem: Compiler warnings for uninitialized variables. (Tony Mechelynck) Solution: Initialize variables.
-
- Feb 18, 2018
-
-
Bram Moolenaar authored
Problem: Cannot write and read terminal screendumps. Solution: Add term_dumpwrite(), term_dumpread() and term_dumpdiff(). Also add assert_equalfile().
-
- Feb 17, 2018
-
-
Bram Moolenaar authored
Problem: Popup menu is positioned in the wrong place. (Davit Samvelyan, Boris Staletic) Solution: Correct computation of the column and the conditions for that. (Hirohito Higashi, closes #2640)
-
- Feb 16, 2018
-
-
Bram Moolenaar authored
Problem: Shift-Tab does not work in a terminal window. Solution: Recognize Shift-Tab key press. (Jsees Luehrs, closes #2644)
-
- Feb 13, 2018
-
-
Bram Moolenaar authored
Problem: Cursor is in the wrong line when using a WinBar in a Terminal window. Solution: Adjust the row number. (Christian Brabandt, closes #2362)
-
Bram Moolenaar authored
Problem: Getchangelist() does not use argument as bufname(). Solution: Use get_buf_tv(). (Yegappan Lakshmanan, closes #2641)
-
Bram Moolenaar authored
Problem: Error messages suppressed after ":silent! try". (Ben Reilly) Solution: Restore emsg_silent before executing :try. (closes #2531)
-
Bram Moolenaar authored
Problem: Invalid memory acces with pattern using look-behind match. (Dominique Pelle) Solution: Get a pointer to the right line.
-
Bram Moolenaar authored
Problem: Errors for job options are not very specific. Solution: Add more specific error messages.
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: Getting the list of changes is not easy. Solution: Add the getchangelist() function. (Yegappan Lakshmanan, closes #2634)
-
Bram Moolenaar authored
Problem: The jumplist is not always properly cleaned up. Solution: Call fname2fnum() before cleanup_jumplist(). (Yegappan Lakshmanan)
-
Bram Moolenaar authored
Problem: Warning for possibly using NULL pointer. (Coverity) Solution: Skip using the pointer if it's NULL.
-
Bram Moolenaar authored
Problem: Some code for the debugger watch expression is clumsy. Solution: Clean up the code.
-
Bram Moolenaar authored
Problem: Cannot test if a command causes a beep. Solution: Add assert_beeps().
-
- Feb 12, 2018
-
-
Bram Moolenaar authored
Problem: Test for failing drag-n-drop command no longer fails. Solution: Check for the "dnd" feature.
-
Bram Moolenaar authored
Problem: The :drop command is not always available. Solution: Include :drop in all builds. (Yasuhiro Matsumoto, closes #2639)
-
Bram Moolenaar authored
Problem: Timer test is a bit flaky. Solution: Add it to the list of flaky tests.
-
Bram Moolenaar authored
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)
-
- Feb 11, 2018
-
-
Bram Moolenaar authored
Problem: Debugger can't break on a condition. (Charles Campbell) Solution: Add ":breakadd expr". (Christian Brabandt, closes #859)
-
Bram Moolenaar authored
Problem: Win32: the screen may be cleared on startup. Solution: Only call shell_resized() when the size actually changed. (Ken Takata, closes #2527)
-
Bram Moolenaar authored
Problem: Access memory beyond end of string. (Coverity) Solution: Keep allocated memory in separate pointer. Avoid outputting the NUL character.
-
Bram Moolenaar authored
Problem: In out-of-memory situation character is not restored. (Coverity) Solution: Restore the character in all situations.
-
Bram Moolenaar authored
Problem: Out-of-memory situation not correctly handled. (Coverity) Solution: Check for NULL value.
-
Bram Moolenaar authored
Problem: Possible NULL pointer dereference. (Coverity) Solution: Check for the pointer not being NULL.
-
Bram Moolenaar authored
Problem: Out-of-memory situation not correctly handled. (Coverity) Solution: Check for NULL value.
-
Bram Moolenaar authored
Problem: Getjumplist() returns duplicate entries. (lacygoill) Solution: Call cleanup_jumplist(). (Yegappan Lakshmanan)
-
- Feb 10, 2018
-
-
Bram Moolenaar authored
Problem: Getting the jump list requires parsing the output of :jumps. Solution: Add getjumplist(). (Yegappan Lakshmanan, closes #2609)
-
Bram Moolenaar authored
Problem: Clearing a pointer takes two lines. Solution: Add VIM_CLEAR() and replace vim_clear(). (Hirohito Higashi, closes #2629)
-