{"id":50592420,"url":"https://github.com/sidoshi/gjump","last_synced_at":"2026-06-05T11:30:30.235Z","repository":{"id":361440535,"uuid":"1178688914","full_name":"sidoshi/gjump","owner":"sidoshi","description":"Replace tmux sessions (partly) with ghostty","archived":false,"fork":false,"pushed_at":"2026-03-11T10:09:58.000Z","size":260,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-30T17:30:53.474Z","etag":null,"topics":["ghostty","tmux"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/sidoshi.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-03-11T09:13:29.000Z","updated_at":"2026-04-27T15:22:48.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/sidoshi/gjump","commit_stats":null,"previous_names":["sidoshi/gjump"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/sidoshi/gjump","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sidoshi%2Fgjump","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sidoshi%2Fgjump/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sidoshi%2Fgjump/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sidoshi%2Fgjump/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sidoshi","download_url":"https://codeload.github.com/sidoshi/gjump/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sidoshi%2Fgjump/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33939225,"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-06-05T02:00:06.157Z","response_time":120,"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":["ghostty","tmux"],"created_at":"2026-06-05T11:30:29.361Z","updated_at":"2026-06-05T11:30:30.229Z","avatar_url":"https://github.com/sidoshi.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GJump\n\nA [Raycast](https://www.raycast.com/) extension that replaces tmux session workflows with native [Ghostty](https://ghostty.org/) windows.\n\nGhostty already supports splits, tabs, and windows — the only thing missing is a quick way to jump between project directories (like tmux sessions). GJump fills that gap: browse your repositories, open them in a dedicated Ghostty window with nvim, and instantly switch back to them later.\n\n## How it works\n\n1. GJump scans your configured project directories and lists them in Raycast\n2. Projects are grouped into **Running** (open Ghostty window), **Recent**, and **All**\n3. Selecting a project either **focuses** its existing window or **spawns** a new Ghostty window for it\n4. New windows `cd` into the project directory and open `nvim`\n5. You can also open a quick **Scratchpad** terminal or type any name to create an ad-hoc named window\n\n## Setup\n\n### 1. Install the extension\n\n```bash\ngit clone https://github.com/siddhartdoshi/gjump.git\ncd gjump\nnpm install\nnpm run dev\n```\n\nThis opens the extension in Raycast in development mode. Use the \"Jump to Project\" command from Raycast.\n\n### 2. Add the shell hook (required)\n\nGhostty doesn't yet support running commands on launch natively, so GJump passes environment variables to the new window and relies on a shell hook to act on them. Add this to your `~/.zshrc`:\n\n```bash\n# GJump shell hook — cd into project dir and open nvim for new sessions\n# https://github.com/sidoshi/GJump\nif [[ -n \"$GHOSTTY_LAUNCH_DIR\" ]]; then\n  cd \"$GHOSTTY_LAUNCH_DIR\"\n\n  if [[ -n \"$GHOSTTY_LAUNCH_NVIM\" \u0026\u0026 -n \"$GHOSTTY_LAUNCH_ID\" \u0026\u0026 ! -f \"/tmp/ghostty-launch-$GHOSTTY_LAUNCH_ID\" ]]; then\n    touch \"/tmp/ghostty-launch-$GHOSTTY_LAUNCH_ID\"\n    zoxide add \"$GHOSTTY_LAUNCH_DIR\"\n    nvim .\n  fi\nfi\n```\n\nThe touch-file guard (`/tmp/ghostty-launch-*`) prevents nvim from reopening in every new split/tab within the same window.\n\n## Configuration\n\nOpen the extension preferences in Raycast to configure:\n\n- **Project Roots** — Comma-separated root directories to scan for projects (default: `~/gh,~/work`)\n- **Direct Projects** — Comma-separated directories to add as projects directly (e.g. `~/dotfiles`)\n\n## Disclaimer\n\nThis is AI-generated slop and a very hacky solution. It's tuned to my personal workflow and doesn't replace all tmux features — notably long-running sessions, detach/reattach, and remote persistence are not covered. Use at your own risk.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsidoshi%2Fgjump","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsidoshi%2Fgjump","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsidoshi%2Fgjump/lists"}