summaryrefslogtreecommitdiff
path: root/Tcaps
diff options
context:
space:
mode:
Diffstat (limited to 'Tcaps')
-rw-r--r--Tcaps36
1 files changed, 32 insertions, 4 deletions
diff --git a/Tcaps b/Tcaps
index 07a22e3..a2ef67e 100644
--- a/Tcaps
+++ b/Tcaps
@@ -1,12 +1,40 @@
#!/bin/zsh
-
-T_=${has_termcaps:+$termcap[as]}
-_T=${has_termcaps:+$termcap[ae]}
-_tq_=${${has_termcaps:+"q"}:-"-"}
+#
+# + right arrow (>)
+# , left arrow (<)
+# . down arrow (v)
+# 0 full square (#)
+# I lantern (#)
+# - upper arrow (^)
+# ' rhombus (+)
+# a chess board (:)
+# f degree (')
+# g plus-minus (#)
+# h square (#)
+# j right bottom corner (+)
+# k right upper corner (+)
+# l left upper corner (+)
+# m left bottom corner (+)
_tj_=${${has_termcaps:+"j"}:-"'"}
_tk_=${${has_termcaps:+"k"}:-"."}
_tl_=${${has_termcaps:+"l"}:-","}
_tm_=${${has_termcaps:+"m"}:-"\`"}
+# n cross (+)
+# o upper horizontal line (-)
+# q middle horizontal line (-)
+_tq_=${${has_termcaps:+"q"}:-"-"}
+# s bottom horizontal line (_)
+# t left tee (+)
+# u right tee (+)
_tt_=${${has_termcaps:+"t"}:-"]"}
_tu_=${${has_termcaps:+"u"}:-"["}
+# v bottom tee (+)
+# w normal tee (+)
+# x vertical line (|)
_tx_=${${has_termcaps:+"x"}:-"|"}
+# ~ paragraph (???)
+
+
+
+T_=${has_termcaps:+$termcap[as]}
+_T=${has_termcaps:+$termcap[ae]}