diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-06-17 06:33:15 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-17 06:33:15 +0800 |
commit | 7746c54e108ebfccde5fa8748deab31e996d412d (patch) | |
tree | 8003189cf17f40eb2f299ed278f7426554341990 /test/functional/api/vim_spec.lua | |
parent | c3cb56d8ec2cab6842a8678c84d7fed4776822ca (diff) | |
parent | ad70c9892d5b5ebcc106742386c99524f074bcea (diff) | |
download | rneovim-7746c54e108ebfccde5fa8748deab31e996d412d.tar.gz rneovim-7746c54e108ebfccde5fa8748deab31e996d412d.tar.bz2 rneovim-7746c54e108ebfccde5fa8748deab31e996d412d.zip |
Merge pull request #29357 from luukvbaal/statuscol
feat(column)!: rework 'statuscolumn' %r/l items
Diffstat (limited to 'test/functional/api/vim_spec.lua')
-rw-r--r-- | test/functional/api/vim_spec.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/api/vim_spec.lua b/test/functional/api/vim_spec.lua index b32f2b1cb2..d28064447c 100644 --- a/test/functional/api/vim_spec.lua +++ b/test/functional/api/vim_spec.lua @@ -3887,11 +3887,11 @@ describe('API', function() )) eq( { - str = '3 ', - width = 2, + str = ' 3 ', + width = 9, highlights = { { group = 'LineNr', start = 0 }, - { group = 'ErrorMsg', start = 1 }, + { group = 'ErrorMsg', start = 8 }, }, }, api.nvim_eval_statusline('%l%#ErrorMsg# ', { use_statuscol_lnum = 3, highlights = true }) |