-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
2415 lines (2415 loc) · 74.7 KB
/
package.json
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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "dance",
"displayName": "Dance",
"description": "Make those cursors dance with Kakoune-inspired keybindings.",
"version": "0.2.2",
"license": "ISC",
"publisher": "gregoire",
"author": {
"name": "Grégoire Geis",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/71/dance.git"
},
"readme": "README.md",
"categories": [
"Keymaps",
"Other"
],
"main": "./out/src/extension.js",
"engines": {
"vscode": "^1.44.0"
},
"scripts": {
"generate": "ts-node ./commands/generate.ts && ts-node package.ts",
"vscode:prepublish": "yarn run generate && yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "yarn run compile && node ./out/test/run.js",
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/js-yaml": "^3.12.3",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.4",
"@types/vscode": "^1.44.0",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"glob": "^7.1.6",
"js-yaml": "^3.13.0",
"mocha": "^7.1.2",
"source-map-support": "^0.5.19",
"ts-node": "^8.9.1",
"typescript": "^3.8.3",
"vsce": "^1.75.0",
"vscode-test": "^1.3.0"
},
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Dance",
"properties": {
"dance.enabled": {
"type": "boolean",
"default": true,
"description": "Controls whether the Dance keybindings are enabled."
},
"dance.normalMode.lineHighlight": {
"type": [
"string",
"null"
],
"default": "editor.hoverHighlightBackground",
"markdownDescription": "Controls the line highlighting applied to active lines in normal mode. Can be an hex color, a [theme color](https://code.visualstudio.com/api/references/theme-color) or null."
},
"dance.insertMode.lineHighlight": {
"type": [
"string",
"null"
],
"default": null,
"markdownDescription": "Controls the line highlighting applied to active lines in insert mode. Can be an hex color, a [theme color](https://code.visualstudio.com/api/references/theme-color) or null."
},
"dance.normalMode.lineNumbers": {
"enum": [
"off",
"on",
"relative",
"inherit"
],
"default": "relative",
"description": "Controls the display of line numbers in normal mode.",
"enumDescriptions": [
"No line numbers.",
"Absolute line numbers.",
"Relative line numbers.",
"Inherit from `editor.lineNumbers`."
]
},
"dance.insertMode.lineNumbers": {
"enum": [
"off",
"on",
"relative",
"inherit"
],
"default": "inherit",
"description": "Controls the display of line numbers in insert mode.",
"enumDescriptions": [
"No line numbers.",
"Absolute line numbers.",
"Relative line numbers.",
"Inherit from `editor.lineNumbers`."
]
},
"dance.normalMode.cursorStyle": {
"enum": [
"line",
"block",
"underline",
"line-thin",
"block-outline",
"underline-thin",
"inherit"
],
"default": "inherit",
"description": "Controls the cursor style in normal mode."
},
"dance.insertMode.cursorStyle": {
"enum": [
"line",
"block",
"underline",
"line-thin",
"block-outline",
"underline-thin",
"inherit"
],
"default": "inherit",
"description": "Controls the cursor style in insert mode."
},
"dance.insertMode.selectionStyle": {
"type": "object",
"default": {
"borderColor": "$editor.selectionBackground",
"borderStyle": "solid",
"borderWidth": "2px",
"borderRadius": "1px"
},
"description": "The style to apply to selections in insert mode.",
"properties": {
"backgroundColor": {
"type": "string"
},
"borderColor": {
"type": "string"
},
"borderStyle": {
"type": "string"
},
"borderWidth": {
"type": "string"
},
"borderRadius": {
"type": "string"
}
}
},
"dance.selectionBehavior": {
"enum": [
"caret",
"character"
],
"default": "caret",
"description": "Controls how selections behave within VS Code.",
"markdownEnumDescriptions": [
"Selections are anchored to carets, which is the native VS Code behavior; that is, they are positioned *between* characters and can therefore be empty.",
"Selections are anchored to characters, like Kakoune; that is, they are positioned *on* characters, and therefore cannot be empty. Additionally, one-character selections will behave as if they were non-directional, like Kakoune."
]
},
"dance.selections.allowEmpty": {
"type": "boolean",
"description": "Controls whether selections can be empty. If false, each selection will have at least one character.",
"deprecationMessage": "This property will be removed in the next version of Dance and is currently being ignored. Please set dance.selectionBehavior to \"caret\" to allow empty selections, or to \"character\" to forbid them."
},
"dance.menus": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"items": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"command": {
"type": "string"
},
"args": {
"type": "array"
}
}
}
}
},
"additionalProperties": false
},
"default": {
"object": {
"items": {
"b()": {
"command": "dance.objects.performSelection",
"args": [
{
"object": "parens"
}
],
"text": "parenthesis block"
},
"B{}": {
"command": "dance.objects.performSelection",
"args": [
{
"object": "braces"
}
],
"text": "braces block"
},
"r[]": {
"command": "dance.objects.performSelection",
"args": [
{
"object": "brackets"
}
],
"text": "brackets block"
},
"a<>": {
"command": "dance.objects.performSelection",
"args": [
{
"object": "angleBrackets"
}
],
"text": "angle block"
},
"Q\"": {
"command": "dance.objects.performSelection",
"args": [
{
"object": "doubleQuoteString"
}
],
"text": "double quote string"
},
"q'": {
"command": "dance.objects.performSelection",
"args": [
{
"object": "singleQuoteString"
}
],
"text": "single quote string"
},
"g`": {
"command": "dance.objects.performSelection",
"args": [
{
"object": "graveQuoteString"
}
],
"text": "grave quote string"
},
"w": {
"command": "dance.objects.performSelection",
"args": [
{
"object": "word"
}
],
"text": "word"
},
"W": {
"command": "dance.objects.performSelection",
"args": [
{
"object": "WORD"
}
],
"text": "WORD"
},
"s": {
"command": "dance.objects.performSelection",
"args": [
{
"object": "sentence"
}
],
"text": "sentence"
},
"p": {
"command": "dance.objects.performSelection",
"args": [
{
"object": "paragraph"
}
],
"text": "paragraph"
},
" ": {
"command": "dance.objects.performSelection",
"args": [
{
"object": "whitespaces"
}
],
"text": "whitespaces"
},
"i": {
"command": "dance.objects.performSelection",
"args": [
{
"object": "indent"
}
],
"text": "indent"
},
"n": {
"command": "dance.objects.performSelection",
"args": [
{
"object": "number"
}
],
"text": "number"
},
"u": {
"command": "dance.objects.performSelection",
"args": [
{
"object": "argument"
}
],
"text": "argument"
},
"c": {
"command": "dance.objects.performSelection",
"args": [
{
"object": "custom"
}
],
"text": "custom object desc"
}
}
},
"goto": {
"items": {
"h": {
"text": "go to line start",
"command": "dance.goto.lineStart"
},
"l": {
"text": "go to line end",
"command": "dance.goto.lineEnd"
},
"i": {
"text": "go to non-blank line start",
"command": "dance.goto.lineStart.nonBlank"
},
"g": {
"text": "go to first line",
"command": "dance.goto.firstLine"
},
"k": {
"text": "go to first line",
"command": "dance.goto.firstLine"
},
"j": {
"text": "go to last line",
"command": "dance.goto.lastLine"
},
"e": {
"text": "go to last char of last line",
"command": "dance.goto.lastCharacter"
},
"t": {
"text": "go to the first displayed line",
"command": "dance.goto.firstVisibleLine"
},
"c": {
"text": "go to the middle displayed line",
"command": "dance.goto.middleVisibleLine"
},
"b": {
"text": "go to the last displayed line",
"command": "dance.goto.lastVisibleLine"
},
"f": {
"text": "go to file whose name is selected",
"command": "dance.goto.selectedFile"
},
".": {
"text": "go to last buffer modification position",
"command": "dance.goto.lastModification"
}
}
},
"goto.extend": {
"items": {
"h": {
"text": "extend to line start",
"command": "dance.goto.lineStart.extend"
},
"l": {
"text": "extend to line end",
"command": "dance.goto.lineEnd.extend"
},
"i": {
"text": "extend to non-blank line start",
"command": "dance.goto.lineStart.nonBlank.extend"
},
"g": {
"text": "extend to first line",
"command": "dance.goto.firstLine.extend"
},
"k": {
"text": "extend to first line",
"command": "dance.goto.firstLine.extend"
},
"j": {
"text": "extend to last line",
"command": "dance.goto.lastLine.extend"
},
"e": {
"text": "extend to last char of last line",
"command": "dance.goto.lastCharacter.extend"
},
"t": {
"text": "extend to the first displayed line",
"command": "dance.goto.firstVisibleLine.extend"
},
"c": {
"text": "extend to the middle displayed line",
"command": "dance.goto.middleVisibleLine.extend"
},
"b": {
"text": "extend to the last displayed line",
"command": "dance.goto.lastVisibleLine.extend"
},
"f": {
"text": "extend to file whose name is selected",
"command": "dance.goto.selectedFile.extend"
},
".": {
"text": "extend to last buffer modification position",
"command": "dance.goto.lastModification.extend"
}
}
}
}
}
}
},
"commands": [
{
"command": "dance.toggle",
"title": "Toggle",
"description": "Toggles Dance key bindings.",
"category": "Dance"
},
{
"command": "dance.set.normal",
"title": "Set mode to Normal",
"description": "Set Dance mode to Normal.",
"category": "Dance"
},
{
"command": "dance.set.insert",
"title": "Set mode to Insert",
"description": "Set Dance mode to Insert.",
"category": "Dance"
},
{
"command": "dance.tmp.normal",
"title": "Temporary normal mode",
"description": "Switches to normal mode temporarily.",
"category": "Dance"
},
{
"command": "dance.tmp.insert",
"title": "Temporary insert mode",
"description": "Switches to insert mode temporarily.",
"category": "Dance"
},
{
"command": "dance.insert.before",
"title": "Insert before",
"description": "Start insert before the current selections.",
"category": "Dance"
},
{
"command": "dance.insert.after",
"title": "Insert after",
"description": "Start insert after the current selections.",
"category": "Dance"
},
{
"command": "dance.insert.lineStart",
"title": "Insert at line start",
"description": "Start insert at line start of each selection.",
"category": "Dance"
},
{
"command": "dance.insert.lineEnd",
"title": "Insert at line end",
"description": "Start insert at line end of each selection.",
"category": "Dance"
},
{
"command": "dance.insert.newLine.below",
"title": "Insert new line below",
"description": "Create new line and start insert below.",
"category": "Dance"
},
{
"command": "dance.insert.newLine.above",
"title": "Insert new line above",
"description": "Create new line and start insert above.",
"category": "Dance"
},
{
"command": "dance.newLine.below",
"title": "Add new line below",
"description": "Add a new line below, without entering insert mode.",
"category": "Dance"
},
{
"command": "dance.newLine.above",
"title": "Add new line above",
"description": "Add a new line above, without entering insert mode.",
"category": "Dance"
},
{
"command": "dance.repeat.insert",
"title": "Repeat last insert-mode change",
"description": "Repeat last insert-mode change.",
"category": "Dance"
},
{
"command": "dance.repeat.objectOrSelectTo",
"title": "Repeat last object select / character find",
"description": "Repeat last object select / character find.",
"category": "Dance"
},
{
"command": "dance.left",
"title": "Move left",
"description": "Move left.",
"category": "Dance"
},
{
"command": "dance.right",
"title": "Move right",
"description": "Move right.",
"category": "Dance"
},
{
"command": "dance.up",
"title": "Move up",
"description": "Move up.",
"category": "Dance"
},
{
"command": "dance.down",
"title": "Move down",
"description": "Move down.",
"category": "Dance"
},
{
"command": "dance.up.page",
"title": "Scroll one page up",
"description": "Scroll one page up.",
"category": "Dance"
},
{
"command": "dance.down.page",
"title": "Scroll one page down",
"description": "Scroll one page down.",
"category": "Dance"
},
{
"command": "dance.up.halfPage",
"title": "Scroll half a page up",
"description": "Scroll half a page up.",
"category": "Dance"
},
{
"command": "dance.down.halfPage",
"title": "Scroll half a page down",
"description": "Scroll half a page down.",
"category": "Dance"
},
{
"command": "dance.select.to.included",
"title": "Select to",
"description": "Select to the next character pressed, including it.",
"category": "Dance"
},
{
"command": "dance.select.to.excluded",
"title": "Select until",
"description": "Select until the next character pressed, excluding it.",
"category": "Dance"
},
{
"command": "dance.select.buffer",
"title": "Select whole buffer",
"description": "Select whole buffer.",
"category": "Dance"
},
{
"command": "dance.select.line",
"title": "Select line",
"description": "Select line on which the end of each selection lies (or next line when end lies on an end-of-line).",
"category": "Dance"
},
{
"command": "dance.select.toLineBegin",
"title": "Select to line beginning",
"description": "Select to line beginning.",
"category": "Dance"
},
{
"command": "dance.select.toLineEnd",
"title": "Select to line end",
"description": "Select to line end.",
"category": "Dance"
},
{
"command": "dance.select.enclosing",
"title": "Select enclosing characters",
"description": "Select enclosing characters.",
"category": "Dance"
},
{
"command": "dance.expandLines",
"title": "Extend lines",
"description": "Extend selections to contain full lines (including end-of-lines).",
"category": "Dance"
},
{
"command": "dance.trimLines",
"title": "Trim lines",
"description": "Trim selections to only contain full lines (from start to line break).",
"category": "Dance"
},
{
"command": "dance.trimSelections",
"title": "Trim selections",
"description": "Trim whitespace at beginning and end of selections.",
"category": "Dance"
},
{
"command": "dance.select.word",
"title": "Select to next word start",
"description": "Select the word and following whitespaces on the right of the end of each selection.",
"category": "Dance"
},
{
"command": "dance.select.word.previous",
"title": "Select to previous word start",
"description": "Select preceding whitespaces and the word on the left of the end of each selection.",
"category": "Dance"
},
{
"command": "dance.select.word.end",
"title": "Select to next word end",
"description": "Select preceding whitespaces and the word on the right of the end of each selection.",
"category": "Dance"
},
{
"command": "dance.select.word.alt",
"title": "Select to next non-whitespace word start",
"description": "Select the non-whitespace word and following whitespaces on the right of the end of each selection.",
"category": "Dance"
},
{
"command": "dance.select.word.alt.previous",
"title": "Select to previous non-whitespace word start",
"description": "Select preceding whitespaces and the non-whitespace word on the left of the end of each selection.",
"category": "Dance"
},
{
"command": "dance.select.word.alt.end",
"title": "Select to next non-whitespace word end",
"description": "Select preceding whitespaces and the non-whitespace word on the right of the end of each selection.",
"category": "Dance"
},
{
"command": "dance.select",
"title": "Select",
"description": "Select within current selections according to a RegExp.",
"category": "Dance"
},
{
"command": "dance.split",
"title": "Split",
"description": "Split within current selections according to a RegExp.",
"category": "Dance"
},
{
"command": "dance.split.lines",
"title": "Split lines",
"description": "Split selections into lines.",
"category": "Dance"
},
{
"command": "dance.select.firstLast",
"title": "Select first and last characters",
"description": "Select first and last characters of each selection.",
"category": "Dance"
},
{
"command": "dance.select.copy",
"title": "Copy selection to next line",
"description": "Copy selection to next line.",
"category": "Dance"
},
{
"command": "dance.select.copy.backwards",
"title": "Copy selection to previous line",
"description": "Copy selection to previous line.",
"category": "Dance"
},
{
"command": "dance.selections.reduce",
"title": "Reduce selections",
"description": "Reduce selections to their cursor.",
"category": "Dance"
},
{
"command": "dance.selections.flip",
"title": "Flip selections",
"description": "Flip the direction of each selection.",
"category": "Dance"
},
{
"command": "dance.selections.forward",
"title": "Forward selections",
"description": "Ensure selections are in forward direction (the active cursor is after the anchor).",
"category": "Dance"
},
{
"command": "dance.selections.backward",
"title": "Backward selections",
"description": "Ensure selections are in backward direction (the active cursor is before the anchor).",
"category": "Dance"
},
{
"command": "dance.selections.clear",
"title": "Clear selections",
"description": "Clear selections (except main)",
"category": "Dance"
},
{
"command": "dance.selections.clearMain",
"title": "Clear main selection",
"description": "Clear main selection.",
"category": "Dance"
},
{
"command": "dance.selections.keepMatching",
"title": "Keep matching selections",
"description": "Keep selections that match a RegExp.",
"category": "Dance"
},
{
"command": "dance.selections.clearMatching",
"title": "Clear matching selections",
"description": "Clear selections that match a RegExp.",
"category": "Dance"
},
{
"command": "dance.selections.merge",
"title": "Merge contiguous selections",
"description": "Merge contiguous selections together, including across lines.",
"category": "Dance"
},
{
"command": "dance.selections.align",
"title": "Align selections",
"description": "Align selections, aligning the cursor of each selection by inserting spaces before the first character of each selection.",
"category": "Dance"
},
{
"command": "dance.selections.align.copy",
"title": "Copy indentation",
"description": "Copy the indentation of the main selection (or the count one if a count is given) to all other ones.",
"category": "Dance"
},
{
"command": "dance.delete.yank",
"title": "Yank and delete",
"description": "Yank and delete selections.",
"category": "Dance"
},
{
"command": "dance.delete.insert.yank",
"title": "Yank, delete and insert",
"description": "Yank, delete and enter insert mode.",
"category": "Dance"
},
{
"command": "dance.delete.noYank",
"title": "Delete without yank",
"description": "Delete selections without yanking.",
"category": "Dance"
},
{
"command": "dance.delete.insert.noYank",
"title": "Delete and insert without yank",
"description": "Delete selections without yanking and enter insert mode.",
"category": "Dance"
},
{
"command": "dance.yank",
"title": "Yank",
"description": "Yank selections.",
"category": "Dance"
},
{
"command": "dance.paste.after",
"title": "Paste after",
"description": "Paste after the end of each selection.",
"category": "Dance"
},
{
"command": "dance.paste.before",
"title": "Paste before",
"description": "Paste before the start of each selection.",
"category": "Dance"
},
{
"command": "dance.paste.select.after",
"title": "Paste after and select",
"description": "Paste after the end of each selection and select pasted text.",
"category": "Dance"
},
{
"command": "dance.paste.select.before",
"title": "Paste before and select",
"description": "Paste before the start of each selection and select pasted text.",
"category": "Dance"
},
{
"command": "dance.paste.replace",
"title": "Replace",
"description": "Replace selections with yanked text.",
"category": "Dance"
},
{
"command": "dance.paste.replace.every",
"title": "Replace with every",
"description": "Replace selections with every yanked text.",
"category": "Dance"
},
{
"command": "dance.replace.characters",
"title": "Replace character",
"description": "Replace each selected character with the next entered one.",
"category": "Dance"
},
{
"command": "dance.join",
"title": "Join lines",
"description": "Join selected lines.",
"category": "Dance"
},
{
"command": "dance.join.select",
"title": "Join lines and select spaces",
"description": "Join selected lines and select spaces inserted in place of line breaks.",
"category": "Dance"
},
{
"command": "dance.indent",
"title": "Indent",
"description": "Indent selected lines.",
"category": "Dance"
},
{
"command": "dance.indent.withEmpty",
"title": "Indent (including empty)",
"description": "Indent selected lines (including empty lines).",
"category": "Dance"
},
{
"command": "dance.deindent",
"title": "Deindent",
"description": "Deindent selected lines.",
"category": "Dance"
},
{
"command": "dance.deindent.further",
"title": "Deindent (including incomplete indent)",
"description": "Deindent selected lines (and remove additional incomplete indent).",
"category": "Dance"
},
{
"command": "dance.toLowerCase",
"title": "Transform to lowercase",
"description": "Transform to lowercase.",
"category": "Dance"
},
{
"command": "dance.toUpperCase",
"title": "Transform to uppercase",
"description": "Transform to uppercase.",
"category": "Dance"
},
{
"command": "dance.swapCase",
"title": "Swap case",
"description": "Swap case.",
"category": "Dance"
},
{
"command": "dance.pipe.filter",
"title": "Filter through pipe",
"description": "Pipe each selection to a program, and keeps it if the program returns 0.",
"category": "Dance"
},
{
"command": "dance.pipe.replace",
"title": "Pipe and replace",
"description": "Pipe each selection to a command, and replaces it with its output.",
"category": "Dance"
},
{
"command": "dance.pipe.ignore",
"title": "Pipe",
"description": "Pipe each selection to a command, ignoring their results.",
"category": "Dance"
},
{
"command": "dance.pipe.append",
"title": "Pipe and append",
"description": "Pipe each selection to a command, appending the output after the selection.",
"category": "Dance"
},
{
"command": "dance.pipe.prepend",
"title": "Pipe and prepend",
"description": "Pipe each selection to a command, prepending the output before the selection.",
"category": "Dance"
},
{
"command": "dance.history.undo",
"title": "Undo",
"description": "Undo.",
"category": "Dance"
},
{
"command": "dance.history.backward",
"title": "Move backward in history",
"description": "Move backward in history.",
"category": "Dance"
},
{
"command": "dance.history.redo",
"title": "Redo",
"description": "Redo.",
"category": "Dance"
},
{
"command": "dance.history.forward",
"title": "Move forward in history",
"description": "Move forward in history.",
"category": "Dance"
},
{
"command": "dance.history.repeat",
"title": "Repeat last change",
"description": "Repeat last change.",
"category": "Dance"
},
{
"command": "dance.history.repeat.selection",
"title": "Repeat last selection change",
"description": "Repeat last selection change.",
"category": "Dance"
},
{
"command": "dance.history.repeat.edit",
"title": "Repeat last edit change",
"description": "Repeat last edit change.",
"category": "Dance"
},
{