vim

~stub/vim:master

Last commit made on 2016-10-03
Get this branch:
git clone -b master https://git.launchpad.net/~stub/vim
Only Stuart Bishop can upload to this branch. If you are Stuart Bishop please log in for upload directions.

Branch merges

Branch information

Name:
master
Repository:
lp:~stub/vim

Recent commits

ec68a99... by Bram Moolenaar <email address hidden>

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)

84dbd49... by Bram Moolenaar <email address hidden>

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)

6100d02... by Bram Moolenaar <email address hidden>

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

2ec618c... by Bram Moolenaar <email address hidden>

Updated runtime files.

b3435b0... by Bram Moolenaar <email address hidden>

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.

b9c31e7... by Bram Moolenaar <email address hidden>

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.

1777785... by Bram Moolenaar <email address hidden>

Missing part of patch 8.0.0014

890680c... by Bram Moolenaar <email address hidden>

patch 8.0.0017
Problem: Cannot get the number of the current quickfix or location list.
Solution: Use the current list if "nr" in "what" is zero. (Yegappan
            Lakshmanan) Remove debug command from test.

0e77b76... by Bram Moolenaar <email address hidden>

patch 8.0.0016
Problem: Build fails.
Solution: Include missing change.

7ef3810... by Bram Moolenaar <email address hidden>

patch 8.0.0015
Problem: Can't tell which part of a channel has "buffered" status.
Solution: Add an optional argument to ch_status(). Let ch_info() also
            return "buffered" for out_status and err_status.