{"id":43566322,"url":"https://github.com/ejfox/tmux-link-grab","last_synced_at":"2026-04-24T17:04:16.446Z","repository":{"id":331410378,"uuid":"1113230805","full_name":"ejfox/tmux-link-grab","owner":"ejfox","description":null,"archived":false,"fork":false,"pushed_at":"2026-04-18T13:26:45.000Z","size":50,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-18T15:29:13.525Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ejfox.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","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":"2025-12-09T17:39:32.000Z","updated_at":"2026-04-18T13:26:50.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/ejfox/tmux-link-grab","commit_stats":null,"previous_names":["ejfox/tmux-link-grab"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/ejfox/tmux-link-grab","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ejfox%2Ftmux-link-grab","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ejfox%2Ftmux-link-grab/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ejfox%2Ftmux-link-grab/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ejfox%2Ftmux-link-grab/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ejfox","download_url":"https://codeload.github.com/ejfox/tmux-link-grab/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ejfox%2Ftmux-link-grab/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32232641,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T13:21:15.438Z","status":"ssl_error","status_checked_at":"2026-04-24T13:21:15.005Z","response_time":64,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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-02-03T21:33:30.275Z","updated_at":"2026-04-24T17:04:16.441Z","avatar_url":"https://github.com/ejfox.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# tmux-link-grab\n\nFast URL seeking for tmux with fzf. `prefix + s` → pick URL → open in browser.\n\n![demo](demo.gif)\n\n## Features\n\n- **Flexible scope** - search current pane, window, session, or history\n- **Pane labels** - see which pane each URL came from (e.g. `[nvim] https://...`)\n- **Persistent history** - access previously opened URLs even after scrollback is gone\n- **Proper tmux citizen** - configure via tmux options, respects your copy-command\n- **fzf interface** - j/k navigation, fuzzy search\n\n## Install\n\n### TPM (recommended)\n\n```tmux\nset -g @plugin 'ejfox/tmux-link-grab'\n```\n\nThen `prefix + I` to install. Keybinding is set up automatically.\n\n### Manual\n\n```bash\ngit clone https://github.com/ejfox/tmux-link-grab ~/.tmux/plugins/tmux-link-grab\n```\n\nAdd to `.tmux.conf`:\n\n```tmux\nrun-shell ~/.tmux/plugins/tmux-link-grab/plugin.tmux\n```\n\n## Config\n\nAll options go in your `.tmux.conf` **before** the plugin line:\n\n```tmux\n# Key binding (default: s)\nset -g @link-grab-key \"s\"\n\n# Scope: \"pane\", \"window\", \"session\", or \"history\" (default: window)\nset -g @link-grab-scope \"window\"\n\n# Action: \"open\", \"copy\", or \"buffer\" (default: open)\nset -g @link-grab-action \"open\"\n\n# Show pane labels (default: true)\nset -g @link-grab-labels \"true\"\n\n# Scrollback lines to search (default: 200)\nset -g @link-grab-lines \"200\"\n\n# History file (default: ~/.tmux-link-history, set \"\" to disable)\nset -g @link-grab-history \"$HOME/.tmux-link-history\"\nset -g @link-grab-history-max \"100\"\n\n# Load plugin\nset -g @plugin 'ejfox/tmux-link-grab'\n```\n\n## Actions\n\n| Action | Behavior |\n|--------|----------|\n| `open` | Open URL in browser |\n| `copy` | Copy to system clipboard (respects your `copy-command`) |\n| `buffer` | Save to tmux paste buffer (`prefix + ]` to paste) |\n\n## Keys\n\n| Key | Action |\n|-----|--------|\n| Enter | Execute action |\n| Space | Execute action |\n| j/k | Navigate |\n| Esc | Cancel |\n\n## Feedback\n\nActions show confirmation in tmux status line:\n- `Opened: github.com`\n- `Copied: https://example.com/path...`\n- `Saved to tmux buffer`\n- `No URLs found`\n\n## Requirements\n\n- tmux 3.0+ (for display-popup)\n- fzf\n- `open` (macOS) or `xdg-open` (Linux)\n\n## License\n\nGNU GPL v3\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fejfox%2Ftmux-link-grab","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fejfox%2Ftmux-link-grab","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fejfox%2Ftmux-link-grab/lists"}