aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ex_cmds
diff options
context:
space:
mode:
authorReto Schnyder <reto.a.schnyder@bluewin.ch>2018-10-13 19:33:08 +0200
committerJustin M. Keyes <justinkz@gmail.com>2018-10-13 19:39:56 +0200
commitbddcbbb5716a005001da3bacb4c1df4ae05e51bc (patch)
tree5317a4d71a4e2ab1ac8e966adfcbff086d0cc2fa /test/functional/ex_cmds
parent8bbb28b9732bfa430a963f16498d8ec42c637ca9 (diff)
downloadrneovim-bddcbbb5716a005001da3bacb4c1df4ae05e51bc.tar.gz
rneovim-bddcbbb5716a005001da3bacb4c1df4ae05e51bc.tar.bz2
rneovim-bddcbbb5716a005001da3bacb4c1df4ae05e51bc.zip
signs: Add "numhl" argument #9113
close #9113 ref #9040
Diffstat (limited to 'test/functional/ex_cmds')
-rw-r--r--test/functional/ex_cmds/sign_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/ex_cmds/sign_spec.lua b/test/functional/ex_cmds/sign_spec.lua
index df0f5db860..9d08a66625 100644
--- a/test/functional/ex_cmds/sign_spec.lua
+++ b/test/functional/ex_cmds/sign_spec.lua
@@ -7,7 +7,7 @@ describe('sign', function()
describe('without specifying buffer', function()
it('deletes the sign from all buffers', function()
-- place a sign with id 34 to first buffer
- nvim('command', 'sign define Foo text=+ texthl=Delimiter linehl=Comment')
+ nvim('command', 'sign define Foo text=+ texthl=Delimiter linehl=Comment numhl=Number')
local buf1 = nvim('eval', 'bufnr("%")')
nvim('command', 'sign place 34 line=3 name=Foo buffer='..buf1)
-- create a second buffer and place the sign on it as well