Bram Moolenaar [Thu, 23 Feb 2017 13:55:59 +0000 (14:55 +0100)]
patch 8.0.0353: if [RO] is translated it may be truncated
Problem: If [RO] in the status line is translated to a longer string, it is
trunctted to 4 bytes.
Solution: Skip over the resulting string. (Jente Hidskes, closes #1499)
Bram Moolenaar [Thu, 23 Feb 2017 11:20:35 +0000 (12:20 +0100)]
patch 8.0.0349: redrawing errors with GTK 3
Problem: Redrawing errors with GTK 3.
Solution: When updating, first clear all rectangles and then draw them.
(Kazunobu Kuriyama, Christian Ludwig, closes #848)
Bram Moolenaar [Wed, 22 Feb 2017 21:04:04 +0000 (22:04 +0100)]
patch 8.0.0348: using shadow dir on Mac lack +clipboard
Problem: When building with a shadow directory on macOS lacks the
+clipboard feature.
Solution: Link *.m files, specifically os_macosx.m. (Kazunobu Kuriyama)
Bram Moolenaar [Tue, 21 Feb 2017 22:00:36 +0000 (23:00 +0100)]
patch 8.0.0347: when using completion comment leader wont work
Problem: When using CTRL-X CTRL-U inside a comment, the use of the comment
leader may not work. (Klement)
Solution: Save and restore did_ai. (Christian Brabandt, closes #1494)
Bram Moolenaar [Sun, 19 Feb 2017 20:07:04 +0000 (21:07 +0100)]
patch 8.0.0342: double free with EXITFREE and setting 'ttytype'
Problem: Double free when compiled with EXITFREE and setting 'ttytype'.
Solution: Avoid setting P_ALLOCED on 'ttytype'. (Dominique Pelle,
closes #1461)
Bram Moolenaar [Sun, 19 Feb 2017 14:26:18 +0000 (15:26 +0100)]
patch 8.0.0341: undo does not work properly when using completion
Problem: When using complete() and typing a character undo is saved after
the character was inserted. (Shougo)
Solution: Save for undo before inserting the character.
Bram Moolenaar [Thu, 9 Feb 2017 19:22:30 +0000 (20:22 +0100)]
patch 8.0.0321: errors when trying to use scripts in tiny version
Problem: When using the tiny version trying to load the matchit plugin
gives an error. On MS-Windows some default mappings fail.
Solution: Add a check if the command used is available. (Christian Brabandt)
Bram Moolenaar [Thu, 9 Feb 2017 16:37:03 +0000 (17:37 +0100)]
patch 8.0.0319: insert mode completion does not respect 'backspace'
Problem: Insert mode completion does not respect "start" in 'backspace'.
Solution: Check whether backspace can go before where insert started.
(Hirohito Higashi)
Bram Moolenaar [Mon, 6 Feb 2017 20:56:09 +0000 (21:56 +0100)]
patch 8.0.0312: failure when a channel receives a split json message
Problem: When a json message arrives in pieces, the start is dropped and
the decoding fails.
Solution: Do not drop the start when it is still needed. (Kay Zheng) Add a
test. Reset the timeout when something is received.
Bram Moolenaar [Sun, 5 Feb 2017 15:07:54 +0000 (16:07 +0100)]
patch 8.0.0308: 'runtimepath' not update correctly when using symbolic link
Problem: When using a symbolic link, the package path will not be inserted
at the right position in 'runtimepath'. (Dugan Chen, Norio Takagi)
Solution: Resolve symbolic links when finding the right position in
'runtimepath'. (Hirohito Higashi)
Bram Moolenaar [Sun, 5 Feb 2017 14:10:51 +0000 (15:10 +0100)]
patch 8.0.0307: asan detects a memory error when EXITFREE is defined
Problem: Asan detects a memory error when EXITFREE is defined. (Dominique
Pelle)
Solution: In getvcol() check for ml_get_buf() returning an empty string.
Also skip adjusting the scroll position. Set "exiting" in
mch_exit() for all systems.
Bram Moolenaar [Fri, 3 Feb 2017 21:01:47 +0000 (22:01 +0100)]
patch 8.0.0299: a window resize is sometimes not taking effect
Problem: When the GUI window is resized Vim does not always take over the
new size. (Luchr)
Solution: Reset new_p_guifont in gui_resize_shell(). Call
gui_may_resize_shell() in the main loop.
Bram Moolenaar [Wed, 1 Feb 2017 21:31:49 +0000 (22:31 +0100)]
patch 8.0.0293: some tests have a one or three second wait
Problem: Some tests have a one or three second wait.
Solution: Reset the 'showmode' option. Use a test time of one to disable
sleep after an error or warning message.
Bram Moolenaar [Wed, 1 Feb 2017 20:50:21 +0000 (21:50 +0100)]
patch 8.0.0291: Visual block insertion does not insert in all lines
Problem: Visual block insertion does not insert in all lines.
Solution: Don't bail out of insert too early. Add a test. (Christian
Brabandt, closes #1290)
Bram Moolenaar [Wed, 1 Feb 2017 20:23:10 +0000 (21:23 +0100)]
patch 8.0.0290: cursor positioning wrong if wide character wraps
Problem: If a wide character doesn't fit at the end of the screen line, and
the line doesn't fit on the screen, then the cursor position may
be wrong. (anliting)
Solution: Don't skip over wide character. (Christian Brabandt, closes #1408)
Bram Moolenaar [Wed, 1 Feb 2017 19:26:51 +0000 (20:26 +0100)]
patch 8.0.0287: debug mode: cannot access function arguments
Problem: Cannot access the arguments of the current function in debug mode.
(Luc Hermitte)
Solution: use get_funccal(). (Lemonboy, closes #1432, closes #1352)
Bram Moolenaar [Wed, 1 Feb 2017 17:37:14 +0000 (18:37 +0100)]
patch 8.0.0286: not always redrawing after screen resize
Problem: When concealing is active and the screen is resized in the GUI it
is not immediately redrawn.
Solution: Use update_prepare() and update_finish() from
update_single_line().
Bram Moolenaar [Wed, 1 Feb 2017 16:24:34 +0000 (17:24 +0100)]
patch 8.0.0283: mode() does not indicate Insert mode completion
Problem: The return value of mode() does not indicate that completion is
active in Replace and Insert mode. (Zhen-Huan (Kenny) Hu)
Solution: Add "c" or "x" for two kinds of completion. (Yegappan Lakshmanan,
closes #1397) Test some more modes.
Bram Moolenaar [Wed, 1 Feb 2017 14:03:30 +0000 (15:03 +0100)]
patch 8.0.0282: need to use CTRL-O twice when in Visual-Insert mode
Problem: When doing a Visual selection and using "I" to go to insert mode,
CTRL-O needs to be used twice to go to Normal mode. (Coacher)
Solution: Check for the return value of edit(). (Christian Brabandt,
closes #1290)
Bram Moolenaar [Wed, 1 Feb 2017 12:14:16 +0000 (13:14 +0100)]
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Problem: On MS-Windows setting an environment variable with multi-byte
strings does not work well.
Solution: Use wputenv when possible. (Taro Muraoka, Ken Takata)
Bram Moolenaar [Tue, 31 Jan 2017 21:07:42 +0000 (22:07 +0100)]
patch 8.0.0275: the screen may be updated at the wrong time
Problem: When checking for CTRL-C typed the GUI may detect a screen resize
and redraw the screen, causing trouble.
Solution: Set updating_screen in ui_breakcheck().
Bram Moolenaar [Tue, 31 Jan 2017 20:53:39 +0000 (21:53 +0100)]
patch 8.0.0274: possible recursive screen updating causes trouble
Problem: When update_single_line() is called recursively, or another screen
update happens while it is busy, errors may occur.
Solution: Check and update updating_screen. (Christian Brabandt)
Bram Moolenaar [Sun, 29 Jan 2017 22:26:37 +0000 (23:26 +0100)]
patch 8.0.0271: may get ml_get error when :tcldo deletes lines
Problem: May get ml_get error when :tcldo deletes lines or switches to
another buffer. (Nikolai Pavlov, closes #1421)
Solution: Check the buffer and line every time.
Bram Moolenaar [Sun, 29 Jan 2017 22:11:25 +0000 (23:11 +0100)]
patch 8.0.0270: may get ml_get error when :rubydo deletes lines
Problem: May get ml_get error when :rubydo deletes lines or switches to
another buffer. (Nikolai Pavlov, issue #1421)
Solution: Check the buffer and line every time.
Bram Moolenaar [Sun, 29 Jan 2017 21:59:12 +0000 (22:59 +0100)]
patch 8.0.0269: may get ml_get error when :perldo deletes lines
Problem: May get ml_get error when :perldo deletes lines or switches to
another buffer. (Nikolai Pavlov, issue #1421)
Solution: Check the buffer and line every time.
Bram Moolenaar [Sun, 29 Jan 2017 21:48:45 +0000 (22:48 +0100)]
patch 8.0.0268: may get ml_get error when :luado deletes lines
Problem: May get ml_get error when :luado deletes lines or switches to
another buffer. (Nikolai Pavlov, issue #1421)
Solution: Check the buffer and line every time.
Bram Moolenaar [Sun, 29 Jan 2017 20:31:09 +0000 (21:31 +0100)]
patch 8.0.0265: may get ml_get error when :pydo deletes lines
Problem: May get ml_get error when :pydo deletes lines or switches to
another buffer. (Nikolai Pavlov, issue #1421)
Solution: Check the buffer and line every time.