diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2022-03-02 00:48:11 +0300 |
---|---|---|
committer | Kirill Chibisov <contact@kchibisov.com> | 2022-03-03 23:35:36 +0300 |
commit | f89fb41a7a8b499159bfa44afa26dd17a845af45 (patch) | |
tree | b5ccba78e1a2a03723a0a4c4c6409ac246224c2f /src/nvim/hardcopy.h | |
parent | 7211d8ef21cd93365c5f0582c5a0115e84c011ce (diff) | |
download | rneovim-f89fb41a7a8b499159bfa44afa26dd17a845af45.tar.gz rneovim-f89fb41a7a8b499159bfa44afa26dd17a845af45.tar.bz2 rneovim-f89fb41a7a8b499159bfa44afa26dd17a845af45.zip |
feat(tui): add support for `CSI 4 : [2,4,5] m`
This commit finishes support for colored and styled underlines adding
`CSI 4 : [2,4,5] m` support providing double, dashed, and dotted
underlines
Fixes #17362.
Diffstat (limited to 'src/nvim/hardcopy.h')
-rw-r--r-- | src/nvim/hardcopy.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/hardcopy.h b/src/nvim/hardcopy.h index eba769d342..16119c5d2d 100644 --- a/src/nvim/hardcopy.h +++ b/src/nvim/hardcopy.h @@ -18,6 +18,9 @@ typedef struct { TriState italic; TriState underline; int undercurl; + int underlineline; + int underdot; + int underdash; } prt_text_attr_T; /* |