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

Skip to content

Tags: jpalawaga/vim

Tags

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.

v8.0.0067

Toggle v8.0.0067's commit message
patch 8.0.0067

Problem:    VMS has a problem with infinity.
Solution:   Avoid an overflow. (Zoltan Arpadffy)

v8.0.0066

Toggle v8.0.0066's commit message
patch 8.0.0066

Problem:    when calling an operator function when 'linebreak' is set, it is
            internally reset before calling the operator function.
Solution:   Restore 'linebreak' before calling op_function(). (Christian
            Brabandt)

v8.0.0065

Toggle v8.0.0065's commit message
patch 8.0.0065

Problem:    Compiler warning for unused function in tiny build. (Tony
            Mechelynck)
Solution:   Add #ifdef.

v8.0.0064

Toggle v8.0.0064's commit message
patch 8.0.0064

Problem:    Normal test fails on MS-Windows.
Solution:   Don't try using an illegal file name.

v8.0.0063

Toggle v8.0.0063's commit message
patch 8.0.0063

Problem:    Compiler warning for comparing with unsigned. (Zoltan Arpadffy)
Solution:   Change <= to ==.

v8.0.0062

Toggle v8.0.0062's commit message
patch 8.0.0062

Problem:    No digraph for HORIZONTAL ELLIPSIS.
Solution:   Use ",.". (Hans Ginzel, closes vim#1226)

v8.0.0061

Toggle v8.0.0061's commit message
patch 8.0.0061

Problem:    Compiler warning for unused variable.
Solution:   Add #ifdef. (John Marriott)

v8.0.0060

Toggle v8.0.0060's commit message
patch 8.0.0060

Problem:    When using an Ex command for 'keywordprg' it is escaped as with a
            shell command. (Romain Lafourcade)
Solution:   Escape for an Ex command. (closes vim#1175)