diff options
author | James McCoy <jamessan@jamessan.com> | 2022-03-05 15:00:07 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-05 15:00:07 -0500 |
commit | c365de1d22de3e70e785267fe19cb9c43b42d355 (patch) | |
tree | eedb8f3597ba982066a11b9f39f94e16f25f31d6 /test/functional/ui/screen.lua | |
parent | d557a4557100e3ab48a504dafcf53f544196595c (diff) | |
parent | 7fd1182c62d6e969ac15b3891bfcc4ff480d6953 (diff) | |
download | rneovim-c365de1d22de3e70e785267fe19cb9c43b42d355.tar.gz rneovim-c365de1d22de3e70e785267fe19cb9c43b42d355.tar.bz2 rneovim-c365de1d22de3e70e785267fe19cb9c43b42d355.zip |
Merge pull request #17589 from kchibisov/add-dashed-dotted-underline
Add support for double, dashed, and dotted underlines
Diffstat (limited to 'test/functional/ui/screen.lua')
-rw-r--r-- | test/functional/ui/screen.lua | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test/functional/ui/screen.lua b/test/functional/ui/screen.lua index a5af898652..3e94fdbf44 100644 --- a/test/functional/ui/screen.lua +++ b/test/functional/ui/screen.lua @@ -1559,10 +1559,11 @@ end function Screen:_equal_attrs(a, b) return a.bold == b.bold and a.standout == b.standout and - a.underline == b.underline and a.undercurl == b.undercurl and - a.italic == b.italic and a.reverse == b.reverse and - a.foreground == b.foreground and a.background == b.background and - a.special == b.special and a.blend == b.blend and + a.underline == b.underline and a.underlineline == b.underlineline and + a.undercurl == b.undercurl and a.underdot == b.underdot and + a.underdash == b.underdash and a.italic == b.italic and + a.reverse == b.reverse and a.foreground == b.foreground and + a.background == b.background and a.special == b.special and a.blend == b.blend and a.strikethrough == b.strikethrough and a.fg_indexed == b.fg_indexed and a.bg_indexed == b.bg_indexed end |