- Jun 01, 2012
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: 'efm' does not handle Tabs in pointer lines. Solution: Add Tab support. Improve tests. (Lech Lorens)
-
Bram Moolenaar authored
Problem: Unecessary call to init_spell_chartab(). Solution: Delete the call.
-
Bram Moolenaar authored
Problem: When spell checking the German sharp s is not seen as a word character. (Aexl Bender) Solution: In utf_islower() return true for the sharp s. Note: also need updated spell file for this to take effect.
-
Bram Moolenaar authored
Problem: Many #ifdefs for MB_MAXBYTES. Solution: Also define MB_MAXBYTES without the +multi_byte feature. Fix places where the buffer didn't include space for a NUL byte.
-
Bram Moolenaar authored
Problem: When using an InsertCharPre autocommand autoindent fails. Solution: Proper handling of v:char. (Alexey Radkov)
-
Bram Moolenaar authored
Problem: Memory leak when writing undo file. Solution: Free the ACL. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Compiler warning from Clang. Solution: Use a different way to point inside a string. (Dominique Pelle)
-
- May 26, 2012
-
-
Bram Moolenaar authored
Problem: GUI does not work on MS-Windows. Solution: Add the missing #ifdef. (Patrick Avery)
-
- May 25, 2012
-
-
Bram Moolenaar authored
Problem: Gvim does not work when 'guioptions' includes "f". (Davido) Solution: Call gui_mch_init_check() when running GUI in the foreground. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: Using a count before "v" and "V" does not work (Kikyous) Solution: Make the count select that many characters or lines. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Crash when closing last window in a tab. (Alex Efros) Solution: Use common code in close_last_window_tabpage(). (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Clang complains about non-ASCII characters in a string. Solution: Change to \x88 form. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Confusing indenting for #ifdef. Solution: Remove and add indent. (Elias Diem)
-
Bram Moolenaar authored
Problem: Compiler warning on 64 bit MS-Windows. Solution: Add type cast. (Mike Williams)
-
- May 18, 2012
-
-
Bram Moolenaar authored
Problem: Missing comma. Solution: Add the comma.
-
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)
-