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 /src/nvim/hardcopy.h | |
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 '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; /* |