summaryrefslogtreecommitdiffstats
path: root/src/hardcopy.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-06-29 18:39:11 +0100
committerBram Moolenaar <Bram@vim.org>2022-06-29 18:39:11 +0100
commit84f546363068e4ddfe14a8a2a2322bb8d3a25417 (patch)
tree3ba03d5c35ce660ee6f437aa2a89948953c362bd /src/hardcopy.c
parent8b5901e2f9466eb6f38f5b251e871f609f65e252 (diff)
patch 9.0.0007: no support for double, dotted and dashed underlinesv9.0.0007
Problem: No support for double, dotted and dashed underlines. Solution: Add the termcap entries and highlight modes. (closes #9553)
Diffstat (limited to 'src/hardcopy.c')
-rw-r--r--src/hardcopy.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/hardcopy.c b/src/hardcopy.c
index e2e5211624..dd1f2e071e 100644
--- a/src/hardcopy.c
+++ b/src/hardcopy.c
@@ -293,6 +293,7 @@ prt_get_attr(
pattr->italic = (highlight_has_attr(hl_id, HL_ITALIC, modec) != NULL);
pattr->underline = (highlight_has_attr(hl_id, HL_UNDERLINE, modec) != NULL);
pattr->undercurl = (highlight_has_attr(hl_id, HL_UNDERCURL, modec) != NULL);
+ // TODO: HL_UNDERDOUBLE, HL_UNDERDOTTED, HL_UNDERDASHED
# if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS)
if (USE_24BIT)