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

Skip to content

Tags: weener/vim

Tags

v7.4.2228

Toggle v7.4.2228's commit message
patch 7.4.2228

Problem:    Test files have inconsistant modelines.
Solution:   Don't set 'tabstop' to 2, use 'sts' and 'sw'.

v7.4.2227

Toggle v7.4.2227's commit message
patch 7.4.2227

Problem:    Tab page tests are old style.
Solution:   Change into new style tests. (Hirohito Higashi)

v7.4.2226

Toggle v7.4.2226's commit message
patch 7.4.2226

Problem:    The field names used by getbufinfo(), gettabinfo() and
            getwininfo() are not consistent.
Solution:   Use bufnr, winnr and tabnr. (Yegappan Lakshmanan)

v7.4.2225

Toggle v7.4.2225's commit message
patch 7.4.2225

Problem:    Crash when placing a sign in a deleted buffer.
Solution:   Check for missing buffer name. (Dominique Pelle). Add a test.

v7.4.2224

Toggle v7.4.2224's commit message
patch 7.4.2224

Problem:    Compiler warnings with older compiler and 64 bit numbers.
Solution:   Add "LL" to large values. (Mike Williams)

v7.4.2223

Toggle v7.4.2223's commit message
patch 7.4.2223

Problem:    Buffer overflow when using latin1 character with feedkeys().
Solution:   Check for an illegal character.  Add a test.

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.