- Nov 02, 2013
-
-
Bram Moolenaar authored
Problem: byteidx() does not work for composing characters. Solution: Add byteidxcomp().
-
Bram Moolenaar authored
Problem: Mac: Compilation problem with OS X 10.9 Mavericks. Solution: Include AvailabilityMacros.h when available. (Kazunobu Kuriyama)
-
Bram Moolenaar authored
Problem: Mac: Where availability macros are defined depends on the system. Solution: Add a configure check. (Felix Bünemann)
-
Bram Moolenaar authored
Problem: Reading past end of the 'stl' string. Solution: Don't increment pointer when already at the NUL. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Test75 has a wrong header. (ZyX) Solution: Fix the text and remove leading ".
-
- Oct 06, 2013
-
-
Bram Moolenaar authored
Problem: With 'fo' set to "a2" inserting a space in the first column may cause the cursor to jump to the previous line. Solution: Handle the case when there is no comment leader properly. (Tor Perkins) Also fix that cursor is in the wrong place when spaces get replaced with a Tab.
-
Bram Moolenaar authored
Problem: Syntax highlighting a Yaml file causes a crash. (Blake Preston) Solution: Copy the pim structure before calling addstate() to avoid it becoming invalide when the state list is reallocated.
-
Bram Moolenaar authored
-
- Oct 02, 2013
-
-
Bram Moolenaar authored
Problem: "gn" selects too much for the pattern "\d" when there are two lines with a single digit. (Ryan Carney) Solution: Adjust the logic of is_one_char(). (Christian Brabandt)
-
Bram Moolenaar authored
Problem: In Ex mode, when line numbers are enabled the substitute prompt is wrong. Solution: Adjust for the line number size. (Benoit Pierre)
-
Bram Moolenaar authored
Problem: Recent clang version complains about -fno-strength-reduce. Solution: Add a configure check for the clang version. (Kazunobu Kuriyama)
-
Bram Moolenaar authored
Problem: When using input() in a function invoked by a mapping it doesn't work. Solution: Temporarily reset ex_normal_busy. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: Can't use Tcl 8.6. Solution: Change how Tcl_FindExecutable is called. (Jan Nijtmans)
-
- Sep 29, 2013
-
-
Bram Moolenaar authored
Problem: substitute() does not work properly when the pattern starts with "\ze". Solution: Detect an empty match. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Can't build with old MSVC. (Wang Shoulin) Solution: Define OPEN_OH_ARGTYPE instead of using intptr_t directly.
-
Bram Moolenaar authored
Problem: VMS can't handle long function names. Solution: Shorten may_req_ambiguous_character_width. (Samuel Ferencik)
-
Bram Moolenaar authored
Problem: When using ":setlocal" for 'spell' and 'spellang' then :spelldump doesn't work. (Dimitar Dimitrov) Solution: Copy the option variables to the new window used to show the dump. (Christian Brabandt)
-
- Sep 25, 2013
-
-
Bram Moolenaar authored
Problem: Visual selection does not remain after being copied over. (Axel Bender) Solution: Move when VIsual_active is reset. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Valgrind error on exit when a script-local variable holds a reference to the scope of another script. Solution: First clear all variables, then free the scopes. (ZyX)
-
Bram Moolenaar authored
Problem: MS-Windows: MSCV10 and earlier can't handle symlinks to a directory properly. Solution: Add stat_symlink_aware() and wstat_symlink_aware(). (Ken Takata)
-
Bram Moolenaar authored
Problem: Using "zw" and "zg" when 'spell' is off give a confusing error message. (Gary Johnson) Solution: Ignore the error when locating the word. Explicitly mention what word was added. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Using "\ze" in a sub-pattern does not result in the end of the match to be set. (Axel Bender) Solution: Copy the end of match position when a recursive match was successful.
-
Bram Moolenaar authored
Problem: NFA engine does not capture group correctly when using \@>. (ZyX) Solution: Copy submatches before doing the recursive match.
-
- Sep 24, 2013
-
-
Bram Moolenaar authored
-
- Sep 22, 2013
-
-
Bram Moolenaar authored
Problem: MS-Windows: The mouse pointer flickers when going from command line mode to Normal mode. Solution: Check for WM_NCMOUSEMOVE. (Ken Takata)
-
Bram Moolenaar authored
Problem: Using "p" in Visual block mode only changes the first line. Solution: Repeat the put in all text in the block. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: When the terminal has only 20 lines test 92 and 93 overwrite the input file. Solution: Explicitly write test.out. Check that the terminal is large enough to run the tests. (Hirohito Higashi)
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: NFA engine does not match the NUL character. (Jonathon Merz) Solution: Ues 0x0a instead of NUL. (Christian Brabandt)
-
- Sep 20, 2013
-
-
Bram Moolenaar authored
Problem: ":diffoff!" resets options even when 'diff' is not set. (Charles Cooper) Solution: Only resets related options in a window where 'diff' is set.
-
- Sep 19, 2013
-
-
Bram Moolenaar authored
Problem: The -mno-cygwin argument is no longer supported by Cygwin. Solution: Remove the arguments. (Steve Hall)
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: An error in a pattern is reported twice. Solution: Remove the retry with the backtracking engine, it won't work.
-
Bram Moolenaar authored
Problem: Equivalence classes are not working for multi-byte characters. Solution: Copy the rules from the old to the new regexp engine. Add a test to check both engines.
-
- Sep 08, 2013
-
-
Bram Moolenaar authored
Problem: Another valgrind error when using CTRL-X CTRL-F at the start of the line. (Dominique Pelle) Solution: Don't call mb_ptr_back() at the start of the line. Add a test.
-
Bram Moolenaar authored
Problem: Clang warning for int shift overflow. Solution: Use unsigned and cast back to int. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Reading before start of a string. Solution: Do not call mb_ptr_back() at start of a string. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: When root edits a file the undo file is owned by root while the edited file may be owned by another user, which is not allowed. (cac2s) Solution: Accept an undo file owned by the current user.
-
- Sep 07, 2013
-
-
Bram Moolenaar authored
Problem: Compiler warning on 64 bit windows. Solution: Add type cast. (Mike Williams)
-
- Sep 05, 2013
-
-
Bram Moolenaar authored
-