-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
1358 lines (1358 loc) · 48.2 KB
/
Copy pathpackage.json
File metadata and controls
1358 lines (1358 loc) · 48.2 KB
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": "mise-vscode",
"displayName": "Mise VSCode",
"publisher": "hverlin",
"description": "mise support for Visual Studio code (dev-tools, tasks and environment variables)",
"version": "1.23.0",
"repository": {
"type": "git",
"url": "https://github.com/hverlin/mise-vscode"
},
"bugs": {
"url": "https://github.com/hverlin/mise-vscode/issues"
},
"license": "MIT",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Programming Languages",
"Snippets",
"Other"
],
"keywords": [
"mise",
"mise-en-place",
"devtools",
"rtx",
"asdf",
"asdf-vm",
"tasks",
"envs",
"environment variables",
"scripts"
],
"icon": "resources/icon.png",
"main": "./dist/extension.js",
"browser": "./dist/browser/browser.js",
"activationEvents": [
"onTaskType:mise",
"workspaceContains:.tool-versions",
"workspaceContains:.config/mise/**/config.*.toml",
"workspaceContains:.config/mise/**/config.toml",
"workspaceContains:.mise.*.toml",
"workspaceContains:.mise.toml",
"workspaceContains:.mise/config.*.toml",
"workspaceContains:.mise/config.toml",
"workspaceContains:mise.*.toml",
"workspaceContains:mise.toml",
"workspaceContains:mise/config.*.toml",
"workspaceContains:mise/config.toml",
"onLanguage"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": false,
"description": "This extension requires a trusted workspace because it can execute code in the workspace."
},
"virtualWorkspaces": {
"supported": "limited",
"description": "syntax highlighting only"
}
},
"contributes": {
"languages": [
{
"id": "toml",
"aliases": [
"TOML",
"toml"
],
"extensions": [
".toml"
],
"filenames": [
"mise.lock"
],
"filenamePatterns": [
"mise.*.lock"
],
"firstLine": "^#!\\s*/usr/bin/env\\s+(-S\\s+)?mise\\s+tool-stub\\b",
"configuration": "./syntaxes/toml-language-configuration.json"
},
{
"id": "tool-versions",
"aliases": [
"tool-versions"
],
"filenames": [
".tool-versions"
],
"configuration": "./syntaxes/tool-versions-language-configuration.json"
}
],
"tomlValidation": [
{
"fileMatch": [
"**/mise.toml",
"**/.mise.toml",
"**/mise.*.toml",
"**/.mise.*.toml",
"**/mise/config.toml",
"**/.mise/config.toml",
"**/mise/config.*.toml",
"**/.mise/config.*.toml",
"**/mise/conf.d/*.toml",
"**/.mise/conf.d/*.toml"
],
"url": "https://mise.jdx.dev/schema/mise.json"
}
],
"grammars": [
{
"language": "toml",
"scopeName": "source.toml",
"path": "./syntaxes/toml-language.json"
},
{
"language": "tool-versions",
"scopeName": "source.tool-versions",
"path": "./syntaxes/tool-versions.json"
},
{
"scopeName": "source.usage.kdl",
"path": "./syntaxes/usage-kdl.json"
},
{
"scopeName": "source.mise.shell",
"path": "./syntaxes/shell.json"
},
{
"injectTo": [
"source.shell"
],
"scopeName": "inline.mise-usage",
"path": "./syntaxes/usage-shell.json"
},
{
"injectTo": [
"source.toml"
],
"scopeName": "inline.tera-mise",
"path": "./syntaxes/tera-mise.json",
"embeddedLanguages": {
"meta.embedded.tera.expression": "tera",
"meta.embedded.tera.statement": "tera",
"source.js": "javascript",
"source.python": "python",
"source.shell": "shellscript",
"source.ruby": "ruby"
}
}
],
"walkthroughs": [
{
"id": "mise-getting-started",
"title": "Mise VSCode setup",
"description": "Important steps to get started with the Mise VSCode extension.",
"when": "!isWeb",
"steps": [
{
"id": "auto-configure",
"title": "Auto-Configure Extensions",
"description": "Choose whether to automatically configure VSCode extensions to use tools from mise.\n[Open settings](command:mise.openExtensionSettings)",
"media": {
"markdown": "walkthrough/auto-configure.md"
},
"when": "!isWeb"
},
{
"id": "explore",
"title": "Tips for using Mise VSCode",
"description": "Open the mise panel to see tools, tasks and environment variables.\n[Open Mise Panel](command:workbench.view.extension.mise-panel)",
"media": {
"markdown": "walkthrough/explore.md"
},
"when": "!isWeb"
}
]
}
],
"configurationDefaults": {
"[toml]": {
"editor.quickSuggestions": {
"strings": "on"
}
}
},
"configuration": {
"title": "Mise",
"properties": {
"mise.enable": {
"order": 1,
"type": "boolean",
"default": true,
"markdownDescription": "Enable/disable mise extension."
},
"mise.binPath": {
"order": 2,
"type": "string",
"markdownDescription": "Path to the mise binary (automatically detected on startup).\n\nIf set to `mise` (default), it will use `mise` available in `PATH`.\n\nRelative paths (e.g. `./bin/mise`) and `${workspaceFolder}` variables are resolved against the workspace folders.\n\nSee https://mise.jdx.dev/getting-started.html to install mise.",
"default": "mise"
},
"mise.skipWorkspaceBinaryApproval": {
"type": "boolean",
"default": false,
"scope": "machine",
"markdownDescription": "Run a mise binary located inside the workspace without asking for approval first.\n\n**This turns off a security check.** A repository can point `mise.binPath` at a program it ships, and with this enabled that program runs as soon as you open the project. Useful if you rely on a committed launcher such as the one written by `mise generate bootstrap -l -w`.\n\nYou still have to trust the folder in VS Code first: the extension does not run in an untrusted workspace at all. This setting is machine-scoped, so a project cannot enable it for you."
},
"mise.miseEnv": {
"order": 3,
"type": "string",
"markdownDescription": "Mise environment to use. (https://mise.jdx.dev/configuration/environments.html)"
},
"mise.configureExtensionsAutomatically": {
"order": 4,
"type": "boolean",
"default": false,
"markdownDescription": "Automatically configure extensions for the current workspace. ([list of supported extensions](https://github.com/hverlin/mise-vscode/wiki/Supported-extensions)).\n\nThis will modify your workspace settings (`.vscode/settings.json`). You can use the ignore/include lists settings to customize which extensions are configured."
},
"mise.configureExtensionsAutomaticallyIgnoreList": {
"order": 5,
"type": "array",
"default": [
"biomejs.biome",
"oxc.oxc-vscode"
],
"items": {
"type": "string",
"enum": [
"ms-python.python",
"denoland.vscode-deno",
"charliermarsh.ruff",
"golang.go",
"oven.bun-vscode",
"oracle.oracle-java",
"redhat.java",
"vscjava.vscode-gradle",
"salesforce.salesforcedx-vscode-apex",
"timonwong.shellcheck",
"ms-vscode.js-debug",
"vscode.php-language-features",
"xdebug.php-debug",
"julialang.language-julia",
"pgourlain.erlang",
"Dart-Code.dart-code",
"dart-code.flutter",
"ziglang.vscode-zig",
"signageos.signageos-vscode-sops",
"joselitofilho.ginkgotestexplorer",
"bufbuild.vscode-buf",
"biomejs.biome",
"oxc.oxc-vscode",
"bazelbuild.vscode-bazel",
"swiftlang.swift-vscode",
"Pkl.pkl-vscode",
"exiasr.hadolint",
"astral-sh.ty",
"foxundermoon.shell-format",
"sumneko.lua",
"twxs.cmake",
"ms-dotnettools.vscode-dotnet-runtime",
"SonarSource.sonarlint-vscode"
]
},
"markdownDescription": "List of extensions that should not be configured automatically."
},
"mise.configureExtensionsAutomaticallyIncludeList": {
"order": 5.1,
"type": "array",
"default": [
"all"
],
"items": {
"type": "string",
"enum": [
"all",
"ms-python.python",
"denoland.vscode-deno",
"charliermarsh.ruff",
"golang.go",
"oven.bun-vscode",
"oracle.oracle-java",
"redhat.java",
"vscjava.vscode-gradle",
"salesforce.salesforcedx-vscode-apex",
"timonwong.shellcheck",
"ms-vscode.js-debug",
"vscode.php-language-features",
"xdebug.php-debug",
"julialang.language-julia",
"pgourlain.erlang",
"Dart-Code.dart-code",
"dart-code.flutter",
"ziglang.vscode-zig",
"signageos.signageos-vscode-sops",
"joselitofilho.ginkgotestexplorer",
"bufbuild.vscode-buf",
"biomejs.biome",
"oxc.oxc-vscode",
"bazelbuild.vscode-bazel",
"swiftlang.swift-vscode",
"Pkl.pkl-vscode",
"exiasr.hadolint",
"astral-sh.ty",
"foxundermoon.shell-format",
"sumneko.lua",
"twxs.cmake",
"ms-dotnettools.vscode-dotnet-runtime",
"SonarSource.sonarlint-vscode"
]
},
"markdownDescription": "List of extensions that should be configured automatically. If both include and ignore lists are set, the ignore list takes precedence. If the include list includes 'all' (default), all supported extensions are considered except those in the ignore list."
},
"mise.configureExtensionsUseShims": {
"order": 6,
"type": "boolean",
"title": "Configure extensions to use shims",
"default": true,
"markdownDescription": "Use shims when configuring extensions. When shims are not used, note that you will have to configure environment variables manually."
},
"mise.configureExtensionsUseSymLinks": {
"order": 7,
"type": "boolean",
"title": "Configure extensions to use symlinks",
"default": false,
"markdownDescription": "Create symlinks in your `.vscode` folder that links to the `mise` bin.\n\nThis is useful if you share the `.vscode/settings.json` file with others. When the project is version controlled:\n- every user must have the extension installed\n- the directory `.vscode/mise-tools` must be excluded from version control.\n\nThe folder where the symlinks are created can be changed with `mise.configureExtensionsSymLinksFolder`."
},
"mise.configureExtensionsSymLinksFolder": {
"order": 7.05,
"type": "string",
"title": "Symlinks folder",
"default": ".vscode/mise-tools",
"markdownDescription": "Folder in which `mise.configureExtensionsUseSymLinks` creates the symlinks to the `mise` tools. Relative paths are resolved from the workspace folder (absolute paths are also supported).\n\nUseful if you use a VS Code fork that stores its settings in a different folder (e.g. `.cursor/mise-tools` for Cursor, `.windsurf/mise-tools` for Windsurf), or if you prefer to keep the symlinks outside of `.vscode` (e.g. `.mise-tools`)."
},
"mise.configureExtensionsIncludeGlobalTools": {
"order": 7.1,
"type": "boolean",
"title": "Include global mise tools when auto-configuring extensions",
"default": true,
"markdownDescription": "When enabled, tools from the global mise configuration (`~/.config/mise/config.toml`) will be included when automatically configuring VS Code extensions.\n\nWhen disabled (recommended), only tools from the local project configuration (`mise.toml`) are used. This prevents settings.json from being polluted with extensions for tools that are not part of the current project."
},
"mise.checkForNewMiseVersion": {
"order": 8,
"type": "boolean",
"title": "Check for new mise version",
"default": true,
"markdownDescription": "Check if a new mise version is available on startup."
},
"mise.keepReplacedVersionOnUpgrade": {
"order": 8.1,
"type": "boolean",
"title": "Keep replaced versions when upgrading tools",
"default": false,
"markdownDescription": "Pass `--no-prune` to `mise upgrade` so the version being replaced stays installed. Useful when something outside of mise still points at it, such as a virtualenv built from a mise-managed Python.\n\nRequires mise 2026.8.1 or later; ignored on older versions."
},
"mise.showToolVersionsDecorations": {
"order": 9,
"type": "boolean",
"title": "Show tool versions",
"default": true,
"markdownDescription": "Show tool versions in the editor. (requires reload)"
},
"mise.showToolEnvVarsDecorations": {
"order": 9.1,
"type": "boolean",
"title": "Show tool environment variables",
"default": true,
"markdownDescription": "Show environment variables contributed by each tool in the editor inline decorations (e.g. `GOBIN`, `GOROOT` for Go)."
},
"mise.enableCodeLens": {
"order": 10,
"type": "boolean",
"title": "Enable code lens",
"default": true,
"markdownDescription": "Show run/add tool code lens indicators in the editor."
},
"mise.enableBootstrapCodeLens": {
"order": 11,
"type": "boolean",
"title": "Enable bootstrap code lens",
"default": true,
"markdownDescription": "Show a code lens on each `[bootstrap.*]` section reporting how many of its entries are not in their desired state.\n\nRequires `#mise.enableCodeLens#` and mise 2026.7.16+. Reading the status runs `mise bootstrap status`, which inspects the machine (installed packages, cloned repos, macOS defaults, Docker Compose projects); the result is cached and only read for files that declare a bootstrap section."
},
"mise.enableToolLinks": {
"order": 10.5,
"type": "boolean",
"title": "Enable tool links",
"default": true,
"markdownDescription": "Enable document links for tools in mise configuration files."
},
"mise.enableTaskSymbolProvider": {
"order": 10.6,
"type": "boolean",
"title": "Enable task symbol provider",
"default": false,
"markdownDescription": "Enable document symbol provider for mise TOML files. Provides an outline of tasks, tools, env, and settings sections. This is always enabled on the web. On desktop, you can use [Tombi](https://marketplace.visualstudio.com/items?itemName=tombi-toml.tombi) for better TOML support."
},
"mise.showNotificationIfMissingTools": {
"order": 11,
"type": "boolean",
"title": "Show notification if missing tools",
"default": true,
"markdownDescription": "Show notification if tools are not installed."
},
"mise.resolveMonorepoProjectConfigs": {
"order": 10.7,
"type": "boolean",
"title": "Resolve monorepo project configs",
"default": true,
"markdownDescription": "Show the tools and environment variables of each [monorepo](https://mise.jdx.dev/tasks/monorepo.html) project. This spawns one mise process per project when the configuration is loaded. Disable this in large monorepos if reloads feel slow."
},
"mise.updateEnvAutomatically": {
"order": 12,
"type": "boolean",
"title": "Update environment variables automatically",
"default": true,
"markdownDescription": "Update VSCode and terminal environment variables automatically based on the mise configuration. Note that depending on the extensions loading order, other extensions might not see all mise environment variables."
},
"mise.updateEnvAutomaticallyIncludePath": {
"order": 12.1,
"type": "boolean",
"title": "Include PATH when updating environment variables",
"default": true,
"markdownDescription": "Include the PATH variable when updating VSCode and terminal environment variables. Disable this if you want to keep your original PATH."
},
"mise.updateOpenTerminalsEnvAutomatically": {
"order": 13,
"type": "boolean",
"title": "Update terminal environment variables automatically",
"default": false,
"markdownDescription": "Update terminal environment variables automatically based on the mise configuration. This will send `unset` and `eval $(mise env)` commands to the terminal. If you don't enable this, you will need to restart the integrated terminals to get the new environment variables."
},
"mise.teraAutoCompletion": {
"order": 14,
"type": "boolean",
"title": "Enable Tera auto-completion",
"default": true,
"markdownDescription": "Enable Tera auto-completion in `mise.toml` files."
},
"mise.enableSnippets": {
"order": 14.1,
"type": "boolean",
"title": "Enable snippets",
"default": true,
"markdownDescription": "Suggest task snippets (`mise-task`, `mise-task-script`, ...) in mise configuration files and in file tasks.\n\nThey are also hidden by `#editor.snippetSuggestions#` set to `none` and by `#editor.suggest.showSnippets#` set to `false`, which apply to every extension."
},
"mise.automaticallyTrustMiseConfigFiles": {
"order": 15,
"type": "boolean",
"title": "Automatically trust mise config files",
"default": true,
"markdownDescription": "Automatically trust mise config files when opening them in a trusted worskspace."
},
"mise.commandTTLCacheSeconds": {
"order": 16,
"type": "number",
"title": "Command TTL cache seconds",
"default": 2,
"markdownDescription": "Time to live in seconds for the mise command cache. Only changed it if some commands are expensive to run."
},
"mise.showOutdatedToolGutterDecorations": {
"order": 16,
"type": "boolean",
"title": "Show outdated tool gutter decorations",
"default": true,
"markdownDescription": "Show outdated tool gutter decorations in the editor."
},
"mise.autoDetectMiseBinPath": {
"order": 17,
"type": "boolean",
"title": "Auto-detect mise bin path",
"default": true,
"markdownDescription": "Auto-detect mise bin path on startup."
},
"mise.customBinaryExtensions": {
"order": 19,
"type": "array",
"default": [],
"markdownDescription": "Custom binary extensions to automatically configure VSCode extensions with mise tool binaries.\n\nEach entry requires:\n- `extensionId`: VSCode extension ID\n- `toolSources`: Array of tool names to match. Both the registry short name (e.g. `shfmt`) and the backend source (e.g. `aqua:mvdan/sh`) match, whichever one mise.toml declares\n- `vscodeSetting.key`: VSCode setting key to write\n\nOptional:\n- `binName`: Binary name (defaults to first tool name)\n- `vscodeSetting.subdirs`: Subdirectories to append to the path\n- `vscodeSetting.asArray`: Whether to wrap the setting value in an array (default: false)\n- `supportsShims`: Whether extension supports shims (default: true)\n- `supportsSymlinks`: Whether extension supports symlinks (default: true)",
"items": {
"type": "object",
"required": [
"extensionId",
"toolSources",
"vscodeSetting"
],
"properties": {
"extensionId": {
"type": "string",
"description": "VSCode extension ID (e.g., 'ms-python.python')"
},
"toolSources": {
"type": "array",
"items": {
"type": "string"
},
"description": "Tool names to match, e.g., ['python'] or ['shfmt']. Both the registry short name and the backend source (e.g. 'aqua:mvdan/sh') match"
},
"vscodeSetting": {
"type": "object",
"required": [
"key"
],
"properties": {
"key": {
"type": "string",
"description": "VSCode setting key (e.g., 'python.defaultInterpreterPath')"
},
"subdirs": {
"type": "array",
"items": {
"type": "string"
},
"description": "Subdirectories to append to the tool path (e.g., ['bin'] to point to bin folder)"
},
"asArray": {
"type": "boolean",
"default": false,
"description": "Whether to wrap the setting value in an array (e.g., ['/path/to/bin'] instead of '/path/to/bin')"
}
}
},
"binName": {
"type": "string",
"description": "Binary name to look up (defaults to first tool name)"
},
"supportsShims": {
"type": "boolean",
"default": true,
"description": "Whether this extension supports mise shims. If false, shims will not be used."
},
"supportsSymlinks": {
"type": "boolean",
"default": true,
"description": "Whether this extension supports symlinks. If false, symlinks will not be used."
}
}
}
},
"mise.customFolderExtensions": {
"order": 20,
"type": "array",
"default": [],
"markdownDescription": "Custom folder extensions to automatically configure VSCode extensions with mise tool folders.\n\nEach entry requires:\n- `extensionId`: VSCode extension ID\n- `toolSources`: Array of tool names to match. Both the registry short name (e.g. `shfmt`) and the backend source (e.g. `aqua:mvdan/sh`) match, whichever one mise.toml declares\n- `vscodeSetting.key`: VSCode setting key to write\n- `folderName`: Name for the symlink folder\n\nOptional:\n- `vscodeSetting.subdirs`: Subdirectories to append to the path written to VSCode setting\n- `sourceSubdirs`: Additional subdirs to find the tool source folder\n- `supportsSymlinks`: Whether extension supports symlinks (default: true)",
"items": {
"type": "object",
"required": [
"extensionId",
"toolSources",
"vscodeSetting",
"folderName"
],
"properties": {
"extensionId": {
"type": "string",
"description": "VSCode extension ID (e.g., 'ms-python.python')"
},
"toolSources": {
"type": "array",
"items": {
"type": "string"
},
"description": "Tool names to match, e.g., ['python'] or ['shfmt']. Both the registry short name and the backend source (e.g. 'aqua:mvdan/sh') match"
},
"vscodeSetting": {
"type": "object",
"required": [
"key"
],
"properties": {
"key": {
"type": "string",
"description": "VSCode setting key (e.g., 'java.jdkHome')"
},
"subdirs": {
"type": "array",
"items": {
"type": "string"
},
"description": "Subdirectories to append to the path (e.g., ['bin'] to point to bin subfolder)"
}
}
},
"folderName": {
"type": "string",
"description": "Custom folder name for symlink"
},
"sourceSubdirs": {
"type": "array",
"items": {
"type": "string"
},
"description": "Additional subdirs to find the tool source folder (e.g., ['lib'] to use parent/lib as base)"
},
"supportsSymlinks": {
"type": "boolean",
"default": true,
"description": "Whether extension supports symlinks. If false, direct path will be used."
}
}
}
}
}
},
"viewsContainers": {
"activitybar": [
{
"id": "mise-panel",
"title": "Mise",
"icon": "resources/icon.svg"
}
]
},
"viewsWelcome": [
{
"view": "miseTasksView",
"contents": "[Tasks](https://mise.jdx.dev/tasks/) will be displayed here. ([refresh](command:mise.reloadConfiguration))\n[Add task](command:mise.createTomlTask)",
"when": "config.mise.binPath && config.mise.enable && !mise.tasksProviderError"
},
{
"view": "miseTasksView",
"contents": "Error loading tasks. [Open logs](command:mise.openLogs)",
"when": "mise.tasksProviderError && config.mise.enable"
},
{
"view": "miseTasksView",
"contents": "[Install mise](https://mise.jdx.dev/getting-started.html) to get started.\nOnce mise is installed, click reload.\n[Reload](command:mise.reloadConfiguration)\n[Configure](command:mise.openExtensionSettings)",
"when": "!config.mise.binPath"
},
{
"view": "miseTasksView",
"contents": "Mise extension is disabled.\n[Open settings](command:mise.openExtensionSettings)",
"when": "!config.mise.enable"
},
{
"view": "miseToolsView",
"contents": "[Tools](https://mise.jdx.dev/dev-tools/) will be displayed here.",
"when": "config.mise.enable && !mise.toolsProviderError"
},
{
"view": "miseToolsView",
"contents": "Error loading tools. [Open logs](command:mise.openLogs)",
"when": "mise.toolsProviderError && config.mise.enable"
},
{
"view": "miseToolsView",
"contents": "Mise extension is disabled.\n[Open settings](command:mise.openExtensionSettings)",
"when": "!config.mise.enable"
},
{
"view": "miseEnvsView",
"contents": "[Environment variables](https://mise.jdx.dev/environments.html) will be displayed here.",
"when": "config.mise.binPath && config.mise.enable && !mise.envProviderError"
},
{
"view": "miseEnvsView",
"contents": "Mise extension is disabled.\n[Open settings](command:mise.openExtensionSettings)",
"when": "!config.mise.enable"
},
{
"view": "miseEnvsView",
"contents": "Error loading environment variables. [Open logs](command:mise.openLogs)",
"when": "mise.envProviderError && config.mise.enable"
},
{
"view": "miseBootstrapView",
"contents": "[Bootstrap](https://mise.jdx.dev/bootstrap.html) status will be displayed here once bootstrap sections are configured. (requires mise 2026.7.16+)\n[Show bootstrap status](command:mise.showBootstrap)",
"when": "config.mise.binPath && config.mise.enable && !mise.bootstrapProviderError"
},
{
"view": "miseBootstrapView",
"contents": "Error loading bootstrap status. [Open logs](command:mise.openLogs)",
"when": "mise.bootstrapProviderError && config.mise.enable"
},
{
"view": "miseBootstrapView",
"contents": "Mise extension is disabled.\n[Open settings](command:mise.openExtensionSettings)",
"when": "!config.mise.enable"
}
],
"views": {
"mise-panel": [
{
"id": "miseTasksView",
"name": "Tasks",
"when": "!isWeb"
},
{
"id": "miseToolsView",
"name": "Tools",
"when": "!isWeb"
},
{
"id": "miseEnvsView",
"name": "Environment Variables",
"when": "!isWeb"
},
{
"id": "miseBootstrapView",
"name": "Bootstrap",
"when": "!isWeb",
"visibility": "collapsed"
}
]
},
"commands": [
{
"command": "mise.refreshEntry",
"title": "Mise: Reload configuration (internal)",
"enablement": "!isWeb"
},
{
"command": "mise.reloadConfiguration",
"title": "Mise: Reload configuration",
"icon": "$(refresh)",
"enablement": "!isWeb"
},
{
"command": "mise.openMenu",
"title": "Mise: Open Menu",
"enablement": "!isWeb"
},
{
"command": "mise.reviewWorkspaceBinary",
"title": "Mise: Review the workspace mise binary",
"icon": "$(shield)",
"enablement": "!isWeb"
},
{
"command": "mise.revokeWorkspaceBinaryApprovals",
"title": "Mise: Revoke approved workspace mise binaries",
"enablement": "!isWeb"
},
{
"command": "mise.openMissingToolsMenu",
"title": "Mise: Open Missing Tools Menu",
"enablement": "!isWeb"
},
{
"command": "mise.openToolRepository",
"title": "Mise: Open Tool Repository",
"enablement": "!isWeb"
},
{
"command": "mise.selectWorkspaceFolder",
"title": "Mise: Select Workspace Folder",
"enablement": "!isWeb"
},
{
"command": "mise.runTask",
"title": "Mise: Run task",
"icon": "$(play)",
"enablement": "!isWeb"
},
{
"command": "mise.searchTasks",
"title": "Mise: Search tasks",
"icon": "$(search)",
"enablement": "!isWeb"
},
{
"command": "mise.watchTask",
"title": "Mise: Run Task in Watch Mode",
"icon": "$(eye-watch)",
"enablement": "!isWeb"
},
{
"command": "mise.runTaskWithoutCache",
"title": "Mise: Run task without its output cache",
"icon": "$(debug-restart)",
"enablement": "!isWeb"
},
{
"command": "mise.explainTaskCache",
"title": "Mise: Explain task cache key",
"icon": "$(list-tree)",
"enablement": "!isWeb"
},
{
"command": "mise.clearTaskCache",
"title": "Mise: Clear task output cache",
"icon": "$(trash)",
"enablement": "!isWeb"
},
{
"command": "mise.showTaskCacheMenu",
"title": "Mise: Task output cache",
"icon": "$(database)",
"enablement": "!isWeb"
},
{
"command": "mise.createFileTask",
"title": "Mise: Create File Task",
"icon": "$(new-file)",
"enablement": "!isWeb"
},
{
"command": "mise.createTomlTask",
"title": "Mise: Create Toml Task",
"icon": "$(add)",
"enablement": "!isWeb"
},
{
"command": "mise.createTomlTaskTopMenu",
"title": "Mise: Create Toml Task",
"icon": "$(add)",
"enablement": "!isWeb"
},
{
"command": "mise.groupTasksByProject",
"title": "Mise: Group Tasks by Project",
"icon": "$(folder-library)",
"enablement": "!isWeb"
},
{
"command": "mise.groupTasksBySource",
"title": "Mise: Group Tasks by Source File",
"icon": "$(list-tree)",
"enablement": "!isWeb"
},
{
"command": "mise.openToolDefinition",
"title": "Mise: Open Tool Definition",
"enablement": "!isWeb"
},
{
"command": "mise.openTaskDefinition",
"title": "Mise: Open Task Definition",
"enablement": "!isWeb"
},
{
"command": "mise.openEnvVariableDefinition",
"title": "Mise: Find Environment Variable Definition",
"enablement": "!isWeb"
},
{
"command": "mise.openFile",
"title": "Mise: Open File",
"enablement": "!isWeb"
},
{
"command": "mise.removeTool",
"title": "Mise: Remove Tool",
"enablement": "!isWeb"
},
{
"command": "mise.copyToolInstallPath",
"title": "Mise: Copy Tool Install Path",
"enablement": "!isWeb"
},
{
"command": "mise.copyToolBinPaths",
"title": "Mise: Copy Tool Bin Paths",
"enablement": "!isWeb"
},
{
"command": "mise.copyEnvVariableName",
"title": "Mise: Copy Environment Variable Name",
"enablement": "!isWeb"
},
{
"command": "mise.copyEnvVariableValue",
"title": "Mise: Copy Environment Variable Value",
"enablement": "!isWeb"
},
{
"command": "mise.installTool",
"title": "Mise: Install Tool",
"enablement": "!isWeb"
},
{
"command": "mise.installAll",
"title": "Mise: Run mise install",
"icon": "$(cloud-download)",
"enablement": "!isWeb"
},
{
"command": "mise.useTool",
"title": "Mise: Run mise use",
"icon": "$(add)",
"enablement": "!isWeb"
},
{
"command": "mise.useToolTopMenu",
"title": "Mise: Use Tool",
"icon": "$(add)",
"enablement": "!isWeb"
},
{
"command": "mise.configureSdkPath",
"title": "Mise: Configure extension sdk path...",
"enablement": "!isWeb"
},
{
"command": "mise.configureAllSdkPaths",
"title": "Mise: Configure all extension sdk paths",
"enablement": "!isWeb"
},
{
"command": "mise.openExtensionSettings",
"title": "Mise: Open extension settings",
"icon": "$(tools)",
"enablement": "!isWeb"
},
{
"command": "mise.openLogs",
"title": "Mise: Show extension logs",
"icon": "$(list-unordered)",
"enablement": "!isWeb"
},
{
"command": "mise.listAllTools",
"title": "Mise: List all Tools",
"icon": "$(list-ordered)",
"enablement": "!isWeb"
},
{
"command": "mise.showSettings",
"title": "Mise: Show mise settings",
"icon": "$(list-ordered)",
"enablement": "!isWeb"
},
{
"command": "mise.showProjects",
"title": "Mise: Show mise projects",
"icon": "$(folder-library)",
"enablement": "!isWeb"
},
{
"command": "mise.visualizeTasksDeps",
"title": "Mise: Visualize Tasks Dependencies",
"icon": "$(git-merge)",
"enablement": "!isWeb"
},
{
"command": "mise.setEnvVariable",
"title": "Mise: Set Environment Variable",
"icon": "$(add)",
"enablement": "!isWeb"
},
{
"command": "mise.fmt",
"title": "Mise: Run mise fmt",
"enablement": "!isWeb"
},
{
"command": "mise.editSetting",
"title": "Mise: Edit Setting",
"enablement": "!isWeb"
},
{
"command": "mise.showAllEnvVarValues",
"title": "Mise: Show All Environment Variable Values",
"icon": "$(eye)",
"enablement": "!isWeb"
},
{
"command": "mise.hideAllEnvVarValues",
"title": "Mise: Hide All Environment Variable Values",
"icon": "$(eye-closed)",
"enablement": "!isWeb"
},
{
"command": "mise.showEnvVariableValue",
"title": "Mise: Show Environment Variable Value",
"icon": "$(eye)",
"enablement": "!isWeb"
},
{
"command": "mise.hideEnvVariableValue",
"title": "Mise: Hide Environment Variable Value",
"icon": "$(eye-closed)",
"enablement": "!isWeb"
},
{
"command": "mise.displayPath",
"title": "Mise: Display PATH variable",
"enablement": "!isWeb"
},
{
"command": "mise.doctor",
"title": "Mise: Run mise doctor",
"enablement": "!isWeb"
},
{
"command": "mise.runBootstrap",
"title": "Mise: Run mise bootstrap",
"icon": "$(play)",
"enablement": "!isWeb"
},
{
"command": "mise.runBootstrapDryRun",
"title": "Mise: Run mise bootstrap (dry run)",
"enablement": "!isWeb"
},
{
"command": "mise.runBootstrapPlan",
"title": "Mise: Show mise bootstrap plan",
"icon": "$(diff)",
"enablement": "!isWeb"