Skip to content
David Baldwin edited this page Jan 2, 2025 · 5 revisions

This section is meant as a community-driven list of user workflows and ways to use television in different contexts to inspire others.

Zed Editor File Finder

This is a drop-in file editor setup for the zed editor leveraging television, a task, and keybinding.

  1. Install television
  2. Add a task for a file finder

tasks.json

{
  "label": "File Finder",
  "command": "zed \"$(tv files)\"",
  "hide": "always",
  "allow_concurrent_runs": true,
  "use_new_terminal": true
},
  1. Add keybinding to open file finder in center terminal

keymap.json

// replace file_finder::Toggle
"cmd-p": [
  "task::Spawn",
  { "task_name": "File Finder", "reveal_target": "center" }
],

This should result in an interaction similar to...

2025-01-02T184704-converted.mp4
Clone this wiki locally