- May 18, 2012
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: ":diffupdate" doesn't check for files changed elsewhere. Solution: Add the ! flag. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Crash in vim_realloc() when using MEM_PROFILE. Solution: Avoid using a NULL argument. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Using "z=" on a multi-byte character may cause a crash. Solution: Don't use strlen() on an int pointer.
-
Bram Moolenaar authored
Problem: Gvim starts up slow on Unbuntu 12.04. Solution: Move the call to gui_mch_init_check() to after fork(). (Yasuhiro Matsumoto) Do check $DISPLAY being set.
-
Bram Moolenaar authored
Problem: When completefunction returns it cannot indicate end of completion mode. Solution: Recognize completefunction returning -3. (Mtsushita Shougo)
-
Bram Moolenaar authored
Problem: When 'encoding' is a double-byte encoding ":helptags" may not find tags correctly. Solution: Use vim_strbyte() instead of vim_strchr(). (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Crash when using "vipvv". (Alexandre Provencio) Solution: Don't let the text length become negative.
-
Bram Moolenaar authored
Problem: extend(o, o) may crash Vim. Solution: Fix crash and add test. (Thinca and Hirohito Higashi)
-
- May 01, 2012
-
-
Bram Moolenaar authored
-
- Apr 30, 2012
-
-
Bram Moolenaar authored
Problem: 'wildignorecase' only applies to the last part of the path. Solution: Also ignore case for letters earlier in the path.
-
Bram Moolenaar authored
Problem: No completion for :history command. Solution: Add the completion and update the docs. Also fix ":behave" completion. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Cannot use CTRL-E and CTRL-Y with "r". Solution: Make CTRL-E and CTRL-Y work like in Insert mode. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: undofile() returns a useless name when passed an empty string. Solution: Return an empty string. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Using a FileReadCmd autocommand that does ":e! {file}" may cause a crash. (Christian Brabandt) Solution: Properly restore curwin->w_s.
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Test 77 fails on Solaris 7. (Michael Soyka) Solution: Replace any tabs with spaces.
-
- Apr 26, 2012
-
-
Bram Moolenaar authored
-
- Apr 25, 2012
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: ":vimgrep" fails when 'autochdir' is set. Solution: A more generic solution for changing directory. (Ben Fritz)
-
Bram Moolenaar authored
Problem: Default for v:register is not set. Solution: Init v:register in eval_init(). Correct for 'clipboard' before the main loop. (Ingo Karkat)
-
Bram Moolenaar authored
Problem: When exiting with unsaved changes, selecting an existing file in the file dialog, there is no dialog to ask whether the existing file should be overwritten. (Felipe G. Nievinski) Solution: Call check_overwrite() before writing. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: GTK gives an error when selecting a non-existent file. Solution: Add a handler to avoid the error. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Test 11 fails on MS-Windows in some versions. Solution: Fix #ifdefs for whether filtering through a pipe is possible. Move setting b_no_eol_lnum back to where it was before patch 7.3.124. (David Pope)
-
Bram Moolenaar authored
Problem: Commands in help files are not highlighted. Solution: Allow for commands in backticks. Adjust CTRL-] to remove the backticks.
-
Bram Moolenaar authored
Problem: Warning for unused argument. Solution: Add UNUSED.
-
- Apr 20, 2012
-
-
Bram Moolenaar authored
Problem: Netbeans insert halfway a line actually appends to the line. Solution: Insert halfway the line. (Brian Victor)
-
Bram Moolenaar authored
Problem: Error for "flush" not being defined when using Ruby command. Solution: Defined "flush" as a no-op method. (Kent Sibilev)
-
Bram Moolenaar authored
Problem: Ming makefile unconditionally sets WINVER. Solution: Only defined when not already defined. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: When using any interface language when Vim is waiting for a child process it gets confused by a child process started through the interface. Solution: Always used waitpid() instead of wait(). (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: The behavior of the "- register changes depending on value of the 'clipboard' option. (Szamotulski) Solution: Also set the "- register when the register is "*" or "+". (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Crash when doing ":python print" and compiled with gcc and the optimizer enabled. Solution: Avoid the crash, doesn't really fix the problem. (Christian Brabandt)
-
- Apr 13, 2012
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: MS-DOS: When "diff" trips over difference in line separators some tests fail. Solution: Make some .ok files use unix line separators. (David Pope)
-
- Apr 09, 2012
-
-
Bram Moolenaar authored
Problem: Compiler warnings. Solution: Add function declaration. Remove "offset" argument.
-
- Apr 06, 2012
-
-
Bram Moolenaar authored
Problem: Can't compile with Lua 9.1 or dynamic Lua. Solution: Fix dll_ methods. Fix luado(). (Muraoka Taro, Luis Carvalho)
-
Bram Moolenaar authored
Problem: Two unused variables. Solution: Remove them. (Hong Xu)
-
- Apr 05, 2012
-
-
Bram Moolenaar authored
-