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

Skip to content

Tags: mhoye/vim

Tags

v8.0.1102

Toggle v8.0.1102's commit message
patch 8.0.1102: terminal window does not use Normal colors

Problem:    Terminal window does not use Normal colors.
Solution:   For the GUI and when 'termguicolors' is enabled, use the actual
            foreground and background colors for the terminal.  (Yasuhiro
            Matsumoto, closes vim#2067)
            Use the "Terminal" highlight group if defined.

v8.0.1101

Toggle v8.0.1101's commit message
patch 8.0.1101: channel write fails if writing to log fails

Problem:    Channel write fails if writing to log fails.
Solution:   Ignore return value of fwrite(). (Ozaki Kiichi, closes vim#2081)

v8.0.1100

Toggle v8.0.1100's commit message
patch 8.0.1100: stuck in redraw loop when 'lazyredraw' is set

Problem:    Stuck in redraw loop when 'lazyredraw' is set.
Solution:   Don't loop on update_screen() when not redrawing. (Yasuhiro
            Matsumoto, closes vim#2082)

v8.0.1099

Toggle v8.0.1099's commit message
patch 8.0.1099: warnings for GDK calls

Problem:    Warnings for GDK calls.
Solution:   Use other calls for GTK 3 and fix a few problems. (Kazunobu
            Kuriyama)

v8.0.1098

Toggle v8.0.1098's commit message
patch 8.0.1098: build failure if libvterm installed

Problem:    Build failure if libvterm installed on the system. (Oleh
            Hushchenkov)
Solution:   Change the CCCTERM argument order. (Ken Takata, closes vim#2080)

v8.0.1097

Toggle v8.0.1097's commit message
patch 8.0.1097: background color wrong if job changes background color

Problem:    Background color wrong if job changes background color.
Solution:   Get the background color from vterm.

v8.0.1096

Toggle v8.0.1096's commit message
patch 8.0.1096: terminal window in Normal mode has wrong background

Problem:    Terminal window in Normal mode has wrong background.
Solution:   Store the default background and use it for clearning until the
            end of the line.  Not for below the last line, since there is no
            text there.

v8.0.1095

Toggle v8.0.1095's commit message
patch 8.0.1095: terminal multibyte escrape test is flaky

Problem:    Terminal multibyte escrape test is flaky.
Solution:   Add another condition to wait for.

v8.0.1094

Toggle v8.0.1094's commit message
patch 8.0.1094: using ssh from Terminal.app runs into xterm incompati…

…bility

Problem:    Using ssh from Terminal.app runs into xterm incompatibility.
Solution:   Also detect Terminal.app on non-Mac systems.

v8.0.1093

Toggle v8.0.1093's commit message
patch 8.0.1093: various small quickfix issues

Problem:    Various small quickfix issues.
Solution:   Remove ":" prefix from title set by a user. Add the qf_id2nr().
            function. Add a couple more tests.  Update documentation.
            (Yegappan Lakshmanan)