Created
October 11, 2025 22:01
-
-
Save remorses/549f966b58a974e00c4615b8c356de58 to your computer and use it in GitHub Desktop.
Add support for split diff view and word highlights to Zed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ~/.config/zed/tasks.json | |
| [ | |
| { | |
| "label": "Critique", | |
| "command": "bunx critique --watch", | |
| "shell": { | |
| "program": "sh" | |
| }, | |
| "hide": "on_success", | |
| "reveal_target": "center", | |
| "show_summary": false, | |
| "show_command": false, | |
| "allow_concurrent_runs": false, | |
| "reveal": "always", | |
| "use_new_terminal": true | |
| } | |
| ] | |
| // ~/.config/zed/keymap.json | |
| { | |
| "bindings": { | |
| "cmd-shift-g": [ | |
| "task::Spawn", | |
| { "task_name": "Critique", "reveal_target": "center" } | |
| ] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
let's go