neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 59355653f625373453238d615fd0f5924ccb60ff
parent 8f36e538cc6178b66f27d9096e4f4da7fadafa7a
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Sun, 10 Jul 2022 16:11:29 +0800

vim-patch:7.4.1724

Problem:    Tabline test fails in GUI.
Solution:   Remove 'e' from 'guioptions'.
https://github.com/vim/vim/commit/73cd8fb3e87e4b29dfc489f58e56dee1839c18e5

Add missing file header.

Diffstat:
Msrc/nvim/testdir/test_tabline.vim | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/src/nvim/testdir/test_tabline.vim b/src/nvim/testdir/test_tabline.vim @@ -1,3 +1,4 @@ +" Test for tabline source shared.vim @@ -17,6 +18,9 @@ func TablineWithError() endfunc func Test_caught_error_in_tabline() + if has('gui') + set guioptions-=e + endif let showtabline_save = &showtabline set showtabline=2 let s:func_in_tabline_called = 0 @@ -30,6 +34,9 @@ func Test_caught_error_in_tabline() endfunc func Test_tabline_will_be_disabled_with_error() + if has('gui') + set guioptions-=e + endif let showtabline_save = &showtabline set showtabline=2 let s:func_in_tabline_called = 0