I added a bash shell, and it improved the speed slightly:
tasks.json
[
{
"label": "File Finder",
"command": "zed \"$(tv files)\"",
"hide": "always",
"allow_concurrent_runs": false,
"use_new_terminal": true,
"shell": {
"program": "/bin/bash"
}
},
{
"label": "Find in Files",
"command": "zed \"$(tv text)\"",
"hide": "always",
"allow_concurrent_runs": false,
"use_new_terminal": true,
"shell": {
"program": "/bin/bash"
}
}
]
keymap.json
"cmd-p": [
"task::Spawn",
{ "task_name": "File Finder", "reveal_target": "center" }
],
"cmd-f": [
"task::Spawn",
{ "task_name": "Find in Files", "reveal_target": "center" }
]
.png)


