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

Skip to content

Tags: shahibu/vim

Tags

v8.0.0047

Toggle v8.0.0047's commit message
patch 8.0.0047

Problem:    Crash when using the preview window from an unnamed buffer.
            (lifepillar)
Solution:   Do not clear the wrong buffer. (closes vim#1200)

v8.0.0046

Toggle v8.0.0046's commit message
patch 8.0.0046

Problem:    Using NUL instead of NULL.
Solution:   Change to NULL. (Dominique Pelle)

v8.0.0045

Toggle v8.0.0045's commit message
patch 8.0.0045

Problem:    Calling job_stop() right after job_start() does not work.
Solution:   Block signals while fork is still busy. (Ozaki Kiichi, closes
            vim#1155)

v8.0.0044

Toggle v8.0.0044's commit message
patch 8.0.0044

Problem:    In diff mode the cursor may end up below the last line, resulting
            in an ml_get error.
Solution:   Check the line to be valid.

v8.0.0043

Toggle v8.0.0043's commit message
patch 8.0.0043

Problem:    When using Insert mode completion with 'completeopt' containing
            "noinsert" with CTRL-N the change is not saved for undo.  (Tommy
            Allen)
Solution:   Call stop_arrow() before inserting for any key.

v8.0.0042

Toggle v8.0.0042's commit message
patch 8.0.0042

Problem:    When using Insert mode completion with 'completeopt' containing
            "noinsert" change is not saved for undo.  (Tommy Allen)
Solution:   Call stop_arrow() before inserting for pressing Enter.

v8.0.0041

Toggle v8.0.0041's commit message
patch 8.0.0041

Problem:    When using Insert mode completion but not actually inserting
            anything an undo item is still created. (Tommy Allen)
Solution:   Do not call stop_arrow() when not inserting anything.

v8.0.0040

Toggle v8.0.0040's commit message
patch 8.0.0040

Problem:    Whole line highlighting with matchaddpos() does not work.
Solution:   Check for zero length. (Hirohito Higashi)

v8.0.0039

Toggle v8.0.0039's commit message
patch 8.0.0039

Problem:    When Vim 8 reads an old viminfo and exits, the next time marks are
            not read from viminfo. (Ned Batchelder)
Solution:   Set a mark when it wasn't set before, even when the timestamp is
            zero. (closes vim#1170)

v8.0.0038

Toggle v8.0.0038's commit message
patch 8.0.0038

Problem:    OPEN_CHR_FILES not defined for FreeBSD using Debian userland
            files.
Solution:   Check for __FreeBSD_kernel__. (James McCoy, closes vim#1166)