Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: pjha1994/vim

Tags

v8.0.0027

Toggle v8.0.0027's commit message
patch 8.0.0027

Problem:    A channel is closed when reading on stderr or stdout fails, but
            there may still be something to read on another part.
Solution:   Turn ch_to_be_closed into a bitfield. (Ozaki Kiichi)

v8.0.0026

Toggle v8.0.0026's commit message
patch 8.0.0026

Problem:    Error format with %W, %C and %Z does not work. (Gerd Wachsmuth)
Solution:   Skip code when qf_multiignore is set. (Lcd)

v8.0.0025

Toggle v8.0.0025's commit message
patch 8.0.0025

Problem:    Inconsistent use of spaces vs tabs in gd test.
Solution:   Use tabs. (Anton Lindqvist)

v8.0.0024

Toggle v8.0.0024's commit message
patch 8.0.0024

Problem:    When the netbeans channel closes, "DETACH" is put in the output
            part. (Ozaki Kiichi)
Solution:   Write "DETACH" in the socket part.

v8.0.0023

Toggle v8.0.0023's commit message
patch 8.0.0023

Problem:    "gd" and "gD" may find a match in a comment or string.
Solution:   Ignore matches in comments and strings. (Anton Lindqvist)

v8.0.0022

Toggle v8.0.0022's commit message
patch 8.0.0022

Problem:    If a channel in NL mode is missing the NL at the end the remaining
            characters are dropped.
Solution:   When the channel is closed use the remaining text. (Ozaki Kiichi)

v8.0.0021

Toggle v8.0.0021's commit message
patch 8.0.0021

Problem:    In the GUI when redrawing the cursor it may be on the second half
            of a double byte character.
Solution:   Correct the cursor column. (Yasuhiro Matsumoto)

v8.0.0020

Toggle v8.0.0020's commit message
patch 8.0.0020

Problem:    The regexp engines are not reentrant.
Solution:   Add regexec_T and save/restore the state when needed.

v8.0.0019

Toggle v8.0.0019's commit message
patch 8.0.0019

Problem:    Test_command_count is old style.
Solution:   Turn it into a new style test. (Naruhiko Nishino)
            Use more assert functions.

v8.0.0018

Toggle v8.0.0018's commit message
patch 8.0.0018

Problem:    When using ":sleep" channel input is not handled.
Solution:   When there is a channel check for input also when not in raw mode.
            Check every 100 msec.