- Jun 25, 2015
-
-
Bram Moolenaar authored
Problem: Building with Lua 5.3 doesn't work, symbols have changed. Solution: Use the new names for the new version. (Felix Schnizlein)
-
Bram Moolenaar authored
Problem: When 'conceallevel' is 1 and quitting the command-line window with CTRL-C the first character ':' is erased. Solution: Reset 'conceallevel' in the command-line window. (Hirohito Higashi)
-
Bram Moolenaar authored
Problem: Cannot detect the background color of a terminal. Solution: Add T_RBG to request the background color if possible. (Lubomir Rintel)
-
Bram Moolenaar authored
Problem: Can't use strawberry Perl 5.22 x64 on MS-Windows. Solution: Add new defines and #if. (Ken Takata)
-
Bram Moolenaar authored
Problem: It is not easy to count the number of characters. Solution: Add the skipcc argument to strchars(). (Hirohito Higashi, Ken Takata)
-
Bram Moolenaar authored
Problem: Using CTRL-A in Visual mode does not work well. (Gary Johnson) Solution: Make it increment all numbers in the Visual area. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Appending in Visual mode with 'linebreak' set does not work properly. Also when 'selection' is "exclusive". (Ingo Karkat) Solution: Recalculate virtual columns. (Christian Brabandt)
-
- Jun 21, 2015
-
-
Bram Moolenaar authored
Problem: Unicode 8.0 not supported. Solution: Update tables for Unicode 8.0. Avoid E36 when running the script. (James McCoy)
-
Bram Moolenaar authored
Problem: It is not obvious how to enable the address sanitizer. Solution: Add commented-out flags in the Makefile. (Dominique Pelle) Also add missing test targets.
-
Bram Moolenaar authored
Problem: Cannot build with clang 3.5 on Cygwin with perl enabled. Solution: Strip "-fdebug-prefix-map" in configure. (Ken Takata)
-
- Jun 20, 2015
-
-
Bram Moolenaar authored
Problem: For some options two consecutive commas are OK. (Nikolay Pavlov) Solution: Add the P_ONECOMMA flag.
-
- Jun 19, 2015
-
-
Bram Moolenaar authored
Problem: Buffer overflow. Solution: Make the buffer larger. (Kazunobu Kuriyama)
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: ":cnext" may jump to the wrong column when setting 'virtualedit=all' (cs86661) Solution: Reset the coladd field. (Hirohito Higashi)
-
Bram Moolenaar authored
Problem: ":[count]tag" is not always working. (cs86661) Solution: Set cur_match a bit later. (Hirohito Higashi)
-
Bram Moolenaar authored
Problem: The entries added by matchaddpos() are returned by getmatches() but can't be set with setmatches(). (Lcd) Solution: Fix setmatches(). (Christian Brabandt)
-
Bram Moolenaar authored
Problem: No tests for Ruby and Perl. Solution: Add minimal tests. (Ken Takata)
-
Bram Moolenaar authored
Problem: "p" in Visual mode causes an unexpected line split. Solution: Advance the cursor first. (Yukihiro Nakadaira)
-
Bram Moolenaar authored
Problem: Cannot specify a vertical split when loading a buffer for a quickfix command. Solution: Add the "vsplit" value to 'switchbuf'. (Brook Hong)
-
Bram Moolenaar authored
Problem: When using += with ":set" a trailing comma is not recognized. (Issue 365) Solution: Don't add a second comma. Add a test. (partly by Christian Brabandt)
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: ":1quit" works like ":.quit". (Bohr Shaw) Solution: Don't exit Vim when a range is specified. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: In a string "\U" only takes 4 digits, while after CTRL-V U eight digits can be used. Solution: Make "\U" also take eight digits. (Christian Brabandt)
-
- Jun 10, 2015
-
-
Bram Moolenaar authored
Problem: Can't compile without the syntax highlighting feature. Solution: Add #ifdef around use of w_p_cul. (Hirohito Higashi)
-
- Jun 09, 2015
-
-
Bram Moolenaar authored
Problem: On MS-Windows vimgrep over arglist doesn't work (Issue 361) Solution: Only escape backslashes in ## expansion when it is not used as the path separator. (James McCoy)
-
Bram Moolenaar authored
Problem: Invalid memory access. Solution: Avoid going over the end of a NUL terminated string. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Wrong argument for sizeof(). Solution: Use a pointer argument. (Chris Hall)
-
Bram Moolenaar authored
Problem: ml_get error when using "p" in a Visual selection in the last line. Solution: Change the behavior at the last line. (Yukihiro Nakadaira)
-
Bram Moolenaar authored
Problem: test_listchars breaks on MS-Windows. (Kenichi Ito) Solution: Set fileformat to "unix". (Christian Brabandt)
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: The cursor line is not always updated for the "O" command. Solution: Reset the VALID_CROW flag. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: The tab menu shows "Close tab" even when it doesn't work. Solution: Don't show "Close tab" for the last tab. (John Marriott)
-
Bram Moolenaar authored
Problem: When setting the crypt key and using a swap file, text may be encrypted twice or unencrypted text remains in the swap file. (Issue 369) Solution: Call ml_preserve() before re-encrypting. Set correct index for next pointer block.
-
- May 14, 2015
-
-
Bram Moolenaar authored
Problem: Occasional crash with 'list' set. Solution: Fix off-by-one error. (Christian Brabandt)
-
- May 06, 2015
-
-
Bram Moolenaar authored
Problem: Can't build with some version of Visual Studio 2015. Solution: Recognize another version 14 number. (Sinan)
-
Bram Moolenaar authored
Problem: Cannot build GvimExt with MingW. Solution: Add -lgdi32. (KF Leong)
-
- May 05, 2015
-
-
Bram Moolenaar authored
Problem: Cannot build GvimExt. Solution: Set APPVER to 5.0. (KF Leong)
-
- May 04, 2015
-
-
Bram Moolenaar authored
Problem: ":call setreg('"', [])" reports an internal error. Solution: Make the register empty. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: Vim icon does not show in Windows context menu. (issue 249) Solution: Load the icon in GvimExt.
-
Bram Moolenaar authored
Problem: For indenting, finding the C++ baseclass can be slow. Solution: Cache the result. (Hirohito Higashi)
-