Skip to content

Tags: pengxu-github/vim-src-code

Tags

v8.0.0106

Toggle v8.0.0106's commit message
patch 8.0.0106

Problem:    Cannot use a semicolon in 'backupext'. (Jeff)
Solution:   Allow for a few more characters when "secure" isn't set.

v8.0.0105

Toggle v8.0.0105's commit message
patch 8.0.0105

Problem:    When using ch_read() with zero timeout, can't tell the difference
            between reading an empty line and nothing available.
Solution:   Add ch_canread().

v8.0.0104

Toggle v8.0.0104's commit message
patch 8.0.0104

Problem:    Value of 'thesaurus' option not checked properly.
Solution:   Add P_NDNAME flag. (Daisuke Suzuki)

v8.0.0103

Toggle v8.0.0103's commit message
patch 8.0.0103

Problem:    May not process channel readahead. (skywind)
Solution:   If there is readahead don't block on input.

v8.0.0102

Toggle v8.0.0102's commit message
patch 8.0.0102

Problem:    Cannot set 'dictionary' to a path.
Solution:   Allow for slash and backslash.  Add a test (partly by Daisuke
            Suzuki, closes vim#1279, closes vim#1284)

v8.0.0101

Toggle v8.0.0101's commit message
patch 8.0.0101

Problem:    Some options are not strictly checked.
Solution:   Add flags for strickter checks.

v8.0.0100

Toggle v8.0.0100's commit message
patch 8.0.0100

Problem:    Options that are a file name may contain non-filename characters.
Solution:   Check for more invalid characters.

v8.0.0099

Toggle v8.0.0099's commit message
patch 8.0.0099

Problem:    Popup menu always appears above the cursor when it is in the lower
            half of the screen. (Matt Gardner)
Solution:   Compute the available space better. (Hirohito Higashi,
            closes vim#1241)

v8.0.0098

Toggle v8.0.0098's commit message
patch 8.0.0098

Problem:    Can't build on MS-Windows.
Solution:   Add missing parenthesis.

v8.0.0097

Toggle v8.0.0097's commit message
patch 8.0.0097

Problem:    When a channel callback consumes a lot of time Vim becomes
            unresponsive. (skywind)
Solution:   Bail out of checking channel readahead after 100 msec.