- Aug 28, 2018
-
-
Bram Moolenaar authored
Problem: Get Gdk-Critical error on first balloon show. Solution: Get screen geometry using the draw area widget. (Davit Samvelyan, closes #3386)
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Insufficient test coverage for :mkview and :loadview. Solution: Add tests. (Dominique Pelle, closes #3385)
-
Bram Moolenaar authored
Problem: The qf_add_entries() function is too long. Solution: Split in two parts. (Yegappan Lakshmanan)
-
- Aug 27, 2018
-
-
Bram Moolenaar authored
Problem: Using inputlist() during startup results in garbage. (Dominique Pelle) Solution: Make sure the xterm tracing is stopped when disabling the mouse.
-
- Aug 26, 2018
-
-
Bram Moolenaar authored
Problem: inputlist() doesn't work with a timer. (Dominique Pelle) Solution: Don't redraw when cmdline_row is zero. (Hirohito Higashi, closes #3239)
-
- Aug 24, 2018
-
-
Bram Moolenaar authored
Problem: The "g CTRL-G" command isn't tested much. Solution: Add more tests. (Dominique Pelle, closes #3369)
-
Bram Moolenaar authored
Problem: Screen dump does not consider NUL and space equal. Solution: Use temp variables instead of character from cell.
-
- Aug 23, 2018
-
-
Bram Moolenaar authored
Problem: Strings in swap file may not be NUL terminated. (Coverity) Solution: Limit the length of the used string.
-
Bram Moolenaar authored
Problem: Off-by-one error in cmdidx check. (Coverity) Solution: Use ">=" instead of ">".
-
Bram Moolenaar authored
Problem: Reverse order of VTP calls only needed the first time. Solution: Add a flag to remember the state. (Nobuhiro Takasaki, closes #3366)
-
Bram Moolenaar authored
Problem: Test_copy_winopt() does not restore 'hidden'. Solution: Restore the option, fix indent. (Ozaki Kiichi, closes #3367)
-
Bram Moolenaar authored
Problem: 'incsearch' regression: /\v highlights everything. Solution: Put back the empty_pattern() check.
-
- Aug 22, 2018
-
-
Bram Moolenaar authored
Problem: Too much 'incsearch' highlight for pattern matching everything. Solution: Add the skiplen to the command and remove the line range. (Christian Brabandt) Check for empty pattern earlier.
-
Bram Moolenaar authored
Problem: bzero() function prototype doesn't work for Android. Solution: Add an #ifdef. (Elliott Hughes, closes #3365)
-
Bram Moolenaar authored
Problem: The getftype() test may fail for char devices if the file disappeared in between the listing and the getftype() call. Solution: Ignore empty result. (Ozaki Kiichi, closes #3360)
-
Bram Moolenaar authored
Problem: Cscope test fails when using shadow directory. Solution: Resolve symlink in Vim. (James McCoy, closes #3364)
-
Bram Moolenaar authored
Problem: swapinfo() test fails on Travis. Solution: Handle a long host name. (Ozaki Kiichi, closes #3361) Also make the version check flexible. (James McCoy)
-
- Aug 21, 2018
-
-
Bram Moolenaar authored
Problem: Helpgrep with language doesn't work properly. (Takuya Fujiwara) Solution: Check for the language earlier. (Hirohito Higashi)
-
Bram Moolenaar authored
Problem: Build failure without the +eval feature. (Brenton Horne) Solution: Add #ifdef. Also add the "dirty" item.
-
Bram Moolenaar authored
Problem: Information about a swap file is unavailable. Solution: Add swapinfo(). (Enzo Ferber)
-
Bram Moolenaar authored
Problem: Wrong type for flags used in signal handlers. Solution: Use sig_atomic_t. (Dominique Pelle, closes #3356)
-
Bram Moolenaar authored
Problem: Filtering entries in a quickfix list is not easy. Solution: Add the cfilter plugin. (Yegappan Lakshmanan)
-
Bram Moolenaar authored
Problem: File info message not always suppressed with 'F' in 'shortmess'. (Asheq Imran) Solution: Save and restore msg_silent. (Christian Brabandt, closes #3221)
-
Bram Moolenaar authored
Problem: Profiling does not show a count for condition lines. (Daniel Hahler) Solution: Count lines when not skipping. (Ozaki Kiichi, closes #2499)
-
Bram Moolenaar authored
Problem: A quick undo shows "1 seconds ago". (Tony Mechelynck) Solution: Add singular/plural message.
-
Bram Moolenaar authored
Problem: There is no good way to get the window layout. Solution: Add the winlayout() function. (Yegappan Lakshmanan)
-
Bram Moolenaar authored
Problem: Plural messages are not translated properly. Solution: Add more usage of NGETTEXT(). (Sergey Alyoshin)
-
Bram Moolenaar authored
Problem: Missing support for Lua 5.4 32 bits on Unix. Solution: Define lua_newuserdatauv. (Kazunobu Kuriyama)
-
Bram Moolenaar authored
Problem: No redraw when using a STOP signal on Vim and then a CONT signal. Solution: Catch the CONT signal and set the terminal to raw mode. This is like 8.1.0244 but without the screen redraw and a fix for multi-threading suggested by Dominique Pelle.
-
- Aug 20, 2018
-
-
Bram Moolenaar authored
Problem: line2byte() is wrong for last line with 'noeol' and 'nofixeol'. Solution: Fix off-by-one error. (Shane Harper, closes #3351)
-
Bram Moolenaar authored
Problem: Crash when using :suspend and "fg". Solution: Undo patch 8.1.244.
-
- Aug 19, 2018
-
-
Bram Moolenaar authored
Problem: GTK: Input method popup displayed on wrong screen. Solution: Add the screen position offset. (Ken Takata, closes #3268)
-
Bram Moolenaar authored
Problem: The old window title might be freed twice. (Dominique Pelle) Solution: Do not free "oldtitle" in a signal handler but set a flag to have it freed later.
-
Bram Moolenaar authored
Problem: misplaced comment Solution: Remove comment
-
Bram Moolenaar authored
Problem: Window resize test sometimes fails on Mac. Solution: Add Test_popup_and_window_resize() to flaky tests.
-
Bram Moolenaar authored
Problem: MS-Windows: tests fail, Vim crashes. Solution: Fix long file name handling.
-
- Aug 18, 2018
-
-
Bram Moolenaar authored
Problem: Command parsing for 'incsearch' is a bit ugly. Solution: Return when there is no pattern. Put common checks together.
-
Bram Moolenaar authored
Problem: No 'incsearch' highlighting for :vimgrep and similar commands. Solution: Parse the :vimgrep command and similar ones to locate the search pattern. (Hirohito Higashi, closes #3344)
-
Bram Moolenaar authored
Problem: MS-Windows: sometimes uses short directory name. Solution: Expand to long file name with correct caps. (Nobuhiro Takasaki, closes #3334)
-