Examples/25: removes parallel: true since we had it enabled by default [ci skip]

This commit is contained in:
李通洲
2025-11-11 10:07:58 +08:00
parent cb0a88df22
commit 056fe21ee2
+6 -12
View File
@@ -174,8 +174,7 @@
"keyIcon": "", // Custom icon override
"key": "│{#red}│ {icon} Rust │{$4}│{#keys}│{$2}",
"text": "rustc --version",
"format": "rustc {~6,13}", // Print 6th to 13th characters (version number)
"parallel": true // Enable parallel execution for performance
"format": "rustc {~6,13}" // Print 6th to 13th characters (version number)
},
{
"type": "command",
@@ -195,32 +194,28 @@
"keyIcon": "",
"key": "│{#red}│ {icon} Clang │{$4}│{#keys}│{$2}",
"text": "clang --version | findstr version", // Finds the line with "version"
"format": "clang {~-6}", // Prints the last 6 characters (version number)
"parallel": true
"format": "clang {~-6}" // Prints the last 6 characters (version number)
},
{
"type": "command",
"keyIcon": "",
"key": "│{#red}│ {icon} NodeJS │{$4}│{#keys}│{$2}",
"text": "node --version",
"format": "node {~1}", // {~1} removes first character (v)
"parallel": true
"format": "node {~1}" // {~1} removes first character (v)
},
{
"type": "command",
"keyIcon": "",
"key": "│{#red}│ {icon} Go │{$4}│{#keys}│{$2}",
"text": "go version | cut -d' ' -f3",
"format": "go {~2}", // {~2} removes first 2 characters (go)
"parallel": true
"format": "go {~2}" // {~2} removes first 2 characters (go)
},
{
"type": "command",
"keyIcon": "",
"key": "│{#red}│ {icon} Zig │{$4}│{#keys}│{$2}",
"text": "zig version",
"format": "zig {}",
"parallel": true
"format": "zig {}"
},
{
"type": "editor",
@@ -231,8 +226,7 @@
"keyIcon": "󰊢",
"key": "│{#red}│ {icon} Git │{$4}│{#keys}│{$2}",
"text": "git version",
"format": "git {~12}",
"parallel": true
"format": "git {~12}"
},
{
"type": "font",