diff options
| author | Thomas Ulmer <thomasmulmer02@gmail.com> | 2025-12-20 15:30:02 -0800 |
|---|---|---|
| committer | Thomas Ulmer <thomasmulmer02@gmail.com> | 2025-12-20 15:30:02 -0800 |
| commit | c3a8504c0246df41cc5c82f5e2e07f6cb1cd5082 (patch) | |
| tree | 73fe03fcb3ec481a90b380a6bd0c03bca525d97b /st/st-0.9.3/config.def.h | |
| parent | eed90894d41a8e0892ea51d6be93369850c493b5 (diff) | |
st: undercurl
Diffstat (limited to 'st/st-0.9.3/config.def.h')
| -rw-r--r-- | st/st-0.9.3/config.def.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/st/st-0.9.3/config.def.h b/st/st-0.9.3/config.def.h index f20f6bc..49adb86 100644 --- a/st/st-0.9.3/config.def.h +++ b/st/st-0.9.3/config.def.h @@ -477,3 +477,27 @@ static char ascii_printable[] = " !\"#$%&'()*+,-./0123456789:;<=>?" "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_" "`abcdefghijklmnopqrstuvwxyz{|}~"; + +/** + + * Undercurl style. Set UNDERCURL_STYLE to one of the available styles. + + * + + * Curly: Dunno how to draw it *shrug* + + * _ _ _ _ + + * ( ) ( ) ( ) ( ) + + * (_) (_) (_) (_) + + * + + * Spiky: + + * /\ /\ /\ /\ + + * \/ \/ \/ + + * + + * Capped: + + * _ _ _ + + * / \ / \ / \ + + * \_/ \_/ + + */ +// Available styles +#define UNDERCURL_CURLY 0 +#define UNDERCURL_SPIKY 1 +#define UNDERCURL_CAPPED 2 +// Active style +#define UNDERCURL_STYLE UNDERCURL_SPIKY |
