-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjgmenuunicode.7.html
More file actions
183 lines (167 loc) · 3.72 KB
/
jgmenuunicode.7.html
File metadata and controls
183 lines (167 loc) · 3.72 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<!DOCTYPE html>
<html lang=en>
<head>
<title>jgmenu</title>
<meta charset="utf-8" />
<meta name="description" content="jgmenu"/>
<meta name="viewport" content="width=device-width">
<style>
body {
overflow-y: scroll;
font-family: monospace;
background-color: #fff;
color: black;
max-width: 600px;
padding: 20px;
line-height: 1.5;
word-wrap: break-word;
margin: auto;
}
pre {
padding: 20px;
white-space: pre-wrap;
border: 1px dotted gray;
display: block;
margin: 20px auto;
background-color: #eee;
color: #111;
}
code {
font-family: monospace;
background-color: #eee;
color: #111;
}
img {
margin: 20px auto;
max-width: 100%;
}
table {
border-collapse: collapse;
}
table,th,td {
border: 1px solid black;
}
th,td {
padding: 15px;
text-align: left;
}
h1 a, h2 a, h3 a, h4 a, h5 a {
text-decoration: none;
}
h1, h2, h3, h4, h5 {
font-family: monospace;
font-weight: bold;
}
h1 {
font-size: 130%;
}
h2 {
font-size: 110%;
}
h3 {
font-size: 95%;
}
h4 {
font-size: 90%;
font-style: italic;
}
h5 {
font-size: 90%;
font-style: italic;
}
dt code {
font-weight: bold;
}
dd p {
margin-top: 0;
}
</style>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-162822348-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-162822348-1');
</script>
</head>
<body>
<main>
<a href='index.html'>Home</a><br> JGMENUUNICODE(7) <h1 id="name">NAME</h1>
<p>jgmenuunicode - An overview of jgmenu unicode usage</p>
<h1 id="introduction">INTRODUCTION</h1>
<p>Unicode characters can be displayed by jgmenu. They can be used
in:</p>
<ul>
<li>CSV data<br />
</li>
<li>Widgets<br />
</li>
<li>Config file</li>
</ul>
<p>Throughout this document, unicode code points will be referred to by
writing <code>u+</code> followed by their hexadecimal number. In
examples, u+1234 will be used.</p>
<h1 id="unicode-characters-in-terminal">UNICODE CHARACTERS IN
TERMINAL</h1>
<p>Terminals handle unicode differently. For full support, avoid xterm
and urxvt, and opt for something libvte based such as sakura or
gnome-terminal. In a terminal, you can produce a unicode character by
issuing</p>
<pre><code>printf '%b' '\u1234'</code></pre>
<p>In libvte terminals, you can press ctrl+shift+u and then enter the
hex sequence.</p>
<h1 id="unicode-characters-in-vim">UNICODE CHARACTERS IN VIM</h1>
<p>Whilst in insert mode, press ctrl+V and then type u1234.</p>
<p>Use the command <code>ga</code> to show the hex value of the
character under the cursor.</p>
<h1 id="variation-selectors">VARIATION SELECTORS</h1>
<p>Some unicode characters can be rendered as either emoji or text.
Special invisible unicode characters called variation selectors can be
used to force either presentation. Append with the text presentation
selector (u+fe0e) or emoji presentation selector (u+fe0f), to force text
or emoji respectively. For example:</p>
<p>u+1f50d u+fe0f 🔍<br />
u+1f50d u+fe0e 🔍︎</p>
<h1 id="useful-characters-for-building-menus">USEFUL CHARACTERS FOR
BUILDING MENUS</h1>
<h2 id="search">SEARCH</h2>
<p>u+2315 ⌕<br />
u+26b2 ⚲<br />
u+1c04 ᰄ</p>
<h2 id="arrows">ARROWS</h2>
<p>u+2192 →<br />
u+203a ›<br />
u+25b6 ▶<br />
u+2794 ➔<br />
u+2799 ➙<br />
u+279b ➛<br />
u+279c ➜<br />
u+279d ➝<br />
u+279e ➞<br />
u+279f ➟<br />
u+27a0 ➠<br />
u+27a1 ➡<br />
u+27a2 ➢<br />
u+27a3 ➣<br />
u+27a4 ➤<br />
u+27a5 ➥<br />
u+27a6 ➦<br />
u+21a6 ↦<br />
u+21d2 ⇒<br />
u+21dd ⇝<br />
u+21e2 ⇢<br />
u+21e5 ⇥<br />
u+21e8 ⇨<br />
u+21fe ⇾<br />
u+27ad ➭<br />
u+27ae ➮<br />
u+27af ➯<br />
u+27b1 ➱<br />
u+27b2 ➲<br />
u+27ba ➺<br />
u+27bc ➼<br />
u+27bd ➽<br />
u+27be ➾</p>
</main>
</body>
</html>