Skip to content

Tags: nepella/vim

Tags

v8.1.2236

Toggle v8.1.2236's commit message
patch 8.1.2236: ml_get error if pattern matches beyond last line

Problem:    Ml_get error if pattern matches beyond last line.
Solution:   Adjust position if needed. (Christian Brabandt, closes vim#5139)

v8.1.2235

Toggle v8.1.2235's commit message
patch 8.1.2235: "C" with 'virtualedit' set does not include multi-byt…

…e char

Problem:    "C" with 'virtualedit' set does not include multi-byte char.
Solution:   Include the whole multi-byte char. (Nobuhiro Takasaki,
            closes vim#5152)

v8.1.2234

Toggle v8.1.2234's commit message
patch 8.1.2234: get_short_pathname() fails depending on encoding

Problem:    get_short_pathname() fails depending on encoding.
Solution:   Use the wide version of the library function. (closes vim#5129)

v8.1.2233

Toggle v8.1.2233's commit message
patch 8.1.2233: cannot get the Vim command line arguments

Problem:    Cannot get the Vim command line arguments.
Solution:   Add v:argv. (Dmitri Vereshchagin, closes vim#1322)

v8.1.2231

Toggle v8.1.2231's commit message
patch 8.1.2231: not easy to move to the middle of a text line

Problem:    Not easy to move to the middle of a text line.
Solution:   Add the gM command. (Yasuhiro Matsumoto, closes vim#2070)

v8.1.2230

Toggle v8.1.2230's commit message
patch 8.1.2230: MS-Windows: testing external commands can be improved

Problem:    MS-Windows: testing external commands can be improved.
Solution:   Adjust tests, remove duplicate test. (closes vim#4928)

v8.1.2229

Toggle v8.1.2229's commit message
patch 8.1.2229: cannot color number column above/below cursor differe…

…ntly

Problem:    Cannot color number column above/below cursor differently.
Solution:   Add LineNrAbove and LineNrBelow. (Shaun Brady, closes vim#624)

v8.1.2228

Toggle v8.1.2228's commit message
patch 8.1.2228: screenpos() returns wrong values when 'number' is set

Problem:    screenpos() returns wrong values when 'number' is set. (Ben
            Jackson)
Solution:   Compare the column with the window width. (closes vim#5133)

v8.1.2227

Toggle v8.1.2227's commit message
patch 8.1.2227: layout wrong if 'lines' changes while cmdline window …

…is open

Problem:    Layout wrong if 'lines' changes while cmdline window is open.
Solution:   Do not restore the window layout if 'lines' changed.
            (closes vim#5130)

v8.1.2226

Toggle v8.1.2226's commit message
patch 8.1.2226: cannot use system copy/paste in non-xterm terminals

Problem:    Cannot use system copy/paste in non-xterm terminals.
Solution:   Instead of setting 'mouse' to "a" set it to "nvi" in defaults.vim.