reline 0.5.12 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,11 +1,11 @@
1
1
  module Reline::KeyActor
2
2
  VI_COMMAND_MAPPING = [
3
3
  # 0 ^@
4
- :ed_unassigned,
4
+ nil,
5
5
  # 1 ^A
6
6
  :ed_move_to_beg,
7
7
  # 2 ^B
8
- :ed_unassigned,
8
+ nil,
9
9
  # 3 ^C
10
10
  :ed_ignore,
11
11
  # 4 ^D
@@ -13,13 +13,13 @@ module Reline::KeyActor
13
13
  # 5 ^E
14
14
  :ed_move_to_end,
15
15
  # 6 ^F
16
- :ed_unassigned,
16
+ nil,
17
17
  # 7 ^G
18
- :ed_unassigned,
18
+ nil,
19
19
  # 8 ^H
20
20
  :ed_prev_char,
21
21
  # 9 ^I
22
- :ed_unassigned,
22
+ nil,
23
23
  # 10 ^J
24
24
  :ed_newline,
25
25
  # 11 ^K
@@ -49,51 +49,51 @@ module Reline::KeyActor
49
49
  # 23 ^W
50
50
  :ed_delete_prev_word,
51
51
  # 24 ^X
52
- :ed_unassigned,
52
+ nil,
53
53
  # 25 ^Y
54
54
  :em_yank,
55
55
  # 26 ^Z
56
- :ed_unassigned,
56
+ nil,
57
57
  # 27 ^[
58
- :ed_unassigned,
58
+ nil,
59
59
  # 28 ^\
60
60
  :ed_ignore,
61
61
  # 29 ^]
62
- :ed_unassigned,
62
+ nil,
63
63
  # 30 ^^
64
- :ed_unassigned,
64
+ nil,
65
65
  # 31 ^_
66
- :ed_unassigned,
66
+ nil,
67
67
  # 32 SPACE
68
68
  :ed_next_char,
69
69
  # 33 !
70
- :ed_unassigned,
70
+ nil,
71
71
  # 34 "
72
- :ed_unassigned,
72
+ nil,
73
73
  # 35 #
74
74
  :vi_comment_out,
75
75
  # 36 $
76
76
  :ed_move_to_end,
77
77
  # 37 %
78
- :ed_unassigned,
78
+ nil,
79
79
  # 38 &
80
- :ed_unassigned,
80
+ nil,
81
81
  # 39 '
82
- :ed_unassigned,
82
+ nil,
83
83
  # 40 (
84
- :ed_unassigned,
84
+ nil,
85
85
  # 41 )
86
- :ed_unassigned,
86
+ nil,
87
87
  # 42 *
88
- :ed_unassigned,
88
+ nil,
89
89
  # 43 +
90
90
  :ed_next_history,
91
91
  # 44 ,
92
- :ed_unassigned,
92
+ nil,
93
93
  # 45 -
94
94
  :ed_prev_history,
95
95
  # 46 .
96
- :ed_unassigned,
96
+ nil,
97
97
  # 47 /
98
98
  :vi_search_prev,
99
99
  # 48 0
@@ -117,15 +117,15 @@ module Reline::KeyActor
117
117
  # 57 9
118
118
  :ed_argument_digit,
119
119
  # 58 :
120
- :ed_unassigned,
120
+ nil,
121
121
  # 59 ;
122
- :ed_unassigned,
122
+ nil,
123
123
  # 60 <
124
- :ed_unassigned,
124
+ nil,
125
125
  # 61 =
126
- :ed_unassigned,
126
+ nil,
127
127
  # 62 >
128
- :ed_unassigned,
128
+ nil,
129
129
  # 63 ?
130
130
  :vi_search_next,
131
131
  # 64 @
@@ -145,7 +145,7 @@ module Reline::KeyActor
145
145
  # 71 G
146
146
  :vi_to_history_line,
147
147
  # 72 H
148
- :ed_unassigned,
148
+ nil,
149
149
  # 73 I
150
150
  :vi_insert_at_bol,
151
151
  # 74 J
@@ -153,47 +153,47 @@ module Reline::KeyActor
153
153
  # 75 K
154
154
  :vi_search_prev,
155
155
  # 76 L
156
- :ed_unassigned,
156
+ nil,
157
157
  # 77 M
158
- :ed_unassigned,
158
+ nil,
159
159
  # 78 N
160
- :ed_unassigned,
160
+ nil,
161
161
  # 79 O
162
- :ed_unassigned,
162
+ nil,
163
163
  # 80 P
164
164
  :vi_paste_prev,
165
165
  # 81 Q
166
- :ed_unassigned,
166
+ nil,
167
167
  # 82 R
168
- :ed_unassigned,
168
+ nil,
169
169
  # 83 S
170
- :ed_unassigned,
170
+ nil,
171
171
  # 84 T
172
172
  :vi_to_prev_char,
173
173
  # 85 U
174
- :ed_unassigned,
174
+ nil,
175
175
  # 86 V
176
- :ed_unassigned,
176
+ nil,
177
177
  # 87 W
178
178
  :vi_next_big_word,
179
179
  # 88 X
180
180
  :ed_delete_prev_char,
181
181
  # 89 Y
182
- :ed_unassigned,
182
+ nil,
183
183
  # 90 Z
184
- :ed_unassigned,
184
+ nil,
185
185
  # 91 [
186
- :ed_unassigned,
186
+ nil,
187
187
  # 92 \
188
- :ed_unassigned,
188
+ nil,
189
189
  # 93 ]
190
- :ed_unassigned,
190
+ nil,
191
191
  # 94 ^
192
192
  :vi_first_print,
193
193
  # 95 _
194
- :ed_unassigned,
194
+ nil,
195
195
  # 96 `
196
- :ed_unassigned,
196
+ nil,
197
197
  # 97 a
198
198
  :vi_add,
199
199
  # 98 b
@@ -207,7 +207,7 @@ module Reline::KeyActor
207
207
  # 102 f
208
208
  :vi_next_char,
209
209
  # 103 g
210
- :ed_unassigned,
210
+ nil,
211
211
  # 104 h
212
212
  :ed_prev_char,
213
213
  # 105 i
@@ -219,23 +219,23 @@ module Reline::KeyActor
219
219
  # 108 l
220
220
  :ed_next_char,
221
221
  # 109 m
222
- :ed_unassigned,
222
+ nil,
223
223
  # 110 n
224
- :ed_unassigned,
224
+ nil,
225
225
  # 111 o
226
- :ed_unassigned,
226
+ nil,
227
227
  # 112 p
228
228
  :vi_paste_next,
229
229
  # 113 q
230
- :ed_unassigned,
230
+ nil,
231
231
  # 114 r
232
232
  :vi_replace_char,
233
233
  # 115 s
234
- :ed_unassigned,
234
+ nil,
235
235
  # 116 t
236
236
  :vi_to_next_char,
237
237
  # 117 u
238
- :ed_unassigned,
238
+ nil,
239
239
  # 118 v
240
240
  :vi_histedit,
241
241
  # 119 w
@@ -245,273 +245,273 @@ module Reline::KeyActor
245
245
  # 121 y
246
246
  :vi_yank,
247
247
  # 122 z
248
- :ed_unassigned,
248
+ nil,
249
249
  # 123 {
250
- :ed_unassigned,
250
+ nil,
251
251
  # 124 |
252
252
  :vi_to_column,
253
253
  # 125 }
254
- :ed_unassigned,
254
+ nil,
255
255
  # 126 ~
256
- :ed_unassigned,
256
+ nil,
257
257
  # 127 ^?
258
258
  :em_delete_prev_char,
259
259
  # 128 M-^@
260
- :ed_unassigned,
260
+ nil,
261
261
  # 129 M-^A
262
- :ed_unassigned,
262
+ nil,
263
263
  # 130 M-^B
264
- :ed_unassigned,
264
+ nil,
265
265
  # 131 M-^C
266
- :ed_unassigned,
266
+ nil,
267
267
  # 132 M-^D
268
- :ed_unassigned,
268
+ nil,
269
269
  # 133 M-^E
270
- :ed_unassigned,
270
+ nil,
271
271
  # 134 M-^F
272
- :ed_unassigned,
272
+ nil,
273
273
  # 135 M-^G
274
- :ed_unassigned,
274
+ nil,
275
275
  # 136 M-^H
276
- :ed_unassigned,
276
+ nil,
277
277
  # 137 M-^I
278
- :ed_unassigned,
278
+ nil,
279
279
  # 138 M-^J
280
- :ed_unassigned,
280
+ nil,
281
281
  # 139 M-^K
282
- :ed_unassigned,
282
+ nil,
283
283
  # 140 M-^L
284
- :ed_unassigned,
284
+ nil,
285
285
  # 141 M-^M
286
- :ed_unassigned,
286
+ nil,
287
287
  # 142 M-^N
288
- :ed_unassigned,
288
+ nil,
289
289
  # 143 M-^O
290
- :ed_unassigned,
290
+ nil,
291
291
  # 144 M-^P
292
- :ed_unassigned,
292
+ nil,
293
293
  # 145 M-^Q
294
- :ed_unassigned,
294
+ nil,
295
295
  # 146 M-^R
296
- :ed_unassigned,
296
+ nil,
297
297
  # 147 M-^S
298
- :ed_unassigned,
298
+ nil,
299
299
  # 148 M-^T
300
- :ed_unassigned,
300
+ nil,
301
301
  # 149 M-^U
302
- :ed_unassigned,
302
+ nil,
303
303
  # 150 M-^V
304
- :ed_unassigned,
304
+ nil,
305
305
  # 151 M-^W
306
- :ed_unassigned,
306
+ nil,
307
307
  # 152 M-^X
308
- :ed_unassigned,
308
+ nil,
309
309
  # 153 M-^Y
310
- :ed_unassigned,
310
+ nil,
311
311
  # 154 M-^Z
312
- :ed_unassigned,
312
+ nil,
313
313
  # 155 M-^[
314
- :ed_unassigned,
314
+ nil,
315
315
  # 156 M-^\
316
- :ed_unassigned,
316
+ nil,
317
317
  # 157 M-^]
318
- :ed_unassigned,
318
+ nil,
319
319
  # 158 M-^^
320
- :ed_unassigned,
320
+ nil,
321
321
  # 159 M-^_
322
- :ed_unassigned,
322
+ nil,
323
323
  # 160 M-SPACE
324
- :ed_unassigned,
324
+ nil,
325
325
  # 161 M-!
326
- :ed_unassigned,
326
+ nil,
327
327
  # 162 M-"
328
- :ed_unassigned,
328
+ nil,
329
329
  # 163 M-#
330
- :ed_unassigned,
330
+ nil,
331
331
  # 164 M-$
332
- :ed_unassigned,
332
+ nil,
333
333
  # 165 M-%
334
- :ed_unassigned,
334
+ nil,
335
335
  # 166 M-&
336
- :ed_unassigned,
336
+ nil,
337
337
  # 167 M-'
338
- :ed_unassigned,
338
+ nil,
339
339
  # 168 M-(
340
- :ed_unassigned,
340
+ nil,
341
341
  # 169 M-)
342
- :ed_unassigned,
342
+ nil,
343
343
  # 170 M-*
344
- :ed_unassigned,
344
+ nil,
345
345
  # 171 M-+
346
- :ed_unassigned,
346
+ nil,
347
347
  # 172 M-,
348
- :ed_unassigned,
348
+ nil,
349
349
  # 173 M--
350
- :ed_unassigned,
350
+ nil,
351
351
  # 174 M-.
352
- :ed_unassigned,
352
+ nil,
353
353
  # 175 M-/
354
- :ed_unassigned,
354
+ nil,
355
355
  # 176 M-0
356
- :ed_unassigned,
356
+ nil,
357
357
  # 177 M-1
358
- :ed_unassigned,
358
+ nil,
359
359
  # 178 M-2
360
- :ed_unassigned,
360
+ nil,
361
361
  # 179 M-3
362
- :ed_unassigned,
362
+ nil,
363
363
  # 180 M-4
364
- :ed_unassigned,
364
+ nil,
365
365
  # 181 M-5
366
- :ed_unassigned,
366
+ nil,
367
367
  # 182 M-6
368
- :ed_unassigned,
368
+ nil,
369
369
  # 183 M-7
370
- :ed_unassigned,
370
+ nil,
371
371
  # 184 M-8
372
- :ed_unassigned,
372
+ nil,
373
373
  # 185 M-9
374
- :ed_unassigned,
374
+ nil,
375
375
  # 186 M-:
376
- :ed_unassigned,
376
+ nil,
377
377
  # 187 M-;
378
- :ed_unassigned,
378
+ nil,
379
379
  # 188 M-<
380
- :ed_unassigned,
380
+ nil,
381
381
  # 189 M-=
382
- :ed_unassigned,
382
+ nil,
383
383
  # 190 M->
384
- :ed_unassigned,
384
+ nil,
385
385
  # 191 M-?
386
- :ed_unassigned,
386
+ nil,
387
387
  # 192 M-@
388
- :ed_unassigned,
388
+ nil,
389
389
  # 193 M-A
390
- :ed_unassigned,
390
+ nil,
391
391
  # 194 M-B
392
- :ed_unassigned,
392
+ nil,
393
393
  # 195 M-C
394
- :ed_unassigned,
394
+ nil,
395
395
  # 196 M-D
396
- :ed_unassigned,
396
+ nil,
397
397
  # 197 M-E
398
- :ed_unassigned,
398
+ nil,
399
399
  # 198 M-F
400
- :ed_unassigned,
400
+ nil,
401
401
  # 199 M-G
402
- :ed_unassigned,
402
+ nil,
403
403
  # 200 M-H
404
- :ed_unassigned,
404
+ nil,
405
405
  # 201 M-I
406
- :ed_unassigned,
406
+ nil,
407
407
  # 202 M-J
408
- :ed_unassigned,
408
+ nil,
409
409
  # 203 M-K
410
- :ed_unassigned,
410
+ nil,
411
411
  # 204 M-L
412
- :ed_unassigned,
412
+ nil,
413
413
  # 205 M-M
414
- :ed_unassigned,
414
+ nil,
415
415
  # 206 M-N
416
- :ed_unassigned,
416
+ nil,
417
417
  # 207 M-O
418
- :ed_unassigned,
418
+ nil,
419
419
  # 208 M-P
420
- :ed_unassigned,
420
+ nil,
421
421
  # 209 M-Q
422
- :ed_unassigned,
422
+ nil,
423
423
  # 210 M-R
424
- :ed_unassigned,
424
+ nil,
425
425
  # 211 M-S
426
- :ed_unassigned,
426
+ nil,
427
427
  # 212 M-T
428
- :ed_unassigned,
428
+ nil,
429
429
  # 213 M-U
430
- :ed_unassigned,
430
+ nil,
431
431
  # 214 M-V
432
- :ed_unassigned,
432
+ nil,
433
433
  # 215 M-W
434
- :ed_unassigned,
434
+ nil,
435
435
  # 216 M-X
436
- :ed_unassigned,
436
+ nil,
437
437
  # 217 M-Y
438
- :ed_unassigned,
438
+ nil,
439
439
  # 218 M-Z
440
- :ed_unassigned,
440
+ nil,
441
441
  # 219 M-[
442
- :ed_unassigned,
442
+ nil,
443
443
  # 220 M-\
444
- :ed_unassigned,
444
+ nil,
445
445
  # 221 M-]
446
- :ed_unassigned,
446
+ nil,
447
447
  # 222 M-^
448
- :ed_unassigned,
448
+ nil,
449
449
  # 223 M-_
450
- :ed_unassigned,
450
+ nil,
451
451
  # 224 M-`
452
- :ed_unassigned,
452
+ nil,
453
453
  # 225 M-a
454
- :ed_unassigned,
454
+ nil,
455
455
  # 226 M-b
456
- :ed_unassigned,
456
+ nil,
457
457
  # 227 M-c
458
- :ed_unassigned,
458
+ nil,
459
459
  # 228 M-d
460
- :ed_unassigned,
460
+ nil,
461
461
  # 229 M-e
462
- :ed_unassigned,
462
+ nil,
463
463
  # 230 M-f
464
- :ed_unassigned,
464
+ nil,
465
465
  # 231 M-g
466
- :ed_unassigned,
466
+ nil,
467
467
  # 232 M-h
468
- :ed_unassigned,
468
+ nil,
469
469
  # 233 M-i
470
- :ed_unassigned,
470
+ nil,
471
471
  # 234 M-j
472
- :ed_unassigned,
472
+ nil,
473
473
  # 235 M-k
474
- :ed_unassigned,
474
+ nil,
475
475
  # 236 M-l
476
- :ed_unassigned,
476
+ nil,
477
477
  # 237 M-m
478
- :ed_unassigned,
478
+ nil,
479
479
  # 238 M-n
480
- :ed_unassigned,
480
+ nil,
481
481
  # 239 M-o
482
- :ed_unassigned,
482
+ nil,
483
483
  # 240 M-p
484
- :ed_unassigned,
484
+ nil,
485
485
  # 241 M-q
486
- :ed_unassigned,
486
+ nil,
487
487
  # 242 M-r
488
- :ed_unassigned,
488
+ nil,
489
489
  # 243 M-s
490
- :ed_unassigned,
490
+ nil,
491
491
  # 244 M-t
492
- :ed_unassigned,
492
+ nil,
493
493
  # 245 M-u
494
- :ed_unassigned,
494
+ nil,
495
495
  # 246 M-v
496
- :ed_unassigned,
496
+ nil,
497
497
  # 247 M-w
498
- :ed_unassigned,
498
+ nil,
499
499
  # 248 M-x
500
- :ed_unassigned,
500
+ nil,
501
501
  # 249 M-y
502
- :ed_unassigned,
502
+ nil,
503
503
  # 250 M-z
504
- :ed_unassigned,
504
+ nil,
505
505
  # 251 M-{
506
- :ed_unassigned,
506
+ nil,
507
507
  # 252 M-|
508
- :ed_unassigned,
508
+ nil,
509
509
  # 253 M-}
510
- :ed_unassigned,
510
+ nil,
511
511
  # 254 M-~
512
- :ed_unassigned,
512
+ nil,
513
513
  # 255 M-^?
514
- :ed_unassigned
514
+ nil
515
515
  # EOF
516
516
  ]
517
517
  end