-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
package.json
1248 lines (1248 loc) · 44.4 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": "vim",
"displayName": "Vim",
"description": "Vim emulation for Visual Studio Code",
"icon": "images/icon.png",
"version": "1.28.1",
"publisher": "vscodevim",
"galleryBanner": {
"color": "#e3f4ff",
"theme": "light"
},
"license": "MIT",
"keywords": [
"vim",
"vi",
"vscodevim"
],
"repository": {
"type": "git",
"url": "https://github.com/VSCodeVim/Vim.git"
},
"homepage": "https://github.com/VSCodeVim/Vim",
"bugs": {
"url": "https://github.com/VSCodeVim/Vim/issues"
},
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other",
"Keymaps"
],
"extensionKind": [
"ui"
],
"sideEffects": false,
"activationEvents": [
"onStartupFinished",
"onCommand:type"
],
"qna": "https://vscodevim.herokuapp.com/",
"main": "./out/extension",
"browser": "./out/extensionWeb",
"capabilities": {
"untrustedWorkspaces": {
"supported": true
},
"virtualWorkspaces": true
},
"contributes": {
"commands": [
{
"command": "toggleVim",
"title": "Vim: Toggle Vim Mode"
},
{
"command": "vim.showQuickpickCmdLine",
"title": "Vim: Show Command Line"
},
{
"command": "vim.editVimrc",
"enablement": "!isWeb",
"title": "Vim: Edit .vimrc"
}
],
"keybindings": [
{
"key": "Escape",
"command": "extension.vim_escape",
"when": "editorTextFocus && vim.active && !inDebugRepl"
},
{
"key": "Escape",
"command": "notebook.cell.quitEdit",
"when": "inputFocus && notebookEditorFocused && !editorHasSelection && !editorHoverVisible && vim.active && vim.mode == 'Normal'"
},
{
"key": "Home",
"command": "extension.vim_home",
"when": "editorTextFocus && vim.active && !inDebugRepl && vim.mode != 'Insert'"
},
{
"key": "ctrl+home",
"command": "extension.vim_ctrl+home",
"when": "editorTextFocus && vim.active && !inDebugRepl && vim.mode != 'Insert'"
},
{
"key": "End",
"command": "extension.vim_end",
"when": "editorTextFocus && vim.active && !inDebugRepl && vim.mode != 'Insert'"
},
{
"key": "ctrl+end",
"command": "extension.vim_ctrl+end",
"when": "editorTextFocus && vim.active && !inDebugRepl && vim.mode != 'Insert'"
},
{
"key": "Insert",
"command": "extension.vim_insert",
"when": "editorTextFocus && vim.active && !inDebugRepl"
},
{
"key": "Backspace",
"command": "extension.vim_backspace",
"when": "editorTextFocus && vim.active && !inDebugRepl"
},
{
"key": "Delete",
"command": "extension.vim_delete",
"when": "editorTextFocus && vim.active && !inDebugRepl"
},
{
"key": "tab",
"command": "extension.vim_tab",
"when": "editorTextFocus && vim.active && vim.mode != 'Insert' && !inDebugRepl"
},
{
"key": "shift+tab",
"command": "extension.vim_shift+tab",
"when": "editorTextFocus && vim.active && vim.mode != 'Insert' && !inDebugRepl"
},
{
"key": "left",
"command": "extension.vim_left",
"when": "editorTextFocus && vim.active && !inDebugRepl"
},
{
"key": "right",
"command": "extension.vim_right",
"when": "editorTextFocus && vim.active && !inDebugRepl"
},
{
"key": "up",
"command": "extension.vim_up",
"when": "editorTextFocus && vim.active && !inDebugRepl && !suggestWidgetVisible && !parameterHintsVisible"
},
{
"key": "down",
"command": "extension.vim_down",
"when": "editorTextFocus && vim.active && !inDebugRepl && !suggestWidgetVisible && !parameterHintsVisible"
},
{
"key": "g g",
"command": "list.focusFirst",
"when": "listFocus && !inputFocus"
},
{
"key": "h",
"command": "list.collapse",
"when": "listFocus && !inputFocus"
},
{
"key": "j",
"command": "list.focusDown",
"when": "listFocus && !inputFocus"
},
{
"key": "k",
"command": "list.focusUp",
"when": "listFocus && !inputFocus"
},
{
"key": "l",
"command": "list.select",
"when": "listFocus && !inputFocus"
},
{
"key": "o",
"command": "list.toggleExpand",
"when": "listFocus && !inputFocus"
},
{
"key": "/",
"command": "list.toggleKeyboardNavigation",
"when": "listFocus && !inputFocus && listSupportsKeyboardNavigation"
},
{
"key": "ctrl+a",
"command": "extension.vim_ctrl+a",
"when": "editorTextFocus && vim.active && vim.use<C-a> && !inDebugRepl"
},
{
"key": "ctrl+b",
"command": "extension.vim_ctrl+b",
"when": "editorTextFocus && vim.active && vim.use<C-b> && vim.mode != 'Insert' && !inDebugRepl"
},
{
"key": "ctrl+c",
"command": "extension.vim_ctrl+c",
"when": "editorTextFocus && vim.active && vim.use<C-c> && !inDebugRepl && vim.overrideCtrlC"
},
{
"key": "ctrl+d",
"command": "extension.vim_ctrl+d",
"when": "editorTextFocus && vim.active && vim.use<C-d> && !inDebugRepl"
},
{
"key": "ctrl+d",
"command": "list.focusPageDown",
"when": "listFocus && !inputFocus"
},
{
"key": "ctrl+e",
"command": "extension.vim_ctrl+e",
"when": "editorTextFocus && vim.active && vim.use<C-e> && !inDebugRepl"
},
{
"key": "ctrl+f",
"command": "extension.vim_ctrl+f",
"when": "editorTextFocus && vim.active && vim.use<C-f> && vim.mode != 'Insert' && !inDebugRepl"
},
{
"key": "ctrl+g",
"command": "extension.vim_ctrl+g",
"when": "editorTextFocus && vim.active && vim.use<C-g> && !inDebugRepl"
},
{
"key": "ctrl+h",
"command": "extension.vim_ctrl+h",
"when": "editorTextFocus && vim.active && vim.use<C-h> && !inDebugRepl"
},
{
"key": "ctrl+i",
"command": "extension.vim_ctrl+i",
"when": "editorTextFocus && vim.active && vim.use<C-i> && !inDebugRepl"
},
{
"key": "ctrl+j",
"command": "extension.vim_ctrl+j",
"when": "editorTextFocus && vim.active && vim.use<C-j> && !inDebugRepl"
},
{
"key": "ctrl+k",
"command": "extension.vim_ctrl+k",
"when": "editorTextFocus && vim.active && vim.use<C-k> && !inDebugRepl"
},
{
"key": "ctrl+l",
"command": "extension.vim_navigateCtrlL",
"when": "editorTextFocus && vim.active && vim.use<C-l> && !inDebugRepl"
},
{
"key": "ctrl+m",
"command": "extension.vim_ctrl+m",
"when": "editorTextFocus && vim.active && vim.use<C-m> && !inDebugRepl || vim.mode == 'CommandlineInProgress' && vim.active && vim.use<C-m> && !inDebugRepl || vim.mode == 'SearchInProgressMode' && vim.active && vim.use<C-m> && !inDebugRepl"
},
{
"key": "ctrl+n",
"command": "extension.vim_ctrl+n",
"when": "editorTextFocus && vim.active && vim.use<C-n> && !inDebugRepl || vim.mode == 'CommandlineInProgress' && vim.active && vim.use<C-n> && !inDebugRepl || vim.mode == 'SearchInProgressMode' && vim.active && vim.use<C-n> && !inDebugRepl"
},
{
"key": "ctrl+o",
"command": "extension.vim_ctrl+o",
"when": "editorTextFocus && vim.active && vim.use<C-o> && !inDebugRepl"
},
{
"key": "ctrl+p",
"command": "extension.vim_ctrl+p",
"when": "editorTextFocus && vim.active && vim.use<C-p> && !inDebugRepl || vim.mode == 'CommandlineInProgress' && vim.active && vim.use<C-p> && !inDebugRepl || vim.mode == 'SearchInProgressMode' && vim.active && vim.use<C-p> && !inDebugRepl"
},
{
"key": "ctrl+q",
"command": "extension.vim_winCtrlQ",
"when": "editorTextFocus && vim.active && vim.use<C-q> && !inDebugRepl"
},
{
"key": "ctrl+r",
"command": "extension.vim_ctrl+r",
"when": "editorTextFocus && vim.active && vim.use<C-r> && !inDebugRepl"
},
{
"key": "ctrl+s",
"command": "extension.vim_ctrl+s",
"when": "editorTextFocus && vim.active && vim.use<C-s> && !inDebugRepl"
},
{
"key": "ctrl+t",
"command": "extension.vim_ctrl+t",
"when": "editorTextFocus && vim.active && vim.use<C-t> && !inDebugRepl"
},
{
"key": "ctrl+u",
"command": "extension.vim_ctrl+u",
"when": "editorTextFocus && vim.active && vim.use<C-u> && !inDebugRepl"
},
{
"key": "ctrl+u",
"command": "list.focusPageUp",
"when": "listFocus && !inputFocus"
},
{
"key": "ctrl+v",
"command": "extension.vim_ctrl+v",
"when": "editorTextFocus && vim.active && vim.use<C-v> && !inDebugRepl"
},
{
"key": "ctrl+w",
"command": "extension.vim_ctrl+w",
"when": "editorTextFocus && vim.active && vim.use<C-w> && !inDebugRepl"
},
{
"key": "ctrl+x",
"command": "extension.vim_ctrl+x",
"when": "editorTextFocus && vim.active && vim.use<C-x> && !inDebugRepl"
},
{
"key": "ctrl+y",
"command": "extension.vim_ctrl+y",
"when": "editorTextFocus && vim.active && vim.use<C-y> && !inDebugRepl"
},
{
"key": "ctrl+z",
"command": "extension.vim_ctrl+z",
"when": "editorTextFocus && vim.active && vim.use<C-z> && !inDebugRepl"
},
{
"key": "ctrl+6",
"command": "extension.vim_ctrl+6",
"when": "editorTextFocus && vim.active && vim.use<C-6> && !inDebugRepl"
},
{
"key": "ctrl+^",
"command": "extension.vim_ctrl+^",
"when": "editorTextFocus && vim.active && vim.use<C-^> && !inDebugRepl"
},
{
"key": "ctrl+[",
"command": "extension.vim_ctrl+[",
"when": "editorTextFocus && vim.active && vim.use<C-[> && !inDebugRepl"
},
{
"key": "ctrl+]",
"command": "extension.vim_ctrl+]",
"when": "editorTextFocus && vim.active && vim.use<C-]> && !inDebugRepl"
},
{
"key": "ctrl+shift+2",
"command": "extension.vim_ctrl+shift+2",
"when": "editorTextFocus && vim.active && vim.use<C-shift+2>"
},
{
"key": "ctrl+up",
"command": "extension.vim_ctrl+up",
"when": "editorTextFocus && vim.active && vim.mode != 'Insert' && !inDebugRepl"
},
{
"key": "ctrl+down",
"command": "extension.vim_ctrl+down",
"when": "editorTextFocus && vim.active && vim.mode != 'Insert' && !inDebugRepl"
},
{
"key": "ctrl+left",
"command": "extension.vim_ctrl+left",
"when": "editorTextFocus && vim.active && vim.mode != 'Insert' && !inDebugRepl"
},
{
"key": "ctrl+right",
"command": "extension.vim_ctrl+right",
"when": "editorTextFocus && vim.active && vim.mode != 'Insert' && !inDebugRepl"
},
{
"key": "ctrl+pagedown",
"command": "extension.vim_ctrl+pagedown",
"when": "editorTextFocus && vim.active && vim.use<C-pagedown> && !inDebugRepl"
},
{
"key": "ctrl+pageup",
"command": "extension.vim_ctrl+pageup",
"when": "editorTextFocus && vim.active && vim.use<C-pageup> && !inDebugRepl"
},
{
"key": "ctrl+space",
"command": "extension.vim_ctrl+space",
"when": "editorTextFocus && vim.active && vim.use<C-space> && !inDebugRepl && vim.mode != 'Insert'"
},
{
"key": "shift+G",
"command": "list.focusLast",
"when": "listFocus && !inputFocus"
},
{
"key": "ctrl+backspace",
"command": "extension.vim_ctrl+backspace",
"when": "editorTextFocus && vim.active && vim.use<C-BS> && vim.mode != 'Insert' && !inDebugRepl"
},
{
"key": "shift+backspace",
"command": "extension.vim_shift+backspace",
"when": "editorTextFocus && vim.active && vim.use<S-BS> && vim.mode != 'Insert' && !inDebugRepl"
},
{
"key": "cmd+left",
"command": "extension.vim_cmd+left",
"when": "editorTextFocus && vim.active && vim.use<D-left> && !inDebugRepl && vim.mode != 'Insert'"
},
{
"key": "cmd+right",
"command": "extension.vim_cmd+right",
"when": "editorTextFocus && vim.active && vim.use<D-right> && !inDebugRepl && vim.mode != 'Insert'"
},
{
"key": "cmd+a",
"command": "extension.vim_cmd+a",
"when": "editorTextFocus && vim.active && vim.use<D-a> && !inDebugRepl && vim.mode != 'Insert'"
},
{
"key": "cmd+c",
"command": "extension.vim_cmd+c",
"when": "editorTextFocus && vim.active && vim.use<D-c> && vim.overrideCopy && !inDebugRepl"
},
{
"key": "cmd+d",
"command": "extension.vim_cmd+d",
"when": "editorTextFocus && vim.active && vim.use<D-d> && !inDebugRepl"
},
{
"key": "cmd+v",
"command": "extension.vim_cmd+v",
"when": "editorTextFocus && vim.active && vim.use<D-v> && vim.mode == 'CommandlineInProgress' && !inDebugRepl || editorTextFocus && vim.active && vim.use<D-v> && vim.mode == 'SearchInProgressMode' && !inDebugRepl"
},
{
"key": "ctrl+alt+down",
"linux": "shift+alt+down",
"mac": "cmd+alt+down",
"command": "extension.vim_cmd+alt+down",
"when": "editorTextFocus && vim.active && !inDebugRepl"
},
{
"key": "ctrl+alt+up",
"linux": "shift+alt+up",
"mac": "cmd+alt+up",
"command": "extension.vim_cmd+alt+up",
"when": "editorTextFocus && vim.active && !inDebugRepl"
},
{
"key": "j",
"command": "notebook.focusNextEditor",
"when": "vim.mode == 'Normal' && editorTextFocus && inputFocus && notebookEditorFocused && notebookEditorCursorAtBoundary != 'none' && notebookEditorCursorAtBoundary != 'top'"
},
{
"key": "k",
"command": "notebook.focusPreviousEditor",
"when": "vim.mode == 'Normal' && editorTextFocus && inputFocus && notebookEditorFocused && notebookEditorCursorAtBoundary != 'bottom' && notebookEditorCursorAtBoundary != 'none'"
}
],
"configuration": {
"title": "Vim",
"type": "object",
"properties": {
"vim.normalModeKeyBindings": {
"type": "array",
"markdownDescription": "Remapped keys in Normal mode. Allows mapping to Vim commands or VS Code actions. See [README](https://github.com/VSCodeVim/Vim/#key-remapping) for details.",
"scope": "application"
},
"vim.normalModeKeyBindingsNonRecursive": {
"type": "array",
"markdownDescription": "Non-recursive remapped keys in Normal mode. Allows mapping to Vim commands or VS Code actions. See [README](https://github.com/VSCodeVim/Vim/#key-remapping) for details.",
"scope": "application"
},
"vim.operatorPendingModeKeyBindings": {
"type": "array",
"markdownDescription": "Remapped keys in OperatorPending mode. Allows mapping to Vim commands or VS Code actions. See [README](https://github.com/VSCodeVim/Vim/#key-remapping) for details.",
"scope": "application"
},
"vim.operatorPendingModeKeyBindingsNonRecursive": {
"type": "array",
"markdownDescription": "Non-recursive remapped keys in OperatorPending mode. Allows mapping to Vim commands or VS Code actions. See [README](https://github.com/VSCodeVim/Vim/#key-remapping) for details.",
"scope": "application"
},
"vim.useCtrlKeys": {
"type": "boolean",
"markdownDescription": "Enable some Vim Ctrl key commands that override otherwise common operations, like `Ctrl+C`.",
"default": true
},
"vim.leader": {
"type": "string",
"markdownDescription": "What key should `<leader>` map to in remappings?",
"default": "\\"
},
"vim.searchHighlightColor": {
"type": "string",
"markdownDescription": "Background color of non-current search matches. The color must not be opaque so as not to hide underlying decorations. Uses `#editor.findMatchHighlightColor#` from current theme if undefined."
},
"vim.searchHighlightTextColor": {
"type": "string",
"markdownDescription": "Foreground color of non-current search matches."
},
"vim.searchMatchColor": {
"type": "string",
"markdownDescription": "Background color of the current match. Uses `#editor.findMatchColor#` from current theme if undefined."
},
"vim.searchMatchTextColor": {
"type": "string",
"markdownDescription": "Foreground color of the current match."
},
"vim.substitutionColor": {
"type": "string",
"markdownDescription": "Background color of substituted text when `#editor.inccommand#` is enabled. Uses `#editor.findMatchColor#` from current theme if undefined."
},
"vim.substitutionTextColor": {
"type": "string",
"markdownDescription": "Foreground color of substituted text when `#editor.inccommand#` is enabled."
},
"vim.highlightedyank.enable": {
"type": "boolean",
"description": "Enable highlighting when yanking.",
"default": false
},
"vim.highlightedyank.color": {
"type": "string",
"description": "Background color of yanked text. The color must not be opaque so as not to hide underlying decorations.",
"default": "rgba(250, 240, 170, 0.5)"
},
"vim.highlightedyank.textColor": {
"type": "string",
"description": "Foreground color of yanked text."
},
"vim.highlightedyank.duration": {
"type": "number",
"description": "Duration in milliseconds of the yank highlight.",
"default": 200,
"minimum": 1
},
"vim.useSystemClipboard": {
"type": "boolean",
"description": "Use system clipboard for unnamed register.",
"default": false
},
"vim.overrideCopy": {
"type": "boolean",
"description": "Override VS Code's copy command with our own copy command, which works better with VSCodeVim. Turn this off if copying is not working.",
"default": true
},
"vim.insertModeKeyBindings": {
"type": "array",
"markdownDescription": "Remapped keys in Insert mode. Allows mapping to Vim commands or VS Code actions. See [README](https://github.com/VSCodeVim/Vim/#key-remapping) for details.",
"scope": "application"
},
"vim.insertModeKeyBindingsNonRecursive": {
"type": "array",
"markdownDescription": "Non-recursive keybinding overrides to use for Insert mode. Allows mapping to Vim commands or VS Code actions. See [README](https://github.com/VSCodeVim/Vim/#key-remapping) for details.",
"scope": "application"
},
"vim.visualModeKeyBindings": {
"type": "array",
"markdownDescription": "Remapped keys in Visual mode. Allows mapping to Vim commands or VS Code actions. See [README](https://github.com/VSCodeVim/Vim/#key-remapping) for details.",
"scope": "application"
},
"vim.visualModeKeyBindingsNonRecursive": {
"type": "array",
"markdownDescription": "Non-recursive keybinding overrides to use for Visual mode. Allows mapping to Vim commands or VS Code actions. See [README](https://github.com/VSCodeVim/Vim/#key-remapping) for details.",
"scope": "application"
},
"vim.commandLineModeKeyBindings": {
"type": "array",
"markdownDescription": "Remapped keys in command line mode. Allows mapping to Vim commands or VS Code actions. See [README](https://github.com/VSCodeVim/Vim/#key-remapping) for details.",
"scope": "application"
},
"vim.commandLineModeKeyBindingsNonRecursive": {
"type": "array",
"markdownDescription": "Non-recursive keybinding overrides to use for command line mode. Allows mapping to Vim commands or VS Code actions. See [README](https://github.com/VSCodeVim/Vim/#key-remapping) for details.",
"scope": "application"
},
"vim.textwidth": {
"type": "number",
"markdownDescription": "Width to word-wrap to when using `gq`.",
"default": 80,
"scope": "language-overridable",
"minimum": 1
},
"vim.timeout": {
"type": "number",
"description": "Timeout in milliseconds for remapped commands.",
"default": 1000,
"minimum": 0
},
"vim.maxmapdepth": {
"type": "number",
"description": "Maximum number of times a mapping is done without resulting in a character to be used.",
"default": 1000,
"minimum": 0
},
"vim.scroll": {
"type": "number",
"markdownDescription": "Number of lines to scroll with `Ctrl-U` and `Ctrl-D` commands. Set to 0 to use a half page scroll.",
"default": 0,
"minimum": 0
},
"vim.showcmd": {
"type": "boolean",
"description": "Show the text of any command you are in the middle of writing.",
"default": true
},
"vim.showmodename": {
"type": "boolean",
"description": "Show the name of the current mode in the statusbar.",
"default": true
},
"vim.iskeyword": {
"type": "string",
"markdownDescription": "Keywords contain alphanumeric characters and '_'. If not configured, `#editor.wordSeparators#` is used."
},
"vim.ignorecase": {
"type": "boolean",
"description": "Ignore case in search patterns.",
"default": true
},
"vim.smartcase": {
"type": "boolean",
"markdownDescription": "Override the `ignorecase` option if the search pattern contains upper case characters.",
"default": true
},
"vim.matchpairs": {
"type": "string",
"markdownDescription": "Characters that form pairs. The % command jumps from one to the other. Only character pairs are allowed that are different, thus you cannot jump between two double quotes. The characters must be separated by a colon. The pairs must be separated by a comma.",
"default": "(:),{:},[:]",
"pattern": "^(.:.)?(,.:.)*$"
},
"vim.camelCaseMotion.enable": {
"type": "boolean",
"markdownDescription": "Enable the [CamelCaseMotion](https://github.com/bkad/CamelCaseMotion) plugin for Vim.",
"default": false
},
"vim.easymotion": {
"type": "boolean",
"markdownDescription": "Enable the [EasyMotion](https://github.com/easymotion/vim-easymotion) plugin for Vim.",
"default": false
},
"vim.easymotionMarkerBackgroundColor": {
"type": "string",
"default": "#0000",
"description": "Set a custom background color for EasyMotion markers."
},
"vim.easymotionMarkerForegroundColorOneChar": {
"type": "string",
"default": "#ff0000",
"description": "Set a custom color for the text on one character long markers."
},
"vim.easymotionMarkerForegroundColorTwoCharFirst": {
"type": "string",
"default": "#ffb400",
"description": "Set a custom color for the first character on two character long markers."
},
"vim.easymotionMarkerForegroundColorTwoCharSecond": {
"type": "string",
"default": "#b98300",
"description": "Set a custom color for the second character on two character long markers."
},
"vim.easymotionIncSearchForegroundColor": {
"type": "string",
"default": "#7fbf00",
"markdownDescription": "Set a custom color for the easymotion search n-character (default `<leader><leader>/`)."
},
"vim.easymotionDimColor": {
"type": "string",
"default": "#777777",
"markdownDescription": "Set a custom color for the easymotion dimmed characters when `#vim.easymotionDimBackground#` is set to true."
},
"vim.easymotionDimBackground": {
"type": "boolean",
"description": "Whether to dim other text while markers are visible.",
"default": true
},
"vim.easymotionMarkerFontWeight": {
"type": "string",
"description": "Set the font weight of the marker text.",
"default": "bold"
},
"vim.easymotionKeys": {
"type": "string",
"description": "Set the characters used for jump marker name.",
"default": "hklyuiopnm,qwertzxcvbasdgjf;"
},
"vim.easymotionJumpToAnywhereRegex": {
"type": "string",
"description": "Regex matches for JumpToAnywhere motion.",
"default": "\\b[A-Za-z0-9]|[A-Za-z0-9]\\b|_.|#.|[a-z][A-Z]"
},
"vim.replaceWithRegister": {
"type": "boolean",
"markdownDescription": "Enable the [ReplaceWithRegister](https://github.com/vim-scripts/ReplaceWithRegister) plugin for Vim.",
"default": false
},
"vim.smartRelativeLine": {
"type": "boolean",
"markdownDescription": "`#editor.lineNumbers#` is determined by the active Vim mode, absolute when in insert mode, relative otherwise.",
"default": false
},
"vim.targets.enable": {
"type": "boolean",
"markdownDescription": "Enable [targets.vim](https://github.com/wellle/targets.vim#quote-text-objects) plugin (not fully implemented yet).",
"default": false
},
"vim.targets.bracketObjects.enable": {
"type": "boolean",
"markdownDescription": "Enable last/next movements for bracket objects.",
"default": true
},
"vim.targets.smartQuotes.enable": {
"type": "boolean",
"markdownDescription": "Enable the smart quotes movements from [targets.vim](https://github.com/wellle/targets.vim#quote-text-objects).",
"default": true
},
"vim.targets.smartQuotes.breakThroughLines": {
"type": "boolean",
"markdownDescription": "Whether to break through lines when using [n]ext/[l]ast motion, see [targets.vim#next-and-last-quote](https://github.com/wellle/targets.vim#next-and-last-quote).",
"default": true
},
"vim.targets.smartQuotes.aIncludesSurroundingSpaces": {
"type": "boolean",
"markdownDescription": "Whether to use default Vim behavior when using `a` (e.g. `da'`) which include surrounding spaces, or not, as for other text objects.",
"default": true
},
"vim.sneak": {
"type": "boolean",
"markdownDescription": "Enable the [Sneak](https://github.com/justinmk/vim-sneak) plugin for Vim.",
"default": false
},
"vim.sneakUseIgnorecaseAndSmartcase": {
"type": "boolean",
"markdownDescription": "Case sensitivity is determined by `#vim.ignorecase#` and `#vim.smartcase#`.",
"default": false
},
"vim.sneakReplacesF": {
"type": "boolean",
"markdownDescription": "Use single-character [Sneak](https://github.com/justinmk/vim-sneak) instead of Vim's native `f`.",
"default": false
},
"vim.surround": {
"type": "boolean",
"markdownDescription": "Enable the [Surround](https://github.com/tpope/vim-surround) plugin for Vim.",
"default": true
},
"vim.argumentObjectSeparators": {
"type": "array",
"items": {
"type": "string"
},
"markdownDescription": "Set separators for the argument text object.",
"default": [
","
]
},
"vim.argumentObjectOpeningDelimiters": {
"type": "array",
"items": {
"type": "string"
},
"markdownDescription": "Set opening delimiters for the argument text object.",
"default": [
"(",
"["
]
},
"vim.argumentObjectClosingDelimiters": {
"type": "array",
"items": {
"type": "string"
},
"markdownDescription": "Set closing delimiters for the argument text object.",
"default": [
")",
"]"
]
},
"vim.hlsearch": {
"type": "boolean",
"description": "Show all matches of the most recent search pattern.",
"default": false
},
"vim.inccommand": {
"type": "string",
"markdownDescription": "Show the effects of the `:substitute` command as you type.",
"default": "replace",
"enum": [
"",
"append",
"replace"
],
"enumDescriptions": [
"Don't show substitutions",
"Show substitutions after matched text",
"Replace matched text with substitutions"
]
},
"vim.incsearch": {
"type": "boolean",
"markdownDescription": "Show where a `/` or `?` search matches as you type it.",
"default": true
},
"vim.history": {
"type": "number",
"description": "How much search or command history should be remembered.",
"default": 50,
"minimum": 1,
"maximum": 10000
},
"vim.autoindent": {
"type": "boolean",
"description": "Indent code automatically.",
"default": true
},
"vim.joinspaces": {
"type": "boolean",
"description": "Add two spaces after '.', '?', and '!' when joining or reformatting.",
"default": true
},
"vim.startInInsertMode": {
"type": "boolean",
"description": "Start in Insert mode."
},
"vim.handleKeys": {
"type": "object",
"description": "Delegate certain key combinations back to VS Code to be handled natively.",
"default": {
"<C-d>": true,
"<C-s>": false,
"<C-z>": false
}
},
"vim.statusBarColorControl": {
"type": "boolean",
"markdownDescription": "Allow VSCodeVim to change status bar color based on mode. **NOTE:** Using this feature will have a negative impact on performance.",
"default": false
},
"vim.statusBarColors.normal": {
"type": [
"string",
"array"
],
"description": "Status bar color when in Normal mode.",
"default": [
"#005f5f",
"#ffffff"
]
},
"vim.statusBarColors.insert": {
"type": [
"string",
"array"
],
"description": "Status bar color when in Insert mode.",
"default": [
"#5f0000",
"#ffffff"
]
},
"vim.statusBarColors.visual": {
"type": [
"string",
"array"
],
"description": "Status bar color when in Visual mode.",
"default": [
"#5f00af",
"#ffffff"
]
},
"vim.statusBarColors.visualline": {
"type": [
"string",
"array"
],
"description": "Status bar color when in VisualLine mode.",
"default": [
"#005f87",
"#ffffff"
]
},
"vim.statusBarColors.visualblock": {
"type": [
"string",
"array"
],
"description": "Status bar color when in VisualBlock mode.",
"default": [
"#86592d",
"#ffffff"
]
},
"vim.statusBarColors.replace": {
"type": [
"string",
"array"
],
"description": "Status bar color when in Replace mode.",
"default": [
"#00000",
"#ffffff"
]
},
"vim.statusBarColors.commandlineinprogress": {
"type": [
"string",
"array"
],
"description": "Status bar color when in CommandLineInProgress mode.",
"default": [
"#007acc",
"#ffffff"
]
},
"vim.statusBarColors.searchinprogressmode": {
"type": [
"string",
"array"
],
"description": "Status bar color when in SearchInProgress mode.",
"default": [
"#007acc",
"#ffffff"
]
},
"vim.statusBarColors.easymotionmode": {
"type": [
"string",
"array"
],
"description": "Status bar color when in EasyMotion mode.",
"default": [
"#007acc",
"#ffffff"
]
},
"vim.statusBarColors.easymotioninputmode": {
"type": [
"string",
"array"
],
"description": "Status bar color when in EasyMotionInput mode.",
"default": [
"#007acc",
"#ffffff"
]
},
"vim.statusBarColors.surroundinputmode": {
"type": [
"string",
"array"
],
"description": "Status bar color when in SurroundInput mode.",
"default": [
"#007acc",
"#ffffff"
]
},
"vim.visualstar": {
"type": "boolean",
"markdownDescription": "In Visual mode, start a search with `*` or `#` using the current selection.",
"default": false
},
"vim.changeWordIncludesWhitespace": {
"type": "boolean",
"description": "Includes trailing whitespace when changing word.",
"default": false
},
"vim.foldfix": {
"type": "boolean",
"description": "Uses a hack to move around folds properly.",
"default": false
},
"vim.mouseSelectionGoesIntoVisualMode": {
"type": "boolean",
"description": "If enabled, dragging with the mouse activates Visual mode.",
"default": true
},
"vim.disableExtension": {
"type": "boolean",
"description": "Disables the VSCodeVim extension. The extension will continue to be loaded and activated, but Vim functionality will be disabled.",
"default": false
},
"vim.enableNeovim": {
"type": "boolean",
"markdownDescription": "Use Neovim to execute Ex commands. You should restart VS Code after enabling/disabling this for the changes to take effect. **NOTE:** Neovim version 0.2.0 or greater must be installed, and if the executable is not on your PATH, `#vim.neovimPath#` must be set.",
"default": false
},
"vim.neovimPath": {
"type": "string",
"markdownDescription": "Path to Neovim executable. For example, `/usr/bin/nvim`, or `C:\\Program Files\\Neovim\\bin\\nvim.exe`.",
"default": "",
"scope": "machine"
},
"vim.neovimUseConfigFile": {
"type": "boolean",
"markdownDescription": "Use a config file for Neovim, specified by `#vim.neovimConfigPath#`.",
"default": false
},
"vim.neovimConfigPath": {
"type": "string",
"markdownDescription": "Path to Neovim configuration file. `#vim.neovimUseConfigFile#` must be enabled. If path is left blank, Neovim will use its default config path, i.e. `~/.config/nvim/init.vim` or 'C:\\Users\\USERNAME\\AppData\\Local\\nvim\\init.vim'.",
"default": "",
"scope": "machine"
},
"vim.vimrc.enable": {
"type": "boolean",
"markdownDescription": "Use key mappings from a `.vimrc` file.",
"default": false
},
"vim.vimrc.path": {