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

Skip to content

Tags: visee/vim

Tags

v8.0.0077

Toggle v8.0.0077's commit message
patch 8.0.0077

Problem:    The GUI code is not tested by Travis.
Solution:   Install the virtual framebuffer.

v8.0.0076

Toggle v8.0.0076's commit message
patch 8.0.0076

Problem:    Channel log has double parens ()().
Solution:   Remove () for write_buf_line. (Yasuhiro Matsumoto)

v8.0.0075

Toggle v8.0.0075's commit message
patch 8.0.0075

Problem:    Using number for exception type lacks type checking.
Solution:   Use an enum.

v8.0.0074

Toggle v8.0.0074's commit message
patch 8.0.0074

Problem:    Cannot make Vim fail on an internal error.
Solution:   Add IEMSG() and IEMSG2(). (Domenique Pelle)  Avoid reporting an
            internal error without mentioning where.

v8.0.0073

Toggle v8.0.0073's commit message
patch 8.0.0073

Problem:    More comparisons between firstwin and lastwin.
Solution:   Use ONE_WINDOW for consistency. (Hirohito Higashi)

v8.0.0072

Toggle v8.0.0072's commit message
patch 8.0.0072

Problem:    MS-Windows: Crash with long font name. (Henry Hu)
Solution:   Fix comparing with LF_FACESIZE. (Ken Takata, closes vim#1243)

v8.0.0071

Toggle v8.0.0071's commit message
patch 8.0.0071

Problem:    Exit value from a shell command is wrong. (Hexchain Tong)
Solution:   Do not check for ended jobs while waiting for a shell command.
            (ichizok, closes vim#1196)

v8.0.0070

Toggle v8.0.0070's commit message
patch 8.0.0070

Problem:    Tests referred in Makefile that no longer exist.
Solution:   Remove test71 and test74 entries. (Michael Soyka)

v8.0.0069

Toggle v8.0.0069's commit message
patch 8.0.0069

Problem:    Compiler warning for self-comparison.
Solution:   Define ONE_WINDOW and add #ifdef.

v8.0.0068

Toggle v8.0.0068's commit message
patch 8.0.0068

Problem:    Checking did_throw after executing autocommands is wrong. (Daniel
            Hahler)
Solution:   Call aborting() instead, and only when autocommands were executed.