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

Skip to content

Tags: bbchung/vim

Tags

v7.4.2222

Toggle v7.4.2222's commit message
patch 7.4.2222

Problem:    Sourcing a script where a character has 0x80 as a second byte does
            not work. (Filipe L B Correia)
Solution:   Turn 0x80 into K_SPECIAL KS_SPECIAL KE_FILLER. (Christian
            Brabandt, closes vim#728)  Add a test case.

v7.4.2221

Toggle v7.4.2221's commit message
patch 7.4.2221

Problem:    printf() does not support binary format.
Solution:   Add %b and %B. (Ozaki Kiichi)

v7.4.2220

Toggle v7.4.2220's commit message
patch 7.4.2220

Problem:    printf() gives an error when the argument for %s is not a string.
            (Ozaki Kiichi)
Solution:   Behave like invoking string() on the argument. (Ken Takata)

v7.4.2219

Toggle v7.4.2219's commit message
patch 7.4.2219

Problem:    Recursive call to substitute gets stuck in sandbox. (Nikolai
            Pavlov)
Solution:   Handle the recursive call. (Christian Brabandt, closes vim#950)
            Add a test.

v7.4.2218

Toggle v7.4.2218's commit message
patch 7.4.2218

Problem:    Can't build with +timers when +digraph is not included.
Solution:   Change #ifdef for e_number_exp. (Damien)

v7.4.2217

Toggle v7.4.2217's commit message
patch 7.4.2217

Problem:    When using matchaddpos() a character after the end of the line can
            be highlighted.
Solution:   Only highlight existing characters. (Hirohito Higashi)

v7.4.2216

Toggle v7.4.2216's commit message
patch 7.4.2216

Problem:    Test fails without the +sign feature.
Solution:   Only check for signcolumn with the +sign feature.

v7.4.2215

Toggle v7.4.2215's commit message
patch 7.4.2215

Problem:    It's not easy to find out if a window is a quickfix or location
            list window.
Solution:   Add "loclist" and "quickfix" entries to the dict returnec by
            getwininfo(). (Yegappan Lakshmanan)

v7.4.2214

Toggle v7.4.2214's commit message
patch 7.4.2214

Problem:    A font that uses ligatures messes up the screen display.
Solution:   Put spaces between characters when building the glyph table.
            (based on a patch from Manuel Schiller)

v7.4.2213

Toggle v7.4.2213's commit message
patch 7.4.2213

Problem:    Cannot highlight the "~" lines at the end of a window differently.
Solution:   Add the EndOfBuffer highlighting. (Marco Hinz, James McCoy)