Easy Telescope-style file finder in Zed #22581
Replies: 4 comments 3 replies
-
@baldwindavid Thanks. This works nicely, however when I open the search the lookup is done through some random files only and not all my workspace. Do you know how to configure that? |
Beta Was this translation helpful? Give feedback.
-
Thanks, this works really well! Had to change the task as so
because zed's name on linux (at least on my install) is zeditor. Really simple but might save someone a minute or two :) |
Beta Was this translation helpful? Give feedback.
-
Many thanks @baldwindavid Also adding a little something. I usually use Anywho, this worked for me. {
"context": "Terminal",
"bindings": {
// "ctrl-/": "workspace::ToggleBottomDock",
"alt-j": ["workspace::SendKeystrokes", "down"],
"alt-k": ["workspace::SendKeystrokes", "up"]
}
} |
Beta Was this translation helpful? Give feedback.
-
That's awesome, thanks. Works like a charm except the builtin terminal is a bit slow. |
Beta Was this translation helpful? Give feedback.
-
There's a been a lot of discussion about telescope-style search in #8279. There's some good workarounds/ideas there, but just posting a drop-in setup that leverages television, a task, and keybinding.
1. Install television
2. Add a task for a file finder
tasks.json
3. Add keybinding to open file finder in center terminal
keymap.json
This should result in an interaction similar to...
2025-01-02T184704.mp4
Beta Was this translation helpful? Give feedback.
All reactions