aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ui
diff options
context:
space:
mode:
authorZyX <kp-pav@yandex.ru>2017-11-30 11:53:25 +0300
committerZyX <kp-pav@yandex.ru>2017-11-30 11:53:25 +0300
commit5ab0f988caffad5e8c87a075cbd3f91f0f7e002c (patch)
treec21abc919530cdf54624ead7b6ffd63359da8863 /test/functional/ui
parent0b4054e043257137ccfd3b2207da48910ce32a5f (diff)
downloadrneovim-5ab0f988caffad5e8c87a075cbd3f91f0f7e002c.tar.gz
rneovim-5ab0f988caffad5e8c87a075cbd3f91f0f7e002c.tar.bz2
rneovim-5ab0f988caffad5e8c87a075cbd3f91f0f7e002c.zip
*: Replace all occurrences of NVim with Nvim
Diffstat (limited to 'test/functional/ui')
-rw-r--r--test/functional/ui/cmdline_highlight_spec.lua24
1 files changed, 12 insertions, 12 deletions
diff --git a/test/functional/ui/cmdline_highlight_spec.lua b/test/functional/ui/cmdline_highlight_spec.lua
index 54d27723f0..73fe94c056 100644
--- a/test/functional/ui/cmdline_highlight_spec.lua
+++ b/test/functional/ui/cmdline_highlight_spec.lua
@@ -869,10 +869,10 @@ describe('Ex commands coloring support', function()
end)
describe('Expressions coloring support', function()
it('works', function()
- meths.command('hi clear NVimNumber')
- meths.command('hi clear NVimNestingParenthesis')
- meths.command('hi NVimNumber guifg=Blue2')
- meths.command('hi NVimNestingParenthesis guifg=Yellow')
+ meths.command('hi clear NvimNumber')
+ meths.command('hi clear NvimNestingParenthesis')
+ meths.command('hi NvimNumber guifg=Blue2')
+ meths.command('hi NvimNestingParenthesis guifg=Yellow')
feed(':echo <C-r>=(((1)))')
screen:expect([[
|
@@ -888,8 +888,8 @@ describe('Expressions coloring support', function()
it('does not use Nvim_color_expr', function()
meths.set_var('Nvim_color_expr', 42)
-- Used to error out due to failing to get callback.
- meths.command('hi clear NVimNumber')
- meths.command('hi NVimNumber guifg=Blue2')
+ meths.command('hi clear NvimNumber')
+ meths.command('hi NvimNumber guifg=Blue2')
feed(':<C-r>=1')
screen:expect([[
|
@@ -903,12 +903,12 @@ describe('Expressions coloring support', function()
]])
end)
it('works correctly with non-ASCII and control characters', function()
- meths.command('hi clear NVimStringBody')
- meths.command('hi clear NVimStringQuote')
- meths.command('hi clear NVimInvalid')
- meths.command('hi NVimStringQuote guifg=Blue3')
- meths.command('hi NVimStringBody guifg=Blue4')
- meths.command('hi NVimInvalid guifg=Red guibg=Blue')
+ meths.command('hi clear NvimStringBody')
+ meths.command('hi clear NvimStringQuote')
+ meths.command('hi clear NvimInvalid')
+ meths.command('hi NvimStringQuote guifg=Blue3')
+ meths.command('hi NvimStringBody guifg=Blue4')
+ meths.command('hi NvimInvalid guifg=Red guibg=Blue')
feed('i<C-r>="«»"«»')
screen:expect([[
|