about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2020-07-04 11:44:47 +0530
committerAndinus <andinus@nand.sh>2020-07-04 11:44:47 +0530
commit64fbc9a818a0d9d2f502e7b12b744863d09a568a (patch)
tree9bbf801b9a0607b3a496ccb6855c27c33ff45651
parent33de99a28ddc24e1bf6c694dff0a5fed06427e3e (diff)
downloadleo-64fbc9a818a0d9d2f502e7b12b744863d09a568a.tar.gz
Shorten option length
`sync emacs irclogs' was too big, now it's `sync irclogs'.
-rwxr-xr-xleo.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/leo.pl b/leo.pl
index 0a3e540..37f620c 100755
--- a/leo.pl
+++ b/leo.pl
@@ -23,8 +23,8 @@ GetOptions(
 
 my %dispatch = (
     "sync emacs" => sub { $options{config} = 1; Emacs::sync(\%options); },
-    "sync emacs irclogs" => sub { $options{irclogs} = 1; Emacs::sync(\%options); },
-    "sync emacs authinfo" => sub { $options{authinfo} = 1; Emacs::sync(\%options); },
+    "sync irclogs" => sub { $options{irclogs} = 1; Emacs::sync(\%options); },
+    "sync authinfo" => sub { $options{authinfo} = 1; Emacs::sync(\%options); },
 );
 
 if ( $dispatch{ "@ARGV" } ) {
ion' href='/gbmor/getwtxt/blame/cache.go?h=v0.4.12&id=bd23ef0959496aba4c6fc8ca2b3969bbf17aa9d5'>^
cd635e6 ^
c896e6b ^

b29e1c1 ^

c896e6b ^
cd635e6 ^
c896e6b ^

b29e1c1 ^

c896e6b ^












b29e1c1 ^
c896e6b ^

b29e1c1 ^

c896e6b ^







b29e1c1 ^


8b6ab99 ^
c896e6b ^





8b6ab99 ^
cd635e6 ^


c896e6b ^

b29e1c1 ^

c896e6b ^
b29e1c1 ^



c896e6b ^
b29e1c1 ^
c896e6b ^
b29e1c1 ^
c896e6b ^
b29e1c1 ^

4f0847b ^
c896e6b ^
b29e1c1 ^

4f0847b ^
b29e1c1 ^
c896e6b ^
b29e1c1 ^

c896e6b ^

b29e1c1 ^
c896e6b ^
b29e1c1 ^
8b6ab99 ^
c896e6b ^
b29e1c1 ^
c896e6b ^
8b6ab99 ^
c896e6b ^
b29e1c1 ^
c896e6b ^



b29e1c1 ^


cd635e6 ^


c896e6b ^



b29e1c1 ^

c896e6b ^
b29e1c1 ^



c896e6b ^
b29e1c1 ^
c896e6b ^


bded77f ^
c896e6b ^
bded77f ^

c896e6b ^
bded77f ^
c896e6b ^

c896e6b ^
bded77f ^







c896e6b ^
bded77f ^



















c896e6b ^
bded77f ^





c896e6b ^

bded77f ^


c896e6b ^
bded77f ^
c896e6b ^

c896e6b ^






c896e6b ^
2b0d4a5 ^









25972a6 ^









f316396 ^

25972a6 ^

2b0d4a5 ^
25972a6 ^





2b0d4a5 ^
25972a6 ^


2b0d4a5 ^
2b0d4a5 ^










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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241