blob: 3acc83a22de20f25b425df9e1d64fa22c42e7bb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
# BQN keybindings for Readline configuration file .inputrc
# Enables BQN combinations in bash and rlwrap (used by dzaima/BQN REPL)
# Readline bindings are recursive, so use this trick to turn double
# backslash into an actual backslash character.
# Assuming ctrl-x esc isn't bound, the part after \\ does nothing,
# except keep Readline from waiting for a backslash combination.
"\\\\" "\\"
"\\`" "˜"
"\\1" "˘"
"\\2" "¨"
"\\3" "⁼"
"\\4" "⌜"
"\\5" "´"
"\\6" "˝"
"\\7" "7"
"\\8" "∞"
"\\9" "¯"
"\\0" "•"
"\\-" "÷"
"\\=" "×"
"\\~" "¬"
"\\!" "⎉"
"\\@" "⚇"
"\\#" "⍟"
"\\$" "◶"
"\\%" "⊘"
"\\^" "⎊"
"\\&" "⍎"
"\\*" "⍕"
"\\(" "⟨"
"\\)" "⟩"
"\\_" "√"
"\\+" "⋆"
"\\q" "⌽"
"\\w" "𝕨"
"\\e" "∊"
"\\r" "↑"
"\\t" "∧"
"\\y" "y"
"\\u" "⊔"
"\\i" "⊏"
"\\o" "⊐"
"\\p" "π"
"\\[" "←"
"\\]" "→"
"\\Q" "↙"
"\\W" "𝕎"
"\\E" "⍷"
"\\R" "𝕣"
"\\T" "⍋"
"\\Y" "Y"
"\\U" "U"
"\\I" "⊑"
"\\O" "⊒"
"\\P" "⍳"
"\\{" "⊣"
"\\}" "⊢"
"\\a" "⍉"
"\\s" "𝕤"
"\\d" "↕"
"\\f" "𝕗"
"\\g" "𝕘"
"\\h" "⊸"
"\\j" "∘"
"\\k" "○"
"\\l" "⟜"
"\\;" "⋄"
"\\'" "↩"
"\\A" "↖"
"\\S" "𝕊"
"\\D" "D"
"\\F" "𝔽"
"\\G" "𝔾"
"\\H" "«"
"\\J" "J"
"\\K" "⌾"
"\\L" "»"
"\\:" "·"
"\\\"" "˙"
"\\|" "|"
"\\z" "⥊"
"\\x" "𝕩"
"\\c" "↓"
"\\v" "∨"
"\\b" "⌊"
"\\n" "n"
"\\m" "≡"
"\\," "∾"
"\\." "≍"
"\\/" "≠"
"\\Z" "Z"
"\\X" "𝕏"
"\\C" "C"
"\\V" "⍒"
"\\B" "⌈"
"\\N" "N"
"\\M" "≢"
"\\<" "≤"
"\\>" "≥"
"\\?" "⇐"
"\\ " "‿"
|