Bram Moolenaar [Tue, 19 Mar 2013 15:49:16 +0000 (16:49 +0100)]
updated for version 7.3.872
Problem: On some systems case of file names is always ignored, on others
never.
Solution: Add the 'fileignorecase' option to control this at runtime.
Implies 'wildignorecase'.
Bram Moolenaar [Tue, 19 Mar 2013 14:27:48 +0000 (15:27 +0100)]
updated for version 7.3.871
Problem: search('^$', 'c') does not use the empty match under the cursor.
Solution: Special handling of the 'c' flag. (Christian Brabandt)
Add tests.
Bram Moolenaar [Tue, 19 Mar 2013 13:25:54 +0000 (14:25 +0100)]
updated for version 7.3.869
Problem: bufwinnr() matches buffers in other tabs.
Solution: For bufwinnr() and ? only match buffers in the current tab.
(Alexey Radkov)
Bram Moolenaar [Tue, 19 Mar 2013 12:56:08 +0000 (13:56 +0100)]
updated for version 7.3.868
Problem: When at the hit-return prompt and using "k" while no text has
scrolled off screen, then using "j", an empty line is displayed.
Solution: Only act on "k" when text scrolled off screen. Also accept
page-up and page-down. (cptstubing)
Bram Moolenaar [Tue, 19 Mar 2013 12:33:23 +0000 (13:33 +0100)]
updated for version 7.3.867
Problem: Matchparen does not update match when using auto-indenting.
(Marc Aldorasi)
Solution: Add the TextChanged and TextChangedI autocommand events.
Bram Moolenaar [Tue, 19 Mar 2013 11:35:42 +0000 (12:35 +0100)]
updated for version 7.3.866
Problem: Not serving the X selection during system() isn't nice.
Solution: When using fork() do not loose the selection, keep serving it.
Add a loop similar to handling I/O. (Yukihiro Nakadaira)
Bram Moolenaar [Sat, 16 Mar 2013 13:33:36 +0000 (14:33 +0100)]
updated for version 7.3.863
Problem: Problem with 'ambiwidth' detection for ANSI terminal.
Solution: Work around not recognizing a term response. (Hayaki Saito)
Bram Moolenaar [Wed, 13 Mar 2013 18:29:28 +0000 (19:29 +0100)]
updated for version 7.3.859
Problem: 'ambiwidth' must be set by the user.
Solution: Detects East Asian ambiguous width (UAX #11) state of the terminal
at the start-up time and 'ambiwidth' accordingly. (Hayaki Saito)
Bram Moolenaar [Wed, 13 Mar 2013 18:02:41 +0000 (19:02 +0100)]
updated for version 7.3.858
Problem: "gv" selects the wrong area after some operators.
Solution: Save and restore the type of selection. (Christian Brabandt)
Bram Moolenaar [Wed, 13 Mar 2013 16:50:25 +0000 (17:50 +0100)]
updated for version 7.3.856
Problem: When calling system() multi-byte clipboard contents is garbled.
Solution: Save and restore the clipboard contents. (Yukihiro Nakadaira)
Bram Moolenaar [Thu, 7 Mar 2013 18:38:54 +0000 (19:38 +0100)]
updated for version 7.3.854
Problem: After using backspace in insert mode completion, CTRL-N and CTRL-P
do not highlight the right entry. (Olivier Teuliere)
Solution: Set the current item to the shown item after using backspace.
Bram Moolenaar [Thu, 7 Mar 2013 17:50:57 +0000 (18:50 +0100)]
updated for version 7.3.853
Problem: Using "ra" in multiple lines on multi-byte characters leaves a few
characters not replaced.
Solution: Adjust the end column only in the last line. (Yasuhiro Matsumoto)
Bram Moolenaar [Thu, 7 Mar 2013 17:02:30 +0000 (18:02 +0100)]
updated for version 7.3.852
Problem: system() breaks clipboard text. (Yukihiro Nakadaira)
Solution: Use Xutf8TextPropertyToTextList(). (Christian Brabandt)
Also do not put the text in the clip buffer if conversion fails.
Bram Moolenaar [Thu, 7 Mar 2013 15:41:30 +0000 (16:41 +0100)]
updated for version 7.3.851
Problem: Using an empty pattern with :sort silently continues when there is
no previous search pattern.
Solution: Give an error message.
Bram Moolenaar [Thu, 7 Mar 2013 15:08:35 +0000 (16:08 +0100)]
updated for version 7.3.849
Problem: ":g//" gives "Pattern not found error" with E486. Should not use
the error number, it's not a regular error message.
Solution: Use a normal message. (David Bürgin)
Bram Moolenaar [Thu, 7 Mar 2013 14:16:21 +0000 (15:16 +0100)]
updated for version 7.3.848
Problem: Can't build with Ruby 2.0 when using MinGW x64 or MSVC10.
Solution: Fix it. Also detect RUBY_PLATFORM and RUBY_INSTALL_NAME for x64.
(Ken Takata)
Bram Moolenaar [Tue, 26 Feb 2013 18:36:15 +0000 (19:36 +0100)]
updated for version 7.3.841
Problem: When a "cond ? one : two" expression has a subscript it is not
parsed correctly. (Andy Wokula)
Solution: Handle a subscript also when the type is unknown. (Christian
Brabandt)
Bram Moolenaar [Tue, 26 Feb 2013 17:46:01 +0000 (18:46 +0100)]
updated for version 7.3.840
Problem: "\@<!" in regexp does not work correctly with multi-byte
characters, especially cp932.
Solution: Move column to start of multi-byte character. (Yasuhiro Matsumoto)
Bram Moolenaar [Tue, 26 Feb 2013 14:27:23 +0000 (15:27 +0100)]
updated for version 7.3.837
Problem: Empty lines in :version output when 'columns' is 320.
Solution: Simplify the logic of making columns. (Nazri Ramliy, Roland
Eggner)
Bram Moolenaar [Tue, 26 Feb 2013 13:56:42 +0000 (14:56 +0100)]
updated for version 7.3.836
Problem: Clipboard does not work on Win32 when compiled with Cygwin.
Solution: Move the Win32 clipboard code to a separate file and use it when
building with os_unix.c. (Frodak Baksik, Ken Takata)
Bram Moolenaar [Tue, 26 Feb 2013 13:14:07 +0000 (14:14 +0100)]
updated for version 7.3.835
Problem: "xxd -i" fails on an empty file.
Solution: Do output the closing } for an empty file. (partly by Lawrence
Woodman)
Bram Moolenaar [Tue, 26 Feb 2013 12:30:32 +0000 (13:30 +0100)]
updated for version 7.3.833
Problem: In the terminal the scroll wheel always scrolls the active window.
Solution: Scroll the window under the mouse pointer, like in the GUI.
(Bradie Rao)
Bram Moolenaar [Wed, 20 Feb 2013 20:12:10 +0000 (21:12 +0100)]
updated for version 7.3.831
Problem: Clumsy to handle the situation that a variable does not exist.
Solution: Add default value to getbufvar() et al. (Shougo Matsushita,
Hirohito Higashi)
Bram Moolenaar [Wed, 20 Feb 2013 18:26:29 +0000 (19:26 +0100)]
updated for version 7.3.830
Problem: :mksession confuses bytes, columns and characters when positioning
the cursor.
Solution: Use w_virtcol with "|" instead of w_cursor.col with "l".
Bram Moolenaar [Wed, 20 Feb 2013 17:39:13 +0000 (18:39 +0100)]
updated for version 7.3.829
Problem: When compiled with the +rightleft feature 'showmatch' also shows a
match for the opening paren. When 'revins' is set the screen may
scroll.
Solution: Only check the opening paren when the +rightleft feature was
enabled. Do not show a match that is not visible. (partly by
Christian Brabandt)
Bram Moolenaar [Thu, 14 Feb 2013 21:19:51 +0000 (22:19 +0100)]
updated for version 7.3.820
Problem: Build errors and warnings when building with small features and
Lua, Perl or Ruby.
Solution: Add #ifdefs and UNUSED.
Bram Moolenaar [Thu, 14 Feb 2013 19:58:35 +0000 (20:58 +0100)]
updated for version 7.3.818
Problem: When test 40 fails because of a bad build it may leave files
behind that cause it to fail later.
Solution: Let the file names start with "X".
Bram Moolenaar [Wed, 13 Feb 2013 15:49:58 +0000 (16:49 +0100)]
updated for version 7.3.814
Problem: Can't input multibyte characters on Win32 console if 'encoding' is
different from current codepage.
Solution: Use convert_input_safe() instead of convert_input(). Make
string_convert_ext() return an error for incomplete input. (Ken
Takata)
Bram Moolenaar [Wed, 13 Feb 2013 15:30:21 +0000 (16:30 +0100)]
updated for version 7.3.813
Problem: The CompleteDone event is not triggered when there are no pattern
matches. (Jianjun Mao)
Solution: Trigger the event. (Christian Brabandt)
Bram Moolenaar [Wed, 13 Feb 2013 14:44:26 +0000 (15:44 +0100)]
updated for version 7.3.810
Problem: 'relativenumber is reset unexpectedly. (François Ingelrest)
Solution: After an option was reset also reset the global value. Add a test.
(Christian Brabandt)
Bram Moolenaar [Wed, 13 Feb 2013 11:16:05 +0000 (12:16 +0100)]
updated for version 7.3.807
Problem: Popup menu does not work properly with the preview window, folds
and 'cursorcolumn'.
Solution: Redraw the popup menu after redrawing windows. (Christian
Brabandt)
Bram Moolenaar [Wed, 6 Feb 2013 18:58:43 +0000 (19:58 +0100)]
updated for version 7.3.806
Problem: Compiler warnings in Perl code when building with Visual studio
2012. (skeept)
Solution: Add type casts. (Christian Brabandt, 2013 Jan 30)
Bram Moolenaar [Wed, 6 Feb 2013 17:24:02 +0000 (18:24 +0100)]
updated for version 7.3.803
Problem: Substitute with confirmation and then "q" does not replace
anything. (John McGowan)
Solution: Do not break the loop, skip to the end.
Bram Moolenaar [Wed, 6 Feb 2013 15:26:26 +0000 (16:26 +0100)]
updated for version 7.3.802
Problem: After setting 'isk' to a value ending in a comma appending to the
option fails.
Solution: Disallow a trailing comma for 'isk' and similar options.
Bram Moolenaar [Wed, 6 Feb 2013 12:38:02 +0000 (13:38 +0100)]
updated for version 7.3.801
Problem: ":window set nu?" displays the cursor line. (Nazri Ramliy)
Solution: Do not update the cursor line when conceallevel is zero or the
screen has scrolled. (partly by Christian Brabandt)
Bram Moolenaar [Wed, 6 Feb 2013 11:33:21 +0000 (12:33 +0100)]
updated for version 7.3.800
Problem: The " mark is not adjusted when inserting lines. (Roland Eggner)
Solution: Adjust the line number. (Christian Brabandt)
Bram Moolenaar [Wed, 6 Feb 2013 11:14:48 +0000 (12:14 +0100)]
updated for version 7.3.799
Problem: The color column is not correct when entering a buffer. (Ben
Fritz)
Solution: Call check_colorcolumn() if 'textwidth' changed. (Christian
Brabandt)
Bram Moolenaar [Thu, 31 Jan 2013 20:09:15 +0000 (21:09 +0100)]
updated for version 7.3.798
Problem: MzScheme: circular list does not work correctly.
Solution: Separate Mac-specific code from generic code. (Sergey Khorev)
Bram Moolenaar [Wed, 30 Jan 2013 16:41:50 +0000 (17:41 +0100)]
updated for version 7.3.795
Problem: MzScheme does not build with tiny features.
Solution: Add #ifdefs. Also add UNUSED to avoid warnings. And change
library ordering.
Bram Moolenaar [Wed, 30 Jan 2013 15:30:26 +0000 (16:30 +0100)]
updated for version 7.3.792
Problem: ":substitute" works differently without confirmation.
Solution: Do not change the text when asking for confirmation, only display
it.
Bram Moolenaar [Wed, 30 Jan 2013 11:31:36 +0000 (12:31 +0100)]
updated for version 7.3.787
Problem: With 'relativenumber' set it is not possible to see the absolute
line number.
Solution: For the cursor line show the absolute line number instead of a
zero. (Nazri Ramliy)