Skip to content

Tags: d10n/vim

Tags

v8.0.0658

Toggle v8.0.0658's commit message
patch 8.0.0658: spell test is old style

Problem:    Spell test is old style.
Solution:   Turn the spell test into a new style test (pschuh, closes vim#1778)

v8.0.0657

Toggle v8.0.0657's commit message
patch 8.0.0657: cannot get and set quickfix list items

Problem:    Cannot get and set quickfix list items.
Solution:   Add the "items" argument to getqflist() and setqflist(). (Yegappan
            Lakshmanan)

v8.0.0656

Toggle v8.0.0656's commit message
patch 8.0.0656: cannot use ! after some user commands

Problem:    Cannot use ! after some user commands.
Solution:   Properly check for existing command. (Higashi Higashi)

v8.0.0655

Toggle v8.0.0655's commit message
patch 8.0.0655: not easy to make sure a function does not exist

Problem:    Not easy to make sure a function does not exist.
Solution:   Add ! as an optional argument to :delfunc.

v8.0.0654

Toggle v8.0.0654's commit message
patch 8.0.0654: no warning for text after :endfunction

Problem:    Text found after :endfunction is silently ignored.
Solution:   Give a warning if 'verbose' is set.  When | or \n are used,
            execute the text as a command.

v8.0.0653

Toggle v8.0.0653's commit message
patch 8.0.0653: the default highlight for QuickFixLine is not good

Problem:    The default highlight for QuickFixLine does not work for several
            color schemes. (Manas Thakur)
Solution:   Make the default use the old color. (closes vim#1780)

v8.0.0652

Toggle v8.0.0652's commit message
patch 8.0.0652: unicode information is outdated

Problem:    Unicode information is outdated.
Solution:   Update to Unicode 10. (Christian Brabandt)

v8.0.0651

Toggle v8.0.0651's commit message
patch 8.0.0651: build failure without the auto command feature

Problem:    Build failure without the auto command feature.
Solution:   Add #ifdef. (closes vim#1782)

v8.0.0650

Toggle v8.0.0650's commit message
patch 8.0.0650: for extra help files the filetype is set more than once

Problem:    For extra help files the filetype is set more than once.
Solution:   In *.txt files check that there is no help file modline.

v8.0.0649

Toggle v8.0.0649's commit message
patch 8.0.0649: when opening a help file the filetype is set several …

…times

Problem:    When opening a help file the filetype is set several times.
Solution:   When setting the filetype to the same value from a modeline, don't
            trigger FileType autocommands.  Don't set the filetype to "help"
            when it's already set correctly.