- Dec 30, 2011
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Test 83 may fail for some encodings. Solution: Set 'encoding' to utf-8 earlier.
-
- Dec 23, 2011
-
-
Bram Moolenaar authored
Problem: Test 83 fails when iconv does not support cp932. (raf) Solution: Test if conversion works. (Yukihiro Nakadaira)
-
Bram Moolenaar authored
Problem: When using an expression mapping on the command line the cursor ends up in the wrong place. (Yasuhiro Matsumoto) Solution: Save and restore msg_col and msg_row when evaluating the expression.
-
Bram Moolenaar authored
Problem: Mapping CTRL-K in Insert mode breaks CTRL-X CTRL-K for dictionary completion. Solution: Add CTRL-K to the list of recognized keys. (James McCoy)
-
Bram Moolenaar authored
Problem: For EBCDIC pound sign is defined as 't'. Solution: Correctly define POUND.
-
- Dec 15, 2011
-
-
Bram Moolenaar authored
Problem: IME characters are inserted twice. Solution: Do not call DefWindowProc() if the event was handled. (Yasuhiro Matsumoto)
-
- Dec 14, 2011
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Configure silently skips interfaces that won't work. Solution: Add the --enable-fail_if_missing argument. (Shlomi Fish)
-
Bram Moolenaar authored
Problem: C-indenting wrong for a function header. Solution: Skip to the start paren. (Lech Lorens)
-
Bram Moolenaar authored
Problem: C-indenting wrong for static enum. Solution: Skip over "static". (Lech Lorens)
-
Bram Moolenaar authored
Problem: When cross-compiling the check for uint32_t fails. Solution: Only give a warning message. (Maksim Melnikau)
-
Bram Moolenaar authored
Problem: No support for bitwise AND, OR, XOR and invert. Solution: Add add(), or(), invert() and xor() functions.
-
Bram Moolenaar authored
Problem: Win32: Toolbar repainting does not work when the mouse pointer hovers over a button. Solution: Call DefWindowProc() when not hanlding an event. (Sergiu Dotenco)
-
Bram Moolenaar authored
Problem: Duplicate return statement. Solution: Remove the superfluous one. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: ++encoding does not work properly. Solution: Recognize ++encoding before ++enc. (Charles Cooper)
-
Bram Moolenaar authored
Problem: A tags file with an extremely long name may cause an infinite loop. Solution: When encountering a long name switch to linear search.
-
- Dec 08, 2011
-
-
Bram Moolenaar authored
Problem: When using a command line mapping to <Up> with file name completion to go one directory up, 'wildchar' is inserted. (Yasuhiro Matsumoto) Solution: Set the KeyTyped flag.
-
Bram Moolenaar authored
Problem: Crash in autocomplete. (Greg Weber) Solution: Check not going over allocated buffer size.
-
Bram Moolenaar authored
Problem: Compiler warns for unused variable in Lua interface. Solution: Remove the variable.
-
Bram Moolenaar authored
Problem: When compiled with Gnome get an error message when using --help. Solution: Don't fork. (Ivan Krasilnikov)
-
Bram Moolenaar authored
Problem: Gcc complains about redefining _FORTIFY_SOURCE. Solution: Undefine it before redefining it.
-
Bram Moolenaar authored
Problem: :wundo and :rundo use a wrong checksum. Solution: Include the last line when computing the hash. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: A tags file with an extremely long name causes errors. Solution: Ignore tags that are too long. (Arno Renevier)
-
Bram Moolenaar authored
Problem: Crash when using a large Unicode character in a file that has syntax highlighting. (ngollan) Solution: Check for going past the end of the utf tables. (Dominique Pelle)
-
- Dec 01, 2011
-
-
Bram Moolenaar authored
Problem: Can't compile on HP-UX. (John Marriott) Solution: Only use TTYM_URXVT when it is defined.
-
- Nov 30, 2011
-
-
Bram Moolenaar authored
Problem: C indenting is wrong after #endif followed by a semicolon. Solution: Add special handling for a semicolon in a line by itself. (Lech Lorens)
-
Bram Moolenaar authored
Problem: ml_get error when using ":g" with folded lines. Solution: Adjust the line number for changed_lines(). (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Accessing memory after it is freed when EXITFREE is defined. Solution: Don't access curwin when firstwin is NULL. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Interrupting the load of an autoload function may cause a crash. Solution: Do not use the hashitem when not valid. (Yukihiro Nakadaira)
-
Bram Moolenaar authored
Problem: Command line completion shows dict functions. Solution: Skip dict functions for completion. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: Mouse support doesn't work properly. Solution: Add HMT_URXVT. (lilydjwg, James McCoy)
-
Bram Moolenaar authored
Problem: Compiler warning in MS-Windows console build. Solution: Adjust return type of PrintHookProc(). (Mike Williams)
-
Bram Moolenaar authored
Problem: Using "o" with 'cindent' set may freeze Vim. (lolilolicon) Solution: Skip over {} correctly. (Hari G)
-
Bram Moolenaar authored
Problem: GTK warnings when using netrw.vim. (Ivan Krasilnikov) Solution: Do not remove the beval event handler twice.
-
Bram Moolenaar authored
Problem: ":set backspace+=eol" doesn't work when 'backspace' has a backwards compatible value of 2. Solution: Convert the number to a string. (Hirohito Higashi)
-
- Oct 26, 2011
-
-
Bram Moolenaar authored
Problem: Missing part of the urxvt patch. Solution: Add the change in term.c
-
Bram Moolenaar authored
Problem: When completing methods dict functions and script-local functions get in the way. Solution: Sort function names starting with "<" to the end. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: Text formatting uses start of insert position when it should not. (Peter Wagenaar) Solution: Do not use Insstart when intentionally formatting.
-
Bram Moolenaar authored
Problem: Block of code after ":lua << EOF" may not work. (Paul Isambert) Solution: Recognize the ":lua" command, skip to EOF.
-