diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-06-30 16:57:44 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-30 16:57:44 +0800 |
commit | 995e4879153d0f4ea72dff446c175754a1873425 (patch) | |
tree | c53b77a422ab65860ccb15c9020a89f89b68c37d /test/functional/terminal/highlight_spec.lua | |
parent | 6f6286e4f90da25a7d1b6bcc96b79b0ccbaf5c26 (diff) | |
download | rneovim-995e4879153d0f4ea72dff446c175754a1873425.tar.gz rneovim-995e4879153d0f4ea72dff446c175754a1873425.tar.bz2 rneovim-995e4879153d0f4ea72dff446c175754a1873425.zip |
refactor(highlight)!: rename attributes to match Vim (#19159)
Ref: https://github.com/vim/vim/commit/84f546363068e4ddfe14a8a2a2322bb8d3a25417
Rename:
- `underlineline` to `underdouble`
- `underdot` to `underdotted`
- `underdash` to `underdashed`
`underdouble` also now takes higher precedence than `undercurl`.
Diffstat (limited to 'test/functional/terminal/highlight_spec.lua')
-rw-r--r-- | test/functional/terminal/highlight_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/terminal/highlight_spec.lua b/test/functional/terminal/highlight_spec.lua index 1eb7223dce..28ca07d815 100644 --- a/test/functional/terminal/highlight_spec.lua +++ b/test/functional/terminal/highlight_spec.lua @@ -306,7 +306,7 @@ describe('synIDattr()', function() it('returns "1" if group has given highlight attribute', function() local hl_attrs = { - 'underline', 'underlineline', 'undercurl', 'underdot', 'underdash', 'strikethrough' + 'underline', 'undercurl', 'underdouble', 'underdotted', 'underdashed', 'strikethrough' } for _,hl_attr in ipairs(hl_attrs) do local context = 'using ' .. hl_attr .. ' attr' |