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

Skip to content

Tags: ihuanglei/vim

Tags

v7.4.2239

Toggle v7.4.2239's commit message
patch 7.4.2239

Problem:    Warning for missing declaration of skip_vimgrep_pat(). (John
            Marriott)
Solution:   Move it to another file.

v7.4.2238

Toggle v7.4.2238's commit message
patch 7.4.2238

Problem:    With SGR mouse reporting (suckless terminal) the mouse release and
            scroll up/down is confused.
Solution:   Don't see a release as a scroll up/down. (Ralph Eastwood)

v7.4.2237

Toggle v7.4.2237's commit message
patch 7.4.2237

Problem:    Can't use "." and "$" with ":tab".
Solution:   Support a range for ":tab". (Hirohito Higashi)

v7.4.2236

Toggle v7.4.2236's commit message
patch 7.4.2236

Problem:    The 'langnoremap' option leads to double negatives.  And it does
            not work for the last character of a mapping.
Solution:   Add 'langremap' with the opposite value.  Keep 'langnoremap' for
            backwards compatibility.  Make it work for the last character of a
            mapping.  Make the test work.

v7.4.2235

Toggle v7.4.2235's commit message
patch 7.4.2235

Problem:    submatch() does not check for a valid argument.
Solution:   Give an error if the argument is out of range. (Dominique Pelle)

v7.4.2234

Toggle v7.4.2234's commit message
patch 7.4.2234

Problem:    Can't build with +eval but without +quickfix. (John Marriott)
Solution:   Move skip_vimgrep_pat() to separate #ifdef block.

v7.4.2233

Toggle v7.4.2233's commit message
patch 7.4.2233

Problem:    Crash when using funcref() with invalid name. (Dominique Pelle)
Solution:   Check for NULL translated name.

v7.4.2232

Toggle v7.4.2232's commit message
patch 7.4.2232

Problem:    The default ttimeoutlen is very long.
Solution:   Use "100". (Hirohito Higashi)

v7.4.2231

Toggle v7.4.2231's commit message
patch 7.4.2231

Problem:    ":oldfiles" output is a very long list.
Solution:   Add a pattern argument. (Coot, closes vim#575)

v7.4.2230

Toggle v7.4.2230's commit message
patch 7.4.2230

Problem:    There is no equivalent of 'smartcase' for a tag search.
Solution:   Add value "followscs" and "smart" to 'tagcase'. (Christian
            Brabandt, closes vim#712) Turn tagcase test into new style.