You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/content/docs/reference/Settings.md
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -275,7 +275,7 @@ Show the tools and environment variables of each [monorepo](https://mise.jdx.dev
275
275
276
276
Show a code lens on each `[bootstrap.*]` section reporting how many of its entries are not in their desired state.
277
277
278
-
Requires `#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.
278
+
Requires `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.
279
279
280
280
---
281
281
@@ -319,6 +319,16 @@ Enable Tera auto-completion in `mise.toml` files.
319
319
320
320
---
321
321
322
+
##### `mise.enableSnippets`
323
+
-**Type:**`boolean`
324
+
-**Default:**`true`
325
+
326
+
Suggest task snippets (`mise-task`, `mise-task-script`, ...) in mise configuration files and in file tasks.
327
+
328
+
They are also hidden by `editor.snippetSuggestions` set to `none` and by `editor.suggest.showSnippets` set to `false`, which apply to every extension.
Copy file name to clipboardExpand all lines: package.json
+7-10Lines changed: 7 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -178,16 +178,6 @@
178
178
]
179
179
}
180
180
],
181
-
"snippets": [
182
-
{
183
-
"language": "toml",
184
-
"path": "./snippets/toml-tasks-snippets.json"
185
-
},
186
-
{
187
-
"language": "shellscript",
188
-
"path": "./snippets/file-tasks-snippets.json"
189
-
}
190
-
],
191
181
"configurationDefaults": {
192
182
"[toml]": {
193
183
"editor.quickSuggestions": {
@@ -447,6 +437,13 @@
447
437
"default": true,
448
438
"markdownDescription": "Enable Tera auto-completion in `mise.toml` files."
449
439
},
440
+
"mise.enableSnippets": {
441
+
"order": 14.1,
442
+
"type": "boolean",
443
+
"title": "Enable snippets",
444
+
"default": true,
445
+
"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."
0 commit comments