aboutsummaryrefslogtreecommitdiff
path: root/test/functional/viml/completion_spec.lua
diff options
context:
space:
mode:
authorMarco Hinz <mh.codebro+github@gmail.com>2019-04-03 10:48:47 +0200
committerGitHub <noreply@github.com>2019-04-03 10:48:47 +0200
commitd9de4c0efb142e140bbddd87ffcb0bf222bb6fbc (patch)
tree4a85652ffcd4fbfdf805b55a714abf36c065e79b /test/functional/viml/completion_spec.lua
parentc395cf018d48f919d0a6ad3c6747142f54f693b9 (diff)
downloadrneovim-d9de4c0efb142e140bbddd87ffcb0bf222bb6fbc.tar.gz
rneovim-d9de4c0efb142e140bbddd87ffcb0bf222bb6fbc.tar.bz2
rneovim-d9de4c0efb142e140bbddd87ffcb0bf222bb6fbc.zip
vim-patch:8.1.1072: extending sign and foldcolumn below the text is confusing (#9816)
Problem: Extending sign and foldcolumn below the text is confusing. Solution: Let the sign and foldcolumn stop at the last text line, just like the line number column. Also stop the command line window leader. (Christian Brabandt) https://github.com/vim/vim/commit/8ee4c01b8c79a29065c1af05e5d9c0721069765f Closes https://github.com/neovim/neovim/issues/9613
Diffstat (limited to 'test/functional/viml/completion_spec.lua')
-rw-r--r--test/functional/viml/completion_spec.lua18
1 files changed, 9 insertions, 9 deletions
diff --git a/test/functional/viml/completion_spec.lua b/test/functional/viml/completion_spec.lua
index a8d6135e3f..9d4cb325d9 100644
--- a/test/functional/viml/completion_spec.lua
+++ b/test/functional/viml/completion_spec.lua
@@ -904,9 +904,9 @@ describe('completion', function()
|
{8:[No Name] }|
{0::}foo faa fee f^ |
- {0::~ }|
- {0::~ }|
- {0::~ }|
+ {0:~ }|
+ {0:~ }|
+ {0:~ }|
{9:[Command Line] }|
{3:-- INSERT --} |
]] )
@@ -915,9 +915,9 @@ describe('completion', function()
|
{8:[No Name] }|
{0::}foo faa fee foo^ |
- {0::~ }{2: foo }{0: }|
- {0::~ }{1: faa }{0: }|
- {0::~ }{1: fee }{0: }|
+ {0:~ }{2: foo }{0: }|
+ {0:~ }{1: faa }{0: }|
+ {0:~ }{1: fee }{0: }|
{9:[Command Line] }|
{3:-- Keyword Local completion (^N^P) }{4:match 1 of 3} |
]])
@@ -926,9 +926,9 @@ describe('completion', function()
|
{8:[No Name] }|
{0::}foo faa fee foo |
- {0::~ }|
- {0::~ }|
- {0::~ }|
+ {0:~ }|
+ {0:~ }|
+ {0:~ }|
{9:[Command Line] }|
:foo faa fee foo^ |
]])