summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* Updated runtime files, include fixes for line continuation.Bram Moolenaar2012-04-266-10/+14
|
* Updated runtime files.Bram Moolenaar2012-04-2518-122/+180
|
* updated for version 7.3.509v7.3.509Bram Moolenaar2012-04-252-27/+74
| | | | | Problem: ":vimgrep" fails when 'autochdir' is set. Solution: A more generic solution for changing directory. (Ben Fritz)
* updated for version 7.3.508v7.3.508Bram Moolenaar2012-04-253-1/+16
| | | | | | Problem: Default for v:register is not set. Solution: Init v:register in eval_init(). Correct for 'clipboard' before the main loop. (Ingo Karkat)
* updated for version 7.3.507v7.3.507Bram Moolenaar2012-04-254-4/+15
| | | | | | | 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)
* updated for version 7.3.506v7.3.506Bram Moolenaar2012-04-252-0/+26
| | | | | Problem: GTK gives an error when selecting a non-existent file. Solution: Add a handler to avoid the error. (Christian Brabandt)
* updated for version 7.3.505v7.3.505Bram Moolenaar2012-04-255-6/+14
| | | | | | | 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)
* updated for version 7.3.504v7.3.504Bram Moolenaar2012-04-252-1/+26
| | | | | | Problem: Commands in help files are not highlighted. Solution: Allow for commands in backticks. Adjust CTRL-] to remove the backticks.
* updated for version 7.3.503v7.3.503Bram Moolenaar2012-04-252-1/+3
| | | | | Problem: Warning for unused argument. Solution: Add UNUSED.
* updated for version 7.3.502v7.3.502Bram Moolenaar2012-04-202-3/+6
| | | | | Problem: Netbeans insert halfway a line actually appends to the line. Solution: Insert halfway the line. (Brian Victor)
* updated for version 7.3.501v7.3.501Bram Moolenaar2012-04-202-0/+8
| | | | | Problem: Error for "flush" not being defined when using Ruby command. Solution: Defined "flush" as a no-op method. (Kent Sibilev)
* updated for version 7.3.500v7.3.500Bram Moolenaar2012-04-202-0/+4
| | | | | Problem: Ming makefile unconditionally sets WINVER. Solution: Only defined when not already defined. (Yasuhiro Matsumoto)
* updated for version 7.3.499v7.3.499Bram Moolenaar2012-04-202-10/+9
| | | | | | | 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)
* updated for version 7.3.498v7.3.498Bram Moolenaar2012-04-202-3/+10
| | | | | | | 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)
* updated for version 7.3.497v7.3.497Bram Moolenaar2012-04-202-0/+7
| | | | | | | 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)
* Updated runtime files.Bram Moolenaar2012-04-1316-50/+74
|
* updated for version 7.3.496v7.3.496Bram Moolenaar2012-04-133-1/+6
| | | | | | 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)
* updated for version 7.3.495v7.3.495Bram Moolenaar2012-04-092-6/+8
| | | | | Problem: Compiler warnings. Solution: Add function declaration. Remove "offset" argument.
* updated for version 7.3.494v7.3.494Bram Moolenaar2012-04-062-5/+14
| | | | | Problem: Can't compile with Lua 9.1 or dynamic Lua. Solution: Fix dll_ methods. Fix luado(). (Muraoka Taro, Luis Carvalho)
* updated for version 7.3.493v7.3.493Bram Moolenaar2012-04-062-2/+2
| | | | | Problem: Two unused variables. Solution: Remove them. (Hong Xu)
* Updated runtime files.Bram Moolenaar2012-04-0510-1234/+699
|
* updated for version 7.3.492v7.3.492Bram Moolenaar2012-04-055-6/+513
| | | | | Problem: Can't indent conditions separately from function arguments. Solution: Add the 'k' flag in 'cino. (Lech Lorens)
* updated for version 7.3.491v7.3.491Bram Moolenaar2012-04-0510-4/+64
| | | | | Problem: No tests for Lua. Solution: Add some simple tests for Lua. (Luis Carvalho)