diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-06-29 18:39:11 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-06-29 18:39:11 +0100 |
commit | 84f546363068e4ddfe14a8a2a2322bb8d3a25417 (patch) | |
tree | 3ba03d5c35ce660ee6f437aa2a89948953c362bd /runtime/doc/options.txt | |
parent | 8b5901e2f9466eb6f38f5b251e871f609f65e252 (diff) | |
download | vim-git-84f546363068e4ddfe14a8a2a2322bb8d3a25417.tar.gz |
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 'runtime/doc/options.txt')
-rw-r--r-- | runtime/doc/options.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 84ab1fb8b..1d14c4433 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -4211,7 +4211,10 @@ A jump table for the options with a short description can be found at |Q_op|. b bold (termcap entry "md" and "me") s standout (termcap entry "so" and "se") u underline (termcap entry "us" and "ue") - c undercurl (termcap entry "Cs" and "Ce") + c undercurl (termcap entry "Us" and "Ce") + 2 double underline (termcap entry "Ds" and "Ce") + d dotted underline (termcap entry "ds" and "Ce") + = dashed underline (termcap entry "Ds" and "Ce") t strikethrough (termcap entry "Ts" and "Te") n no highlighting - no highlighting |