summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.3.553v7.3.553Bram Moolenaar2012-06-132-1/+15
| | | | | | | Problem: With double-width characters and 'listchars' containing "precedes" the text is displayed one cell off. Solution: Check for double-width character being overwritten by the "precedes" character. (Yasuhiro Matsumoto)
* updated for version 7.3.552v7.3.552Bram Moolenaar2012-06-137-42/+198
| | | | | | Problem: Formatting inside comments does not use the "2" flag in 'formatoptions'. Solution: Support the "2" flag. (Tor Perkins)
* updated for version 7.3.551v7.3.551Bram Moolenaar2012-06-137-27/+44
| | | | | | | Problem: When using :tablose a TabEnter autocommand is triggered too early. (Karthick) Solution: Don't trigger *Enter autocommands before closing the tab. (Christian Brabandt)
* updated for version 7.3.550v7.3.550Bram Moolenaar2012-06-134-7/+29
| | | | | | 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)
* updated for version 7.3.549v7.3.549Bram Moolenaar2012-06-134-1/+35
| | | | | | Problem: In 'cinoptions' "0s" is interpreted as one shiftwidth. (David Pineau) Solution: Use the zero as zero. (Lech Lorens)
* updated for version 7.3.548v7.3.548Bram Moolenaar2012-06-072-1/+3
| | | | | Problem: Compiler warning on 64 bit Windows. Solution: Add type cast. (Mike Williams)
* updated for version 7.3.547v7.3.547Bram Moolenaar2012-06-062-1/+3
| | | | | Problem: Compiler warning for uninitialized variable. Solution: Initialize it.
* updated for version 7.3.546v7.3.546Bram Moolenaar2012-06-062-2/+3
| | | | | Problem: Bogus line break. Solution: Remove the line break.
* updated for version 7.3.545v7.3.545Bram Moolenaar2012-06-065-17/+82
| | | | | | | 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.
* updated for version 7.3.544v7.3.544Bram Moolenaar2012-06-064-2/+7
| | | | | | Problem: There is no good way to close a quickfix window when closing the last ordinary window. Solution: Add the QuitPre autocommand.
* updated for version 7.3.543v7.3.543Bram Moolenaar2012-06-062-3/+3
| | | | | | Problem: The cursor is in the wrong line after using ":copen". (John Beckett) Solution: Invoke more drastic redraw method.
* updated for version 7.3.542v7.3.542Bram Moolenaar2012-06-062-1/+6
| | | | | Problem: Function is sometimes unused. Solution: Add #ifdef.
* updated for version 7.3.541v7.3.541Bram Moolenaar2012-06-0613-27/+482
| | | | | Problem: When joining lines comment leaders need to be removed manually. Solution: Add the 'j' flag to 'formatoptions'. (Lech Lorens)
* updated for version 7.3.540v7.3.540Bram Moolenaar2012-06-062-1/+4
| | | | | Problem: Cursor is left on the text instead of the command line. Solution: Don't call setcursor() in command line mode.
* updated for version 7.3.539v7.3.539Bram Moolenaar2012-06-062-0/+7
| | | | | | 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)
* Updated runtime files.Bram Moolenaar2012-06-0124-128/+186
|
* updated for version 7.3.538v7.3.538Bram Moolenaar2012-06-014-57/+111
| | | | | Problem: 'efm' does not handle Tabs in pointer lines. Solution: Add Tab support. Improve tests. (Lech Lorens)
* updated for version 7.3.537v7.3.537Bram Moolenaar2012-06-012-2/+2
| | | | | Problem: Unecessary call to init_spell_chartab(). Solution: Delete the call.
* updated for version 7.3.536v7.3.536Bram Moolenaar2012-06-012-2/+5
| | | | | | | 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.
* updated for version 7.3.535v7.3.535Bram Moolenaar2012-06-0110-38/+24
| | | | | | 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.
* updated for version 7.3.534v7.3.534Bram Moolenaar2012-06-012-7/+27
| | | | | Problem: When using an InsertCharPre autocommand autoindent fails. Solution: Proper handling of v:char. (Alexey Radkov)
* updated for version 7.3.533v7.3.533Bram Moolenaar2012-06-012-0/+3
| | | | | Problem: Memory leak when writing undo file. Solution: Free the ACL. (Dominique Pelle)
* updated for version 7.3.532v7.3.532Bram Moolenaar2012-06-012-1/+3
| | | | | Problem: Compiler warning from Clang. Solution: Use a different way to point inside a string. (Dominique Pelle)
* updated for version 7.3.531v7.3.531Bram Moolenaar2012-05-272-0/+4
| | | | | Problem: GUI does not work on MS-Windows. Solution: Add the missing #ifdef. (Patrick Avery)
* updated for version 7.3.530v7.3.530Bram Moolenaar2012-05-252-0/+6
| | | | | | Problem: Gvim does not work when 'guioptions' includes "f". (Davido) Solution: Call gui_mch_init_check() when running GUI in the foreground. (Yasuhiro Matsumoto)
* updated for version 7.3.529v7.3.529Bram Moolenaar2012-05-252-6/+14
| | | | | | Problem: Using a count before "v" and "V" does not work (Kikyous) Solution: Make the count select that many characters or lines. (Christian Brabandt)
* updated for version 7.3.528v7.3.528Bram Moolenaar2012-05-252-25/+47
| | | | | | Problem: Crash when closing last window in a tab. (Alex Efros) Solution: Use common code in close_last_window_tabpage(). (Christian Brabandt)
* updated for version 7.3.527v7.3.527Bram Moolenaar2012-05-252-3/+4
| | | | | Problem: Clang complains about non-ASCII characters in a string. Solution: Change to \x88 form. (Dominique Pelle)
* updated for version 7.3.526v7.3.526Bram Moolenaar2012-05-252-3/+5
| | | | | Problem: Confusing indenting for #ifdef. Solution: Remove and add indent. (Elias Diem)
* updated for version 7.3.525v7.3.525Bram Moolenaar2012-05-252-1/+3
| | | | | Problem: Compiler warning on 64 bit MS-Windows. Solution: Add type cast. (Mike Williams)
* updated for version 7.3.524v7.3.524Bram Moolenaar2012-05-181-1/+3
| | | | | Problem: Missing comma. Solution: Add the comma.
* Fix more 'cpo' issues in runtime files.Bram Moolenaar2012-05-1825-70/+122
|
* updated for version 7.3.523v7.3.523Bram Moolenaar2012-05-184-2/+16
| | | | | Problem: ":diffupdate" doesn't check for files changed elsewhere. Solution: Add the ! flag. (Christian Brabandt)
* updated for version 7.3.522v7.3.522Bram Moolenaar2012-05-182-1/+5
| | | | | Problem: Crash in vim_realloc() when using MEM_PROFILE. Solution: Avoid using a NULL argument. (Dominique Pelle)
* updated for version 7.3.521v7.3.521Bram Moolenaar2012-05-182-6/+10
| | | | | Problem: Using "z=" on a multi-byte character may cause a crash. Solution: Don't use strlen() on an int pointer.
* updated for version 7.3.520v7.3.520Bram Moolenaar2012-05-184-2/+43
| | | | | | 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.
* updated for version 7.3.519v7.3.519Bram Moolenaar2012-05-182-1/+11
| | | | | | Problem: When completefunction returns it cannot indicate end of completion mode. Solution: Recognize completefunction returning -3. (Mtsushita Shougo)
* updated for version 7.3.518v7.3.518Bram Moolenaar2012-05-182-1/+6
| | | | | | Problem: When 'encoding' is a double-byte encoding ":helptags" may not find tags correctly. Solution: Use vim_strbyte() instead of vim_strchr(). (Yasuhiro Matsumoto)
* Updated runtime files.Bram Moolenaar2012-05-1838-327/+901
|
* Ignore file generated by tests.Bram Moolenaar2012-05-181-0/+1
|
* updated for version 7.3.517v7.3.517Bram Moolenaar2012-05-182-2/+4
| | | | | Problem: Crash when using "vipvv". (Alexandre Provencio) Solution: Don't let the text length become negative.
* updated for version 7.3.516v7.3.516Bram Moolenaar2012-05-184-1/+25
| | | | | Problem: extend(o, o) may crash Vim. Solution: Fix crash and add test. (Thinca and Hirohito Higashi)
* More runtime file fixes for 'compatible' mode.Bram Moolenaar2012-05-0152-59/+264
|
* updated for version 7.3.515v7.3.515Bram Moolenaar2012-04-302-1/+9
| | | | | Problem: 'wildignorecase' only applies to the last part of the path. Solution: Also ignore case for letters earlier in the path.
* updated for version 7.3.514v7.3.514Bram Moolenaar2012-04-306-8/+59
| | | | | | Problem: No completion for :history command. Solution: Add the completion and update the docs. Also fix ":behave" completion. (Dominique Pelle)
* updated for version 7.3.513v7.3.513Bram Moolenaar2012-04-304-4/+25
| | | | | | Problem: Cannot use CTRL-E and CTRL-Y with "r". Solution: Make CTRL-E and CTRL-Y work like in Insert mode. (Christian Brabandt)
* updated for version 7.3.512v7.3.512Bram Moolenaar2012-04-302-4/+16
| | | | | Problem: undofile() returns a useless name when passed an empty string. Solution: Return an empty string. (Christian Brabandt)
* updated for version 7.3.511v7.3.511Bram Moolenaar2012-04-302-0/+6
| | | | | | Problem: Using a FileReadCmd autocommand that does ":e! {file}" may cause a crash. (Christian Brabandt) Solution: Properly restore curwin->w_s.
* Fixed compatible mode in most runtime files.Bram Moolenaar2012-04-3037-46/+226
|
* updated for version 7.3.510v7.3.510Bram Moolenaar2012-04-302-1/+5
| | | | | Problem: Test 77 fails on Solaris 7. (Michael Soyka) Solution: Replace any tabs with spaces.