forked from BetterThanTomorrow/calva
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
1727 lines (1727 loc) · 75.3 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": "calva",
"displayName": "Calva: Clojure & ClojureScript Interactive Programming",
"description": "Integrated REPL, formatter, Paredit, and more. Powered by nREPL.",
"icon": "assets/calva.png",
"version": "2.0.123",
"publisher": "betterthantomorrow",
"author": {
"name": "Better Than Tomorrow",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/BetterThanTomorrow/calva.git"
},
"license": "MIT",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Programming Languages",
"Formatters",
"Linters",
"Debuggers",
"Other"
],
"keywords": [
"Clojure",
"ClojureScript",
"Cider",
"REPL",
"Formatting",
"Pretty",
"EDN",
"Interactive Programming",
"bracket",
"rainbow"
],
"galleryBanner": {
"color": "#EFEFEF",
"theme": "light"
},
"badges": [
{
"url": "https://img.shields.io/badge/clojurians-calva--dev-blue.svg?logo=slack",
"href": "https://clojurians.slack.com/messages/calva/",
"description": "Let's talk in the #calva channel at the Clojurians Slack"
}
],
"activationEvents": [
"onLanguage:clojure",
"onCommand:calva.jackIn",
"onCommand:calva.jackInOrConnect",
"onCommand:calva.connect",
"onCommand:calva.connectNonProjectREPL",
"workspaceContains:**/project.clj",
"workspaceContains:**/shadow-cljs.edn",
"workspaceContains:**/deps.edn",
"onDebugResolve:type"
],
"main": "./out/extension",
"extensionPack": [
"borkdude.clj-kondo"
],
"contributes": {
"debuggers": [
{
"type": "clojure",
"label": "Calva Debug",
"program": "./out/debugAdapter.js",
"runtime": "node"
}
],
"languages": [
{
"id": "clojure",
"aliases": [
"Clojure",
"clojure"
],
"extensions": [
".clj",
".cljs",
".cljc",
".cljx",
".clojure",
".edn",
".joke",
".boot",
".calva-repl"
]
}
],
"grammars": [
{
"language": "clojure",
"scopeName": "source.clojure",
"path": "./clojure.tmLanguage.json"
}
],
"configurationDefaults": {
"[clojure]": {
"editor.wordSeparators": "\t ()\"':,;~@#$%^&{}[]`",
"editor.autoClosingBrackets": "always",
"editor.autoClosingQuotes": "always",
"editor.formatOnType": true,
"editor.autoIndent": "full",
"editor.formatOnPaste": true,
"files.trimTrailingWhitespace": false,
"editor.matchBrackets": "never",
"editor.renderIndentGuides": false,
"editor.parameterHints.enabled": false
}
},
"configuration": [
{
"type": "object",
"title": "Calva",
"properties": {
"calva.prettyPrintingOptions": {
"type": "object",
"description": "Settings for Calva's pretty printing",
"properties": {
"enabled": {
"type": "boolean",
"description": "Should evaluations be pretty printed?"
},
"printEngine": {
"type": "string",
"description": "The print engine to use. 'calva' means that the nREPL server will first plain print it and then Calva will prettify. The other options will make the server use the chosen printer-function to print the result, and Calva will not reformat it.",
"enum": [
"calva",
"pprint",
"fipp",
"puget",
"zprint"
]
},
"width": {
"type": "number",
"description": "The width of the printing. Or line length... Hmmm, you get it, I hope."
},
"maxLength": {
"type": [
"number",
"null"
],
"description": "The maximum number of forms to print of each collection. For no limit, do not include this in your setting. See https://clojuredocs.org/clojure.core/*print-length*"
},
"maxDepth": {
"type": [
"number",
"null"
],
"description": "The maximum number of levels deep the printing will go in nested objects. For no limit, do not include this in your setting. Does not exist for `puget`. See also https://clojuredocs.org/clojure.core/*print-level*"
}
},
"required": [
"enabled",
"printEngine"
],
"default": {
"enabled": true,
"printEngine": "pprint",
"width": 120,
"maxLength": 50
}
},
"clojure.format.enable": {
"type": "boolean",
"default": true,
"description": "Enable/disable calva-fmt as Clojure formatter"
},
"calva.evalOnSave": {
"type": "boolean",
"default": false,
"description": "Run load-file when opening a new file and on file save"
},
"calva.testOnSave": {
"type": "boolean",
"default": false,
"description": "Run namespace tests on file save"
},
"calva.showDocstringInParameterHelp": {
"type": "boolean",
"default": false,
"description": "Show the docstring in the parameter hints"
},
"calva.statusColor": {
"type": "object",
"description": "Configuration for custom coloring of the statusbar.",
"properties": {
"disconnectedColor": {
"type": "string",
"default": "#c0c0c0",
"pattern": "#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})",
"description": "Foreground color for the disconnected status"
},
"launchingColor": {
"type": "string",
"default": "#fdd023",
"pattern": "#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})",
"description": "Foreground color for the launching status"
},
"connectedStatusColor": {
"type": "string",
"default": "#fdd023",
"pattern": "#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})",
"description": "Foreground color for the connected status"
},
"typeStatusColor": {
"type": "string",
"default": "#91dc47",
"pattern": "#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})",
"description": "Foreground color for the type status"
}
},
"default": {
"disconnectedColor": "#c0c0c0",
"launchingColor": "#fdd023",
"connectedStatusColor": "#fdd023",
"typeStatusColor": "#91dc47"
}
},
"calva.customCljsRepl": {
"deprecationMessage": "This settings is deprecated. Use `cljsType` in a `calva.replConnectSequences` item instead.",
"type": "object",
"default": null,
"description": "Configuration for custom any CLJS REPL type your project may use",
"$schema": "http://json-schema.org/draft-06/schema#",
"properties": {
"name": {
"type": "string",
"default": "My Custom CLJS REPL",
"description": "Name of your custom config (used in picker menus)"
},
"startCode": {
"type": "string",
"description": "Clojure code that starts the CLJS REPL"
},
"tellUserToStartRegExp": {
"type": "string",
"description": "When this pattern is matched in the stdout of the `startCode`, Calva will instruct the user to start the cljs app (so that Calva can connect)."
},
"printThisLineRegExp": {
"type": "string",
"description": "Any lines in the stdout of `startCode` matching this regexp will be printed to `Calva says`. One use for it is to help the user know how to start the cljs app."
},
"connectedRegExp": {
"type": "string",
"default": "To quit, type: :cljs/quit",
"description": "A pattern/string that Calva can look for in the stdout of the `startCode` to determine when the REPL is connected. (The default often works well)"
}
},
"required": [
"name",
"startCode",
"connectedRegExp"
]
},
"calva.jackInEnv": {
"type": "object",
"default": {},
"description": "Specifies any environment variables your project needs. (Probably mostly for your Workspace Settings.)"
},
"calva.openBrowserWhenFigwheelStarted": {
"type": "boolean",
"default": true,
"description": "(lein-figwheel only) Should Calva open the Figwheel app for you when Figwheel has been started?"
},
"calva.customREPLCommandSnippets": {
"type": "array",
"default": [],
"description": "Configuration for the command **Run Custom REPL Command**",
"$schema": "http://json-schema.org/draft-06/schema#",
"items": {
"title": "replCommand",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name this command so that it is easy to pick from the menu."
},
"snippet": {
"type": [
"string",
"array"
],
"description": "Command to send to the REPL"
},
"ns": {
"type": "string",
"description": "(optional) Namespace to evaluate the command in. If omitted the command will be executed in whatever namespace the output/REPL window has at the moment."
},
"repl": {
"type": "string",
"description": "Choose which REPL should the code should be evaluated in.",
"enum": [
"clj",
"cljs"
]
}
},
"required": [
"name",
"snippet",
"repl"
]
}
},
"calva.myLeinProfiles": {
"type": "array",
"description": "At Jack in, any profiles listed here will be added to the profiles found in the `project.clj` file.",
"items": {
"type": "string"
}
},
"calva.myCljAliases": {
"type": "array",
"description": "At Jack in, any aliases listed here will be added to the aliases found in the project's `deps.edn` file.",
"items": {
"type": "string"
}
},
"calva.replConnectSequences": {
"type": "array",
"description": "For when your project needs a custom REPL connect sequence.",
"items": {
"type": "object",
"required": [
"name",
"projectType",
"cljsType"
],
"properties": {
"name": {
"type": "string",
"description": "This will show up in the Jack-in quick-pick menu when you start Jack-in if you have more than one sequence configured."
},
"projectType": {
"type": "string",
"description": "Select one of the project types supported by Calva.",
"enum": [
"Leiningen",
"Clojure CLI",
"shadow-cljs",
"lein-shadow",
"generic"
]
},
"nReplPortFile": {
"type": "array",
"description": "An array of path segments with the project root-relative path to the nREPL port file for this connect sequence. E.g. For shadow-cljs this would be [\".shadow-cljs\", \"nrepl.port\"]",
"items": {
"type": "string"
}
},
"afterCLJReplJackInCode": {
"type": "string",
"description": "Here you can give Calva some Clojure code to evaluate in the CLJ REPL, once it has been created.",
"required": false
},
"menuSelections": {
"type": "object",
"description": "Pre-selected menu options. If a selection is made here. Calva won't prompt for it.",
"properties": {
"leinProfiles": {
"type": "array",
"description": "At Jack-in to a Leiningen project, use these profiles to launch the repl.",
"items": {
"type": "string"
}
},
"leinAlias": {
"description": "At Jack-in to a Leiningen project, launch with this alias. Set to null to launch with Calva's default task (a headless repl).",
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"cljAliases": {
"type": "array",
"description": "At Jack-in to a Clojure CLI project, use these aliases to launch the repl.",
"items": {
"type": "string"
}
},
"cljsLaunchBuilds": {
"type": "array",
"description": "The cljs builds to start/watch at Jack-in/connect.",
"items": {
"type": "string"
}
},
"cljsDefaultBuild": {
"type": "string",
"description": "Which cljs build to attach to at the initial connect."
}
}
},
"cljsType": {
"description": "Either a built in type, or an object configuring a custom type. If omitted Calva will show a menu with the built-in types.",
"anyOf": [
{
"type": "string",
"enum": [
"Figwheel Main",
"lein-figwheel",
"shadow-cljs",
"Nashorn",
"none"
]
},
{
"type": "object",
"required": [
"connectCode",
"dependsOn"
],
"properties": {
"dependsOn": {
"type": "string",
"enum": [
"Figwheel Main",
"lein-figwheel",
"shadow-cljs",
"Nashorn",
"User provided"
],
"description": "The ClojureScript REPL dependencies this customization needs. NB: If it is `User provided`, then you need to provide the dependencies in the project, or launch with an alias (deps.edn), profile (Leiningen), or build (shadow-cljs) that provides the dependencies needed."
},
"buildsRequired": {
"type": "boolean",
"description": "If the repl type requires that builds are started in order to connect to them, set this to true."
},
"isStarted": {
"type": "boolean",
"description": "For cljs repls that Calva does not need to start, set this to true. (If you base your custom cljs repl on shadow-cljs workflow, for instance.)"
},
"startCode": {
"type": "string",
"description": "Clojure code to be evaluated to create and/or start your custom CLJS REPL."
},
"isReadyToStartRegExp": {
"type": "string",
"description": "A regular expression which, when matched in the stdout from the startCode evaluation, will make Calva continue with connecting the REPL, and to prompt the user to start the application. If omitted and there is startCode Calva will continue when that code is evaluated."
},
"openUrlRegExp": {
"type": "string",
"description": "A regular expression, matched against the stdout of cljsType evaluations, for extracting the URL with which the app can be started. The expression should have a capturing group named 'url'. E.g. \\”Open URL: (?<url>\\S+)\\”",
"default": "Open(ing)? URL (?<url>\\S+)"
},
"shouldOpenUrl": {
"type": "boolean",
"description": "Choose if Calva should automatically open the URL for you or not."
},
"connectCode": {
"type": "string",
"description": "Clojure code to be evaluated to convert the REPL to a CLJS REPL that Calva can use to connect to the application."
},
"isConnectedRegExp": {
"type": "string",
"description": "A regular expression which, when matched in the stdout of the connectCode evaluation, will tell Calva that the application is connected.",
"default": "To quit, type: :cljs/quit"
},
"printThisLineRegExp": {
"type": "string",
"description": "A regular expression which, when matched in the stdout from any code evaluations in the cljsType, will make the matched text be printed to the Calva says Output channel."
}
}
}
]
}
}
}
},
"calva.enableJSCompletions": {
"type": "boolean",
"description": "Should Calva use suitible and bring you JavaScript completions? This is an experimental cider-nrepl feature. Disable if completions start to throw errors.",
"default": true
},
"calva.openCalvaSaysOnStart": {
"type": "boolean",
"markdownDescription": "By default, the **Calva says** window opens on startup.",
"default": true
}
}
},
{
"title": "Paredit",
"type": "object",
"properties": {
"calva.paredit.defaultKeyMap": {
"type": "string",
"description": "The default keymap to use for bindings when there is no custom binding.",
"default": "strict",
"enum": [
"original",
"strict",
"none"
],
"scope": "window"
}
}
},
{
"title": "Calva-fmt",
"type": "object",
"properties": {
"calva.fmt.configPath": {
"type": "string",
"markdownDescription": "Path to [cljfmt](https://github.com/weavejester/cljfmt#configuration) configuration file. Absolute or relative to the project root directory."
},
"calva.fmt.formatAsYouType": {
"type": "boolean",
"default": true,
"description": "Auto-adjust indentation and format as you enter new lines."
},
"calva.fmt.newIndentEngine": {
"type": "boolean",
"default": true,
"markdownDescription": "Use the structural editor for indentation (instead of `cljfmt`)."
}
}
},
{
"type": "object",
"title": "Calva Highlight",
"properties": {
"calva.highlight.enableBracketColors": {
"type": "boolean",
"default": true,
"description": "Enable rainbow brackets",
"scope": "resource"
},
"calva.highlight.rainbowIndentGuides": {
"type": "boolean",
"default": false,
"markdownDescription": "Use rainbow indent guides. (To use built-in indent guides, disable this and enable built-in guides in `[\"clojure\"]` scope.",
"scope": "resource"
},
"calva.highlight.highlightActiveIndent": {
"type": "boolean",
"default": true,
"description": "Highlight active indent with a guideline. (Unlike the VS Code built-in setting, this works independently of the rainbowIndentGuides setting.)",
"scope": "resource"
},
"calva.highlight.bracketColors": {
"type": "array",
"items": {
"type": "string"
},
"default": null,
"description": "Bracket colors",
"scope": "resource"
},
"calva.highlight.cycleBracketColors": {
"type": "boolean",
"default": true,
"description": "If nesting level is greater than amount of colors, start counting over",
"scope": "resource"
},
"calva.highlight.misplacedBracketStyle": {
"type": "object",
"default": null,
"description": "Style of misplaced bracket",
"scope": "resource"
},
"calva.highlight.matchedBracketStyle": {
"type": "object",
"default": null,
"description": "Style of pair bracket highlight",
"scope": "resource"
},
"calva.highlight.commentFormStyle": {
"type": "object",
"default": null,
"description": "Style of `(comment)` forms",
"scope": "resource"
},
"calva.highlight.ignoredFormStyle": {
"type": "object",
"default": null,
"description": "Style of `#_` ignored forms",
"scope": "resource"
}
}
}
],
"commands": [
{
"command": "calva.debug.instrument",
"title": "Instrument Top Level Form for Debugging",
"category": "Calva Debug",
"enablement": "editorLangId == clojure && calva:connected"
},
{
"command": "calva.togglePrettyPrint",
"title": "Toggle Pretty Printing for All Evaluations",
"category": "Calva"
},
{
"command": "calva.jackIn",
"title": "Start a Project REPL and Connect (aka Jack-In)",
"category": "Calva"
},
{
"command": "calva.connect",
"title": "Connect to a Running REPL Server in the Project",
"category": "Calva"
},
{
"command": "calva.connectNonProjectREPL",
"title": "Connect to a Running REPL Server, not in Project",
"category": "Calva"
},
{
"command": "calva.disconnect",
"title": "Disconnect from the REPL Server",
"enablement": "calva:connected || calva:connecting || calva:launching",
"category": "Calva"
},
{
"command": "calva.jackInOrConnect",
"title": "Jack-in or Connect to REPL Server",
"enablement": "!calva:connected && !calva:connecting",
"category": "Calva"
},
{
"command": "calva.toggleCLJCSession",
"title": "Toggle the REPL Connection (clj or cljs) used for CLJC Files",
"enablement": "calva:connected",
"category": "Calva"
},
{
"command": "calva.selectCurrentForm",
"title": "Select Current Form",
"category": "Calva"
},
{
"command": "calva.clearInlineResults",
"title": "Clear Inline Evaluation Results",
"category": "Calva"
},
{
"command": "calva.interruptAllEvaluations",
"title": "Interrupt running Evaluations",
"enablement": "calva:connected",
"category": "Calva"
},
{
"command": "calva.evaluateSelection",
"title": "Evaluate Current Form",
"enablement": "calva:connected",
"category": "Calva"
},
{
"command": "calva.evaluateCurrentTopLevelForm",
"title": "Evaluate Top Level Form (defun)",
"enablement": "calva:connected",
"category": "Calva"
},
{
"command": "calva.evaluateSelectionReplace",
"title": "Evaluate Current Form and Replace it with the Result",
"enablement": "calva:connected",
"category": "Calva"
},
{
"command": "calva.evaluateSelectionAsComment",
"title": "Evaluate Current Form to Comment",
"enablement": "calva:connected",
"category": "Calva"
},
{
"command": "calva.evaluateTopLevelFormAsComment",
"title": "Evaluate Top Level Form (defun) to Comment",
"enablement": "calva:connected",
"category": "Calva"
},
{
"command": "calva.copyLastResults",
"title": "Copy Last Evaluation Result to Clipboard",
"category": "Calva"
},
{
"command": "calva.loadFile",
"title": "Load Current File and Dependencies",
"enablement": "calva:connected",
"category": "Calva"
},
{
"command": "calva.requireREPLUtilities",
"title": "Require REPL utilities, like (doc) etcetera, into Current Namespace",
"enablement": "calva:connected",
"category": "Calva"
},
{
"command": "calva.runNamespaceTests",
"title": "Run Tests for Current Namespace",
"enablement": "calva:connected",
"category": "Calva"
},
{
"command": "calva.runAllTests",
"title": "Run All Tests",
"enablement": "calva:connected",
"category": "Calva"
},
{
"command": "calva.rerunTests",
"title": "Run Failing Tests Again",
"enablement": "calva:connected",
"category": "Calva"
},
{
"command": "calva.runTestUnderCursor",
"title": "Run Current Test",
"enablement": "calva:connected",
"category": "Calva"
},
{
"command": "calva.runCustomREPLCommand",
"title": "Run Custom REPL Command",
"category": "Calva",
"enablement": "calva:connected"
},
{
"command": "calva.switchCljsBuild",
"title": "Select CLJS Build Connection",
"enablement": "calva:connected",
"category": "Calva"
},
{
"command": "calva.refresh",
"title": "Refresh Changed Namespaces",
"enablement": "calva:connected",
"category": "Calva"
},
{
"command": "calva.refreshAll",
"title": "Refresh All Namespaces",
"enablement": "calva:connected",
"category": "Calva"
},
{
"category": "Calva Paredit",
"command": "paredit.togglemode",
"title": "Toggle Paredit Mode",
"when": "paredit:keyMap =~ /original|strict/",
"enablement": "paredit:keyMap =~ /original|strict/"
},
{
"category": "Calva Paredit",
"command": "paredit.forwardSexp",
"title": "Forward Sexp"
},
{
"category": "Calva Paredit",
"command": "paredit.backwardSexp",
"title": "Backward Sexp"
},
{
"category": "Calva Paredit",
"command": "paredit.forwardDownSexp",
"title": "Forward Down Sexp"
},
{
"category": "Calva Paredit",
"command": "paredit.backwardDownSexp",
"title": "Backward Down Sexp"
},
{
"category": "Calva Paredit",
"command": "paredit.backwardUpSexp",
"title": "Backward Up Sexp"
},
{
"category": "Calva Paredit",
"command": "paredit.forwardUpSexp",
"title": "Forward Up Sexp"
},
{
"category": "Calva Paredit",
"command": "paredit.closeList",
"title": "Forward to List End/Close"
},
{
"category": "Calva Paredit",
"command": "paredit.selectForwardSexp",
"title": "Select Forward Sexp"
},
{
"category": "Calva Paredit",
"command": "paredit.selectBackwardSexp",
"title": "Select Backward Sexp"
},
{
"category": "Calva Paredit",
"command": "paredit.selectForwardDownSexp",
"title": "Select Forward Down Sexp"
},
{
"category": "Calva Paredit",
"command": "paredit.selectBackwardDownSexp",
"title": "Select Backward Down Sexp"
},
{
"category": "Calva Paredit",
"command": "paredit.selectBackwardUpSexp",
"title": "Select Backward Up Sexp"
},
{
"category": "Calva Paredit",
"command": "paredit.selectForwardUpSexp",
"title": "Select Forward Up Sexp"
},
{
"category": "Calva Paredit",
"command": "paredit.selectCloseList",
"title": "Select Forward to List End/Close"
},
{
"category": "Calva Paredit",
"command": "paredit.selectOpenList",
"title": "Select Backward to List Start/Open"
},
{
"category": "Calva Paredit",
"command": "paredit.rangeForDefun",
"title": "Select Current Top Level (aka defun) Form"
},
{
"category": "Calva Paredit",
"command": "paredit.sexpRangeExpansion",
"title": "Expand Selection"
},
{
"category": "Calva Paredit",
"command": "paredit.sexpRangeContraction",
"title": "Shrink Selection"
},
{
"category": "Calva Paredit",
"command": "paredit.slurpSexpForward",
"title": "Slurp Sexp Forward"
},
{
"category": "Calva Paredit",
"command": "paredit.slurpSexpBackward",
"title": "Slurp Sexp Backward"
},
{
"category": "Calva Paredit",
"command": "paredit.barfSexpForward",
"title": "Barf Sexp Forward"
},
{
"category": "Calva Paredit",
"command": "paredit.barfSexpBackward",
"title": "Barf Sexp Backward"
},
{
"category": "Calva Paredit",
"command": "paredit.spliceSexp",
"title": "Splice Sexp"
},
{
"category": "Calva Paredit",
"command": "paredit.splitSexp",
"title": "Split Sexp"
},
{
"category": "Calva Paredit",
"command": "paredit.joinSexp",
"title": "Join Sexp"
},
{
"category": "Calva Paredit",
"command": "paredit.raiseSexp",
"title": "Raise Sexp"
},
{
"category": "Calva Paredit",
"command": "paredit.transpose",
"title": "Transpose (Swap) the two Sexps Around the Cursor"
},
{
"category": "Calva Paredit",
"command": "paredit.dragSexprBackward",
"title": "Drag Sexp Backward"
},
{
"category": "Calva Paredit",
"command": "paredit.dragSexprForward",
"title": "Drag Sexp Forward"
},
{
"category": "Calva Paredit",
"command": "paredit.dragSexprBackwardUp",
"title": "Drag Sexp Backward Up"
},
{
"category": "Calva Paredit",
"command": "paredit.dragSexprForwardDown",
"title": "Drag Sexp Forward Down"
},
{
"category": "Calva Paredit",
"command": "paredit.dragSexprForwardUp",
"title": "Drag Sexp Forward Up"
},
{
"category": "Calva Paredit",
"command": "paredit.dragSexprBackwardDown",
"title": "Drag Sexp Backward Down"
},
{
"category": "Calva Paredit",
"command": "paredit.convolute",
"title": "Convolute Sexp ¯\\_(ツ)_/¯"
},
{
"category": "Calva Paredit",
"command": "paredit.killSexpForward",
"title": "Kill/Delete Sexp Forward"
},
{
"category": "Calva Paredit",
"command": "paredit.killSexpBackward",
"title": "Kill/Delete Sexp Backward"
},
{
"category": "Calva Paredit",
"command": "paredit.killListForward",
"title": "Kill/Delete Forward to End of List"
},
{
"category": "Calva Paredit",
"command": "paredit.killListBackward",
"title": "Kill/Delete Backward to Start of List"
},
{
"category": "Calva Paredit",
"command": "paredit.spliceSexpKillForward",
"title": "Splice & Kill/Delete Forward"
},
{
"category": "Calva Paredit",
"command": "paredit.spliceSexpKillBackward",
"title": "Splice & Kill/Delete Backward"
},
{
"category": "Calva Paredit",
"command": "paredit.deleteForward",
"title": "Delete Forward"
},
{
"category": "Calva Paredit",
"command": "paredit.deleteBackward",
"title": "Delete Backward"
},
{
"category": "Calva Paredit",
"command": "paredit.forceDeleteForward",
"title": "Force Delete Forward"
},
{
"category": "Calva Paredit",
"command": "paredit.forceDeleteBackward",
"title": "Force Delete Backward"
},
{
"category": "Calva Paredit",
"command": "paredit.wrapAroundParens",
"title": "Wrap Around ()"
},
{
"category": "Calva Paredit",
"command": "paredit.wrapAroundSquare",
"title": "Wrap Around []"
},
{
"category": "Calva Paredit",
"command": "paredit.wrapAroundCurly",
"title": "Wrap Around {}"
},
{
"category": "Calva Paredit",
"command": "paredit.wrapAroundQuote",
"title": "Wrap Around \"\""
},
{
"category": "Calva Paredit",
"command": "paredit.rewrapParens",
"title": "Rewrap ()"