Skip to content

Tags: kohnish/vim

Tags

v8.2.4537

Toggle v8.2.4537's commit message
patch 8.2.4537: output from linter and language server shows up in git

Problem:    Output from linter and language server shows up in git.
Solution:   Add patterns to .gitignore. (Goc Dundar, closes vim#9925)

v8.2.4536

Toggle v8.2.4536's commit message
patch 8.2.4536: debugger test fails when breaking on expression

Problem:    Debugger test fails when breaking on expression.
Solution:   Compare strings with "==" instead of "is".

v8.2.4535

Toggle v8.2.4535's commit message
patch 8.2.4535: filename modifer ":8" removes the filename

Problem:    Filename modifer ":8" removes the filename.
Solution:   Use strncpy() instead of vim_strncpy(). (Christian Brabandt,
            closes vim#9918, closes vim#8600)

v8.2.4534

Toggle v8.2.4534's commit message
patch 8.2.4534: Vim9: "is" operator with empty string and null return…

…s true

Problem:    Vim9: "is" operator with empty string and null returns true.
Solution:   Consider empty string and null to be different for "is".

v8.2.4533

Toggle v8.2.4533's commit message
patch 8.2.4533: Vim9: no test that after assigning null type is still…

… checked

Problem:    Vim9: no test that after assigning null the type is still checked.
Solution:   Add a test.

v8.2.4532

Toggle v8.2.4532's commit message
patch 8.2.4532: suspending with CTRL-Z does not work on OpenBSD

Problem:    Suspending with CTRL-Z does not work on OpenBSD.
Solution:   Adjust #ifdef for SIGTSTP. (Stuart Henderson, closes vim#9912)

v8.2.4531

Toggle v8.2.4531's commit message
patch 8.2.4531: LGTM warnings for condition and buffer size

Problem:    LGTM warnings for condition always true and buffer size too small.
Solution:   Remove the useless condition.  Make the buffer larger. (Goc
            Dundar, closes vim#9914)

v8.2.4530

Toggle v8.2.4530's commit message
patch 8.2.4530: making comparison with null work changes legacy behavior

Problem:    Making comparison with null work changes legacy behavior.
Solution:   Only use the better comparison in Vim9 script. (closes vim#9910)

v8.2.4529

Toggle v8.2.4529's commit message
patch 8.2.4529: Vim9: comparing partial with function fails

Problem:    Vim9: comparing partial with function fails.
Solution:   Support this comparison.  Avoid a crash. (closes vim#9909)
            Add more test cases.

v8.2.4528

Toggle v8.2.4528's commit message
patch 8.2.4528: crash when using null_function for a partial

Problem:    Crash when using null_function for a partial.
Solution:   Don't call fname_trans_sid() with NULL. (closes vim#9908)