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

Skip to content

Tags: daisuzu/vim

Tags

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.

v8.0.0096

Toggle v8.0.0096's commit message
patch 8.0.0096

Problem:    When the input or output is not a tty Vim appears to hang.
Solution:   Add the --ttyfail argument.  Also add the "ttyin" and "ttyout"
            features to be able to check in Vim script.

v8.0.0095

Toggle v8.0.0095's commit message
patch 8.0.0095

Problem:    Problems with GTK 3.22.2 fixed in 3.22.4.
Solution:   Adjust the #ifdefs. (Kazunobu Kuriyama)

v8.0.0094

Toggle v8.0.0094's commit message
patch 8.0.0094

Problem:    When vimrun.exe is not found the error message is not properly
            encoded.
Solution:   Use utf-16 and MessageBoxW(). (Ken Takata)

v8.0.0093

Toggle v8.0.0093's commit message
patch 8.0.0093

Problem:    Not using multiprocess build feature.
Solution:   Enable multiprocess build with MSVC 10. (Ken Takata)

v8.0.0092

Toggle v8.0.0092's commit message
patch 8.0.0092

Problem:    C indenting does not support nested namespaces that C++ 17 has.
Solution:   Add check that passes double colon inside a name. (Pauli, closes
            vim#1214)