dots-of-war/eggs/zed/tasks.json

36 lines
1.3 KiB
JSON
Raw Permalink Normal View History

// Static tasks configuration.
[
{
2024-12-05 21:10:22 +00:00
"label": "Cargo nextest run",
"command": "cargo nextest run",
"env": {},
//"cwd": "/path/to/working/directory",
"use_new_terminal": false,
"allow_concurrent_runs": false
},
{
"label": "Cargo run",
"command": "cargo run",
"env": {},
//"cwd": "/path/to/working/directory",
"use_new_terminal": false,
"allow_concurrent_runs": false
2024-12-14 12:32:26 +00:00
},
{
"label": "search:project",
"command": "QUERY=${ZED_SELECTED_TEXT:-}; FILE=$(rg --column --hidden --line-number --no-heading --color=always --smart-case --colors match:fg:green --colors path:fg:white --colors path:style:nobold --glob '!**/.git/' '--glob' '!**/node_modules' \"$QUERY\" . | fzf --ansi --delimiter : --preview 'bat --style=numbers,changes,header --color=always --highlight-line {2} {1}' --preview-window 'up:60%:+{2}+3/3' --layout=reverse --query \"$QUERY\" --print-query | tail -1); if [ -n \"$FILE\" ]; then LINE=$(echo $FILE | cut -d':' -f2); COL=$(echo $FILE | cut -d':' -f3); FILE=$(echo $FILE | cut -d':' -f1); zed $FILE:$LINE:$COL; fi",
"env": {},
"cwd": "${ZED_WORKTREE_ROOT}",
"allow_concurrent_runs": false,
"use_new_terminal": false,
"reveal": "always",
"hide": "on_success",
"shell": {
"with_arguments": {
"program": "/bin/bash",
"args": ["--login"]
}
}
}
]