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

Skip to content

Tags: NUAAMETEOR/vim

Tags

v8.0.1075

Toggle v8.0.1075's commit message
patch 8.0.1075: MS-Windows: mouse does not work in terminal

Problem:    MS-Windows: mouse does not work in terminal.
Solution:   Force the winpty mouse on. (Yasuhiro Matsumoto, closes vim#2072)

v8.0.1074

Toggle v8.0.1074's commit message
patch 8.0.1074: ":term NONE" does not work on MS-Windows

Problem:    ":term NONE" does not work on MS-Windows.
Solution:   Make it work.  Split "pty" into "pty_in" and "pty_out". (Yasuhiro
            Matsumoto, closes vim#2058, closes vim#2045)

v8.0.1073

Toggle v8.0.1073's commit message
patch 8.0.1073: may get an endless loop if 'statusline' changes a hig…

…hlight

Problem:    May get an endless loop if 'statusline' changes a highlight.
Solution:   Do not let evaluating 'statusline' trigger a redraw.

v8.0.1072

Toggle v8.0.1072's commit message
patch 8.0.1072: :highlight command causes a redraw even when nothing …

…changed

Problem:    The :highlight command causes a redraw even when nothing changed.
Solution:   Only set "need_highlight_changed" when an attribute changed.

v8.0.1071

Toggle v8.0.1071's commit message
patch 8.0.1071: putty-color and cygwin-color are not recognized

Problem:    $TERM names starting with "putty" and "cygwin" are likely to have
            a dark background, but are not recognized.
Solution:   Only check the first few characters of $TERM to match "putty" or
            "cygwin". (Christian Brabandt)

v8.0.1070

Toggle v8.0.1070's commit message
patch 8.0.1070: terminal test is flaky on Mac

Problem:    Terminal test is flaky on Mac.
Solution:   Add Test_terminal_noblock() to list of flaky tests.

v8.0.1069

Toggle v8.0.1069's commit message
patch 8.0.1069: still get CTRL-X sometimes

Problem:    Still get CTRL-X sometimes for t_RS request.
Solution:   Also skip 0x18 after a key code response.

v8.0.1068

Toggle v8.0.1068's commit message
patch 8.0.1068: vandyke SecureCRT terminal can't handle cursor mode r…

…equest

Problem:    Vandyke SecureCRT terminal can't handle cursor mode request.
            (Steven Hartland)
Solution:   Fix pointer computation. (closes vim#2008)

v8.0.1067

Toggle v8.0.1067's commit message
patch 8.0.1067: try/catch in timer does not prevent it from being sto…

…pped

Problem:    Using try/catch in timer does not prevent it from being stopped.
Solution:   Reset the exception context and use did_emsg instead of
            called_emsg.

v8.0.1066

Toggle v8.0.1066's commit message
patch 8.0.1066: some terminals can't handle requesting cursor mode

Problem:    Some terminals can't handle requesting cursor mode. (Steven
            Hartland)
Solution:   Recognize vandyke SecureCRT. (closes vim#2008)