summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-06-13updated for version 7.3.552Bram Moolenaar
Problem: Formatting inside comments does not use the "2" flag in 'formatoptions'. Solution: Support the "2" flag. (Tor Perkins)
2012-06-13updated for version 7.3.551Bram Moolenaar
Problem: When using :tablose a TabEnter autocommand is triggered too early. (Karthick) Solution: Don't trigger *Enter autocommands before closing the tab. (Christian Brabandt)
2012-06-13updated for version 7.3.550Bram Moolenaar
Problem: With "j" in 'formatoptions' a list leader is not removed. (Gary Johnson) Solution: Don't ignore the start of a three part comment. (Lech Lorens)
2012-06-13updated for version 7.3.549Bram Moolenaar
Problem: In 'cinoptions' "0s" is interpreted as one shiftwidth. (David Pineau) Solution: Use the zero as zero. (Lech Lorens)
2012-06-07updated for version 7.3.548Bram Moolenaar
Problem: Compiler warning on 64 bit Windows. Solution: Add type cast. (Mike Williams)
2012-06-06updated for version 7.3.547Bram Moolenaar
Problem: Compiler warning for uninitialized variable. Solution: Initialize it.
2012-06-06updated for version 7.3.546Bram Moolenaar
Problem: Bogus line break. Solution: Remove the line break.
2012-06-06updated for version 7.3.545Bram Moolenaar
Problem: When closing a window or buffer autocommands may close it too, causing problems for where the autocommand was invoked from. Solution: Add the w_closing and b_closing flags. When set disallow ":q" and ":close" to prevent recursive closing.
2012-06-06updated for version 7.3.544Bram Moolenaar
Problem: There is no good way to close a quickfix window when closing the last ordinary window. Solution: Add the QuitPre autocommand.
2012-06-06updated for version 7.3.543Bram Moolenaar
Problem: The cursor is in the wrong line after using ":copen". (John Beckett) Solution: Invoke more drastic redraw method.
2012-06-06updated for version 7.3.542Bram Moolenaar
Problem: Function is sometimes unused. Solution: Add #ifdef.
2012-06-06updated for version 7.3.541Bram Moolenaar
Problem: When joining lines comment leaders need to be removed manually. Solution: Add the 'j' flag to 'formatoptions'. (Lech Lorens)
2012-06-06updated for version 7.3.540Bram Moolenaar
Problem: Cursor is left on the text instead of the command line. Solution: Don't call setcursor() in command line mode.
2012-06-06updated for version 7.3.539Bram Moolenaar
Problem: Redrawing a character on the command line does not work properly for multi-byte charactes. Solution: Count the number of bytes in a character. (Yukihiro Nakadaira)
2012-06-01Updated runtime files.Bram Moolenaar
2012-06-01updated for version 7.3.538Bram Moolenaar
Problem: 'efm' does not handle Tabs in pointer lines. Solution: Add Tab support. Improve tests. (Lech Lorens)
2012-06-01updated for version 7.3.537Bram Moolenaar
Problem: Unecessary call to init_spell_chartab(). Solution: Delete the call.
2012-06-01updated for version 7.3.536Bram Moolenaar
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.
2012-06-01updated for version 7.3.535Bram Moolenaar
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.
2012-06-01updated for version 7.3.534Bram Moolenaar
Problem: When using an InsertCharPre autocommand autoindent fails. Solution: Proper handling of v:char. (Alexey Radkov)
2012-06-01updated for version 7.3.533Bram Moolenaar
Problem: Memory leak when writing undo file. Solution: Free the ACL. (Dominique Pelle)
2012-06-01updated for version 7.3.532Bram Moolenaar
Problem: Compiler warning from Clang. Solution: Use a different way to point inside a string. (Dominique Pelle)
2012-05-27updated for version 7.3.531Bram Moolenaar
Problem: GUI does not work on MS-Windows. Solution: Add the missing #ifdef. (Patrick Avery)
2012-05-25updated for version 7.3.530Bram Moolenaar
Problem: Gvim does not work when 'guioptions' includes "f". (Davido) Solution: Call gui_mch_init_check() when running GUI in the foreground. (Yasuhiro Matsumoto)
2012-05-25updated for version 7.3.529Bram Moolenaar
Problem: Using a count before "v" and "V" does not work (Kikyous) Solution: Make the count select that many characters or lines. (Christian Brabandt)
2012-05-25updated for version 7.3.528Bram Moolenaar
Problem: Crash when closing last window in a tab. (Alex Efros) Solution: Use common code in close_last_window_tabpage(). (Christian Brabandt)
2012-05-25updated for version 7.3.527Bram Moolenaar
Problem: Clang complains about non-ASCII characters in a string. Solution: Change to \x88 form. (Dominique Pelle)
2012-05-25updated for version 7.3.526Bram Moolenaar
Problem: Confusing indenting for #ifdef. Solution: Remove and add indent. (Elias Diem)
2012-05-25updated for version 7.3.525Bram Moolenaar
Problem: Compiler warning on 64 bit MS-Windows. Solution: Add type cast. (Mike Williams)
2012-05-18updated for version 7.3.524Bram Moolenaar
Problem: Missing comma. Solution: Add the comma.
2012-05-18Fix more 'cpo' issues in runtime files.Bram Moolenaar
2012-05-18updated for version 7.3.523Bram Moolenaar
Problem: ":diffupdate" doesn't check for files changed elsewhere. Solution: Add the ! flag. (Christian Brabandt)
2012-05-18updated for version 7.3.522Bram Moolenaar
Problem: Crash in vim_realloc() when using MEM_PROFILE. Solution: Avoid using a NULL argument. (Dominique Pelle)
2012-05-18updated for version 7.3.521Bram Moolenaar
Problem: Using "z=" on a multi-byte character may cause a crash. Solution: Don't use strlen() on an int pointer.
2012-05-18updated for version 7.3.520Bram Moolenaar
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.
2012-05-18updated for version 7.3.519Bram Moolenaar
Problem: When completefunction returns it cannot indicate end of completion mode. Solution: Recognize completefunction returning -3. (Mtsushita Shougo)
2012-05-18updated for version 7.3.518Bram Moolenaar
Problem: When 'encoding' is a double-byte encoding ":helptags" may not find tags correctly. Solution: Use vim_strbyte() instead of vim_strchr(). (Yasuhiro Matsumoto)
2012-05-18Updated runtime files.Bram Moolenaar
2012-05-18Ignore file generated by tests.Bram Moolenaar
2012-05-18updated for version 7.3.517Bram Moolenaar
Problem: Crash when using "vipvv". (Alexandre Provencio) Solution: Don't let the text length become negative.
2012-05-18updated for version 7.3.516Bram Moolenaar
Problem: extend(o, o) may crash Vim. Solution: Fix crash and add test. (Thinca and Hirohito Higashi)
2012-05-01More runtime file fixes for 'compatible' mode.Bram Moolenaar
2012-04-30updated for version 7.3.515Bram Moolenaar
Problem: 'wildignorecase' only applies to the last part of the path. Solution: Also ignore case for letters earlier in the path.
2012-04-30updated for version 7.3.514Bram Moolenaar
Problem: No completion for :history command. Solution: Add the completion and update the docs. Also fix ":behave" completion. (Dominique Pelle)
2012-04-30updated for version 7.3.513Bram Moolenaar
Problem: Cannot use CTRL-E and CTRL-Y with "r". Solution: Make CTRL-E and CTRL-Y work like in Insert mode. (Christian Brabandt)
2012-04-30updated for version 7.3.512Bram Moolenaar
Problem: undofile() returns a useless name when passed an empty string. Solution: Return an empty string. (Christian Brabandt)
2012-04-30updated for version 7.3.511Bram Moolenaar
Problem: Using a FileReadCmd autocommand that does ":e! {file}" may cause a crash. (Christian Brabandt) Solution: Properly restore curwin->w_s.
2012-04-30Fixed compatible mode in most runtime files.Bram Moolenaar
2012-04-30updated for version 7.3.510Bram Moolenaar
Problem: Test 77 fails on Solaris 7. (Michael Soyka) Solution: Replace any tabs with spaces.
2012-04-26Updated runtime files, include fixes for line continuation.Bram Moolenaar