summaryrefslogtreecommitdiff
path: root/st/st-0.9.3/config.def.h
diff options
context:
space:
mode:
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