aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ui/cmdline_highlight_spec.lua
diff options
context:
space:
mode:
authorGabriel Cruz <gabs.oficial98@gmail.com>2019-04-12 03:19:26 +0200
committerJustin M. Keyes <justinkz@gmail.com>2019-04-12 03:20:05 +0200
commit3b7a4f233bd53eb901904992227be3fffe5e621a (patch)
tree7004730d7689444cb637d0073fd8f01c7a7d2c17 /test/functional/ui/cmdline_highlight_spec.lua
parente11a9d351a9f0ae278755e3c18bcc9aab05c1266 (diff)
downloadrneovim-3b7a4f233bd53eb901904992227be3fffe5e621a.tar.gz
rneovim-3b7a4f233bd53eb901904992227be3fffe5e621a.tar.bz2
rneovim-3b7a4f233bd53eb901904992227be3fffe5e621a.zip
vim-patch:8.0.0714: cmdline redraw during timer #9835
vim-patch:8.0.0714: when a timer causes a command line redraw " goes missing Problem: When a timer causes a command line redraw the " that is displayed for CTRL-R goes missing. Solution: Remember an extra character to display. https://github.com/vim/vim/commit/a92522fbf3a49d06e08caf010f7d7b0f58d2e131 vim-patch:8.0.0720: unfinished mapping not displayed when running timer Problem: Unfinished mapping not displayed when running timer. Solution: Also use the extra_char while waiting for a mapping and digraph. (closes vim/vim#1844) https://github.com/vim/vim/commit/6a77d2667e982655f6adacee774ee7aa2581bd8a close #9835
Diffstat (limited to 'test/functional/ui/cmdline_highlight_spec.lua')
-rw-r--r--test/functional/ui/cmdline_highlight_spec.lua4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/functional/ui/cmdline_highlight_spec.lua b/test/functional/ui/cmdline_highlight_spec.lua
index 1568b7816e..121e71c3c2 100644
--- a/test/functional/ui/cmdline_highlight_spec.lua
+++ b/test/functional/ui/cmdline_highlight_spec.lua
@@ -975,8 +975,6 @@ describe('Expressions coloring support', function()
]])
funcs.setreg('a', {'\192'})
feed('<C-r>="<C-r><C-r>a"<C-r><C-r>a"foo"')
- -- TODO(ZyX-I): Parser highlighting should not override special character
- -- highlighting.
screen:expect([[
|
{EOB:~ }|
@@ -985,7 +983,7 @@ describe('Expressions coloring support', function()
{EOB:~ }|
{EOB:~ }|
{EOB:~ }|
- ={SQ:"}{SB:<c0>}{SQ:"}{E:<c0>"}{SB:foo}{E:"}^ |
+ ={SQ:"}{SB:<c0>}{SQ:"}{E:<c0>"}{SB:foo}{E:"}^" |
]])
end)
end)