summaryrefslogtreecommitdiff
path: root/st/st-0.9.3/config.def.h
diff options
context:
space:
mode:
authorThomas Ulmer <thomasmulmer02@gmail.com>2025-12-20 15:30:02 -0800
committerThomas Ulmer <thomasmulmer02@gmail.com>2025-12-20 15:30:02 -0800
commitc3a8504c0246df41cc5c82f5e2e07f6cb1cd5082 (patch)
tree73fe03fcb3ec481a90b380a6bd0c03bca525d97b /st/st-0.9.3/config.def.h
parenteed90894d41a8e0892ea51d6be93369850c493b5 (diff)
st: undercurl
Diffstat (limited to 'st/st-0.9.3/config.def.h')
-rw-r--r--st/st-0.9.3/config.def.h24
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