{"id":50451275,"url":"https://github.com/codingfragments/zellij-flash","last_synced_at":"2026-06-01T00:03:04.936Z","repository":{"id":358756326,"uuid":"1242933799","full_name":"codingfragments/zellij-flash","owner":"codingfragments","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-28T17:21:59.000Z","size":102,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-28T18:23:06.031Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codingfragments.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-18T22:36:51.000Z","updated_at":"2026-05-28T17:22:02.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/codingfragments/zellij-flash","commit_stats":null,"previous_names":["codingfragments/zellij-flash"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/codingfragments/zellij-flash","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codingfragments%2Fzellij-flash","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codingfragments%2Fzellij-flash/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codingfragments%2Fzellij-flash/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codingfragments%2Fzellij-flash/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codingfragments","download_url":"https://codeload.github.com/codingfragments/zellij-flash/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codingfragments%2Fzellij-flash/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33753931,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-31T02:00:06.040Z","response_time":95,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-06-01T00:03:03.333Z","updated_at":"2026-06-01T00:03:04.929Z","avatar_url":"https://github.com/codingfragments.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# zellij-flash\n\n![zellij-flash demo](doc/demo.gif)\n\nA Zellij plugin for selecting and copying text from pane scrollback — with\nnvim-flash-style jump-to-word and jump-to-line navigation.\n\n## Use case\n\nZellij has no built-in way to select arbitrary text from a terminal pane's\nscrollback. `zellij-flash` opens a floating pane that renders the source pane's\noutput, lets you navigate it with a cursor, select text precisely, and copy it\nto the clipboard or insert it directly into the source pane.\n\nTypical workflows:\n- Copy a URL, path, or command that scrolled past\n- Grab a block of output for a ticket or chat message\n- Insert a previous command back into the shell without retyping\n\n## Install\n\nBuild from source:\n\n```sh\ncargo build --release --target wasm32-wasip1\n```\n\nCopy `target/wasm32-wasip1/release/zellij_flash.wasm` to your Zellij plugin\ndirectory (e.g. `~/.config/zellij/plugins/`).\n\n## Configure\n\nAdd a keybind in your Zellij config (`~/.config/zellij/config.kdl`):\n\n```kdl\nkeybinds {\n    normal {\n        bind \"Alt f\" {\n            LaunchOrFocusPlugin \"file:~/.config/zellij/plugins/zellij_flash.wasm\" {\n                profiles \"viewport,200,2000\"\n                size     \"90%x85%\"\n            }\n        }\n    }\n}\n```\n\n### Configuration keys\n\n| Key | Default | Description |\n|---|---|---|\n| `profiles` | `\"viewport,200,2000\"` | Comma-separated depth profiles. `viewport` = visible area only; a number = that many scrollback lines. |\n| `size` | `\"90%x85%\"` | Float dimensions as `WIDTHxHEIGHT`. Percentages or absolute cells. |\n\n## Usage\n\nPress the keybind to open the float. The source pane's scrollback is rendered\nwith relative line numbers (cursor row = 0, other rows show distance).\n\n| Key | Action |\n|---|---|\n| `↑ ↓ ← →` | Move cursor |\n| `PgUp / PgDn` | Half-page jump, cursor re-centers |\n| `Space` | Anchor / clear selection |\n| `s` | Word jump — type chars, pick a label |\n| `l` | Line jump — pick a line label |\n| `g` | Cycle scrollback depth |\n| `Enter` | Copy selection to clipboard, close |\n| `Shift-Enter` | Insert selection into source pane, close |\n| `Esc` | Cancel jump → cancel selection → close |\n\nSee [`doc/keybindings.md`](doc/keybindings.md) for the full keybinding reference and [`doc/configuration.md`](doc/configuration.md) for all configuration options with defaults.\n\n## Status\n\nv0.1.0 released. See [`doc/plan/mvp.md`](doc/plan/mvp.md) for what shipped and why, and [`doc/plan/future.md`](doc/plan/future.md) for the ideas backlog.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodingfragments%2Fzellij-flash","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodingfragments%2Fzellij-flash","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodingfragments%2Fzellij-flash/lists"}