Bram Moolenaar [Wed, 13 Jun 2012 16:06:36 +0000 (18:06 +0200)]
updated for version 7.3.553
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)
Bram Moolenaar [Wed, 13 Jun 2012 15:28:55 +0000 (17:28 +0200)]
updated for version 7.3.552
Problem: Formatting inside comments does not use the "2" flag in
'formatoptions'.
Solution: Support the "2" flag. (Tor Perkins)
Bram Moolenaar [Wed, 13 Jun 2012 12:28:20 +0000 (14:28 +0200)]
updated for version 7.3.551
Problem: When using :tablose a TabEnter autocommand is triggered too early.
(Karthick)
Solution: Don't trigger *Enter autocommands before closing the tab.
(Christian Brabandt)
Bram Moolenaar [Wed, 13 Jun 2012 12:01:41 +0000 (14:01 +0200)]
updated for version 7.3.550
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)
Bram Moolenaar [Wed, 13 Jun 2012 11:40:48 +0000 (13:40 +0200)]
updated for version 7.3.549
Problem: In 'cinoptions' "0s" is interpreted as one shiftwidth. (David
Pineau)
Solution: Use the zero as zero. (Lech Lorens)
Bram Moolenaar [Wed, 6 Jun 2012 17:02:45 +0000 (19:02 +0200)]
updated for version 7.3.545
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.
Bram Moolenaar [Wed, 6 Jun 2012 16:03:07 +0000 (18:03 +0200)]
updated for version 7.3.544
Problem: There is no good way to close a quickfix window when closing the
last ordinary window.
Solution: Add the QuitPre autocommand.
Bram Moolenaar [Wed, 6 Jun 2012 14:12:59 +0000 (16:12 +0200)]
updated for version 7.3.541
Problem: When joining lines comment leaders need to be removed manually.
Solution: Add the 'j' flag to 'formatoptions'. (Lech Lorens)
Bram Moolenaar [Wed, 6 Jun 2012 10:03:06 +0000 (12:03 +0200)]
updated for version 7.3.539
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)
Bram Moolenaar [Fri, 1 Jun 2012 15:46:59 +0000 (17:46 +0200)]
updated for version 7.3.536
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 [Fri, 1 Jun 2012 13:21:02 +0000 (15:21 +0200)]
updated for version 7.3.535
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 [Fri, 25 May 2012 12:06:36 +0000 (14:06 +0200)]
updated for version 7.3.530
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 [Fri, 25 May 2012 11:12:36 +0000 (13:12 +0200)]
updated for version 7.3.529
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 [Fri, 25 May 2012 10:39:00 +0000 (12:39 +0200)]
updated for version 7.3.528
Problem: Crash when closing last window in a tab. (Alex Efros)
Solution: Use common code in close_last_window_tabpage(). (Christian
Brabandt)
Bram Moolenaar [Fri, 18 May 2012 15:03:18 +0000 (17:03 +0200)]
updated for version 7.3.520
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 [Fri, 18 May 2012 14:35:21 +0000 (16:35 +0200)]
updated for version 7.3.519
Problem: When completefunction returns it cannot indicate end of completion
mode.
Solution: Recognize completefunction returning -3. (Mtsushita Shougo)
Bram Moolenaar [Fri, 18 May 2012 14:24:11 +0000 (16:24 +0200)]
updated for version 7.3.518
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 for version 7.3.515
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.514
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.513
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.512
Problem: undofile() returns a useless name when passed an empty string.
Solution: Return an empty string. (Christian Brabandt)
updated for version 7.3.511
Problem: Using a FileReadCmd autocommand that does ":e! {file}" may cause a
crash. (Christian Brabandt)
Solution: Properly restore curwin->w_s.
updated for version 7.3.508
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.507
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.506
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.505
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.504
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.501
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.499
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.498
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.497
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 for version 7.3.496
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.489
Problem: CTRL-] in Insert mode does not expand abbreviation when used in a
mapping. (Yichao Zhou)
Solution: Special case using CTRL-]. (Christian Brabandt)
updated for version 7.3.488
Problem: ":help!" in a help file does not work as document.
Solution: When in a help file don't give an error message. (thinca)
Bram Moolenaar [Wed, 28 Mar 2012 17:59:04 +0000 (19:59 +0200)]
updated for version 7.3.487
Problem: When setting 'timeoutlen' or 'ttimeoutlen' the column for vertical
movement is reset unnecessarily.
Solution: Do not set w_set_curswant for every option. Add a test for this.
(Kana Natsuno) Add the P_CURSWANT flag for options.
Bram Moolenaar [Wed, 28 Mar 2012 15:10:31 +0000 (17:10 +0200)]
updated for version 7.3.484
Problem: The -E and --echo-wid command line arguments are not mentioned in
"vim --help".
Solution: Add the help lines. (Dominique Pelle)
Bram Moolenaar [Wed, 28 Mar 2012 14:49:29 +0000 (16:49 +0200)]
updated for version 7.3.483
Problem: More prompt shows up too often.
Solution: Instead of adding a line break, only start a new line in the
message history. (Christian Brabandt)
Bram Moolenaar [Wed, 28 Mar 2012 12:19:50 +0000 (14:19 +0200)]
updated for version 7.3.482
Problem: With 'cursorbind' set moving up/down does not always keep the same
column.
Solution: Set curswant appropriately. (Gary Johnson)
Bram Moolenaar [Wed, 28 Mar 2012 10:59:57 +0000 (12:59 +0200)]
updated for version 7.3.481
Problem: Changing 'virtualedit' in an operator function to "all" does not
have the desired effect. (Aaron Bohannon)
Solution: Save, reset and restore virtual_op when executing an operator
function.
Bram Moolenaar [Fri, 23 Mar 2012 17:39:18 +0000 (18:39 +0100)]
updated for version 7.3.480
Problem: When using ":qa" and there is a changed buffer picking the buffer
to jump to is not very good.
Solution: Consider current and other tab pages. (Hirohito Higashi)
Bram Moolenaar [Fri, 23 Mar 2012 15:25:17 +0000 (16:25 +0100)]
updated for version 7.3.479
Problem: When 'cursorline' is set the line number highlighting can't be set
separately.
Solution: Add "CursorLineNr". (Howard Buchholz)
Bram Moolenaar [Fri, 23 Mar 2012 14:37:02 +0000 (15:37 +0100)]
updated for version 7.3.478
Problem: Memory leak using the ':rv!' command when reading dictionary or
list global variables i.e. with 'viminfo' containing !.
Solution: Free the typeval. (Dominique Pelle)
Bram Moolenaar [Fri, 23 Mar 2012 14:18:24 +0000 (15:18 +0100)]
updated for version 7.3.477
Problem: Using ":echo" to output enough lines to scroll, then using "j" and
"k" at the more prompt, displays the command on top of the output.
(Marcin Szamotulski)
Solution: Put the output below the command. (Christian Brabandt)
Bram Moolenaar [Fri, 23 Mar 2012 13:16:23 +0000 (14:16 +0100)]
updated for version 7.3.476
Problem: When selecting a block, using "$" to include the end of each line
and using "A" and typing a backspace strange things happen.
(Yuangchen Xie)
Solution: Avoid using a negative length. (Christian Brabandt)
Bram Moolenaar [Fri, 16 Mar 2012 19:16:46 +0000 (20:16 +0100)]
updated for version 7.3.475
Problem: In a terminal with few colors the omnicomplete menu may be hard to
see when using the default colors.
Solution: Use more explicit colors. (suggested by Alex Henrie)
Bram Moolenaar [Fri, 16 Mar 2012 18:24:26 +0000 (19:24 +0100)]
updated for version 7.3.473
Problem: 'cursorbind' does not work correctly in combination with
'virtualedit' set to "all".
Solution: Copy coladd. (Gary Johnson)
Bram Moolenaar [Fri, 16 Mar 2012 18:07:58 +0000 (19:07 +0100)]
updated for version 7.3.472
Problem: Crash when using ":redraw" in a BufEnter autocommand and
switching to another tab. (驼峰)
Solution: Move triggering the the autocommands to after correcting the
option values. Also check the row value to be out of bounds.
(Christian Brabandt, Sergey Khorev)
Bram Moolenaar [Wed, 7 Mar 2012 19:13:49 +0000 (20:13 +0100)]
updated for version 7.3.468
Problem: For some compilers the error file is not easily readable.
Solution: Use QuickFixCmdPre for more commands. (Marcin Szamotulski)
Bram Moolenaar [Wed, 7 Mar 2012 18:38:55 +0000 (19:38 +0100)]
updated for version 7.3.467
Problem: Cursor positioned wrong at the command line when regaining focus
and using some input method.
Solution: Do not position the cursor in command line mode.
Bram Moolenaar [Wed, 7 Mar 2012 18:30:36 +0000 (19:30 +0100)]
updated for version 7.3.466
Problem: Get ml_get error hen ":behave mswin" was used and selecting
several lines. (A. Sinan Unur)
Solution: Adjust the end of the operation. (Christian Brabandt)