- Dec 29, 2018
-
-
Bram Moolenaar authored
Problem: Get error for using regexp recursively. (Dominique Pelle) Solution: Do no check if connection is desired.
-
Bram Moolenaar authored
Problem: Trying to reconnect to X server may cause problems. Solution: Do no try reconnecting when exiting. (James McCoy)
-
- Dec 28, 2018
-
-
Bram Moolenaar authored
Problem: When appending a line text property flags are not added. Solution: Add text properties to a newly added line.
-
Bram Moolenaar authored
Problem: When deleting a line text property flags are not adjusted. Solution: Adjust text property flags in preceding and following lines.
-
Bram Moolenaar authored
Problem: Arglist test fails on MS-windows. Solution: Only use a file name with a double quote on Unix.
-
Bram Moolenaar authored
Problem: Freeing memory for balloon eval too early. Solution: Store the pointer in BalloonEval and free it later. (Yasuhiro Matsumoto, closes #3725)
-
Bram Moolenaar authored
Problem: :args \"foo works like :args without argument. Solution: Fix check for empty argument. (closes #3728)
-
Bram Moolenaar authored
Problem: Command line argument -q [errorfile] is not tested. Solution: Add a test. (Dominique Pelle, closes #3730)
-
Bram Moolenaar authored
Problem: setjmp() variables defined globally are used in one file. Solution: Move the declarations to that file.
-
- Dec 27, 2018
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Custom operators can't act upon a forced motion. (Christian Wellenbrock) Solution: Add the forced motion to the mode() result. (Christian Brabandt, closes #3490)
-
Bram Moolenaar authored
Problem: MS-Windows: balloon_show() does not handle wide characters. Solution: Use CreateWindowExW(). (Yasuhiro Matsumoto, closes #3708)
-
Bram Moolenaar authored
Problem: Cannot build with Ruby 2.6.0. Solution: Add rb_ary_detransient(). (Ozaki Kiichi, closes #3724)
-
Bram Moolenaar authored
Problem: Coverity warns for possible use of NULL pointer. Solution: Check return value of vterm_obtain_screen().
-
- Dec 26, 2018
-
-
Bram Moolenaar authored
Problem: Finding next sign ID is inefficient. Solution: Add next_sign_id. (Yegappan Lakshmanan, closes #3717)
-
Bram Moolenaar authored
Problem: Computing byte offset wrong. (Bjorn Linse) Solution: Use the right variable for array index.
-
Bram Moolenaar authored
Problem: swapinfo() leaks memory. Solution: Avoid allocating the strings twice.
-
Bram Moolenaar authored
Problem: No check for out-of-memory when converting regexp. Solution: Bail out when lalloc() returns NULL. (John Marriott)
-
Bram Moolenaar authored
Problem: Get E14 while typing command :tab with 'incsearch' set. Solution: Do not give an error when looking for the command. (Yasuhiro Higashi)
-
Bram Moolenaar authored
Problem: text properties test fails on MS-Windows Solution: Set fileformat to "unix".
-
- Dec 25, 2018
-
-
Bram Moolenaar authored
Problem: Text property highlighting is off by one column. (Bjorn Linse) Solution: Update text property highlighting earlier. Let it overrule syntax highlighting.
-
Bram Moolenaar authored
Problem: Nsis file no longer used. Solution: Remove the file. (Ken Takata)
-
Bram Moolenaar authored
Problem: line2byte() gives wrong values with text properties. (Bjorn Linse) Solution: Compute byte offsets differently when text properties were added. (closes #3718)
-
- Dec 24, 2018
-
-
Bram Moolenaar authored
Problem: Coverity complains about null pointer use. Solution: Avoid using a null pointer.
-
Bram Moolenaar authored
Problem: Text properties cannot cross line boundaries. Solution: Support multi-line text properties.
-
Bram Moolenaar authored
Problem: Crash when out of memory while opening a terminal window. Solution: Handle out-of-memory more gracefully.
-
Bram Moolenaar authored
Problem: Using sign group names is inefficient. Solution: Store group names in a hash table and use a reference to them. Also remove unnecessary use of ":exe" from the tests. (Yegappan Lakshmanan, closes #3715)
-
Bram Moolenaar authored
Problem: Test for :stop fails on Arch. Solution: Check five lines for the expected output. (closes #3714)
-
- Dec 23, 2018
-
-
Bram Moolenaar authored
Problem: "wincmd p" does not work after using an autocmd window. Solution: Store "prevwin" in aco_save_T. (Christian Brabandt, closes #3690)
-
Bram Moolenaar authored
Problem: "gn" selects the wrong text with a multi-line match. Solution: Get the end position from searchit() directly. (closes #3695)
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Compiler warning on MS-Windows. Solution: Add type cast. (Mike Williams)
-
- Dec 22, 2018
-
-
Bram Moolenaar authored
Problem: Python cannot handle function name of script-local function. Solution: Use <SNR> instead of the special byte code. (Ozaki Kiichi, closes #3681)
-
Bram Moolenaar authored
Problem: MS-Windows: no resize to fit parent when using --windowid. Solution: Pass FALSE for "mustset" in gui_set_shellsize(). (Agorgianitis Loukas, closes #3616)
-
Bram Moolenaar authored
Problem: MS-Windows: terminal test fails in white console. Solution: Accept both white and black background colors.
-
Bram Moolenaar authored
Problem: Overuling CONF_ARGS from the environment still does not work. (Tony Mechelynck) Solution: Add back CONF_ARGS next to the new numbered ones.
-
Bram Moolenaar authored
Problem: Iterating through window frames is repeated. Solution: Define FOR_ALL_FRAMES. (Yegappan Lakshmanan)
-
Bram Moolenaar authored
Problem: Adding quickfix items marks items as valid errors. (Daniel Hahler) Solution: Check when items are valid. (Yegappan Lakshmanan, closes #3683, closes #3633)
-
Bram Moolenaar authored
Problem: Terminal debugger does not handle unexpected debugger exit. Solution: Check for debugger job ended and close unused buffers. (Damien)
-
Bram Moolenaar authored
Problem: Overuling CONF_ARGS from the environment no longer works. (Tony Mechelynck) Solution: Do not define any CONF_ARGS by default.
-