Skip to content

Tags: pythz/vim

Tags

v8.0.1077

Toggle v8.0.1077's commit message
patch 8.0.1077: no debugger making use of the terminal window

Problem:    No debugger making use of the terminal window.
Solution:   Add the term debugger plugin.  So far only displays the current
            line when stopped.

v8.0.1076

Toggle v8.0.1076's commit message
patch 8.0.1076: term_start() does not take callbacks

Problem:    term_start() does not take callbacks. When using two terminals
            without a job only one is read from.  A terminal without a window
            returns the wrong pty.
Solution:   Support "callback", "out_cb" and "err_cb".  Fix terminal without a
            window. Fix reading from multiple channels.

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)