{"id":48576960,"url":"https://github.com/rtech91/justjump","last_synced_at":"2026-04-08T15:46:03.215Z","repository":{"id":256053803,"uuid":"843910952","full_name":"rtech91/justjump","owner":"rtech91","description":"Just jump into one of your project's predefined directory","archived":false,"fork":false,"pushed_at":"2025-07-28T17:41:31.000Z","size":44,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-28T19:15:05.399Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","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/rtech91.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}},"created_at":"2024-08-17T19:42:29.000Z","updated_at":"2025-07-28T17:41:36.000Z","dependencies_parsed_at":"2025-07-19T17:16:15.348Z","dependency_job_id":"b7fe9e2d-345d-48ee-92c9-89edb3e6fa7f","html_url":"https://github.com/rtech91/justjump","commit_stats":null,"previous_names":["rtech91/justjump"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/rtech91/justjump","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtech91%2Fjustjump","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtech91%2Fjustjump/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtech91%2Fjustjump/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtech91%2Fjustjump/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rtech91","download_url":"https://codeload.github.com/rtech91/justjump/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtech91%2Fjustjump/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31562696,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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-04-08T15:46:03.102Z","updated_at":"2026-04-08T15:46:03.195Z","avatar_url":"https://github.com/rtech91.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# JustJump\n\nJustJump is a simple tool to help you jump between directories quickly.\n\n## Table of Contents\n\n- [Requirements](#requirements)\n- [Installation](#installation)\n- [Shell integration](#shell-integration)\n- [Usage](#usage)\n- [Configuration](#configuration)\n- [DDEV Integration](#ddev-integration)\n\n## Requirements\n\nJustJump requires the following dependencies to be installed on your system:\n- [Go](https://golang.org/dl/)\n- [Git](https://git-scm.com/downloads) (optional)\n- [Make](https://www.gnu.org/software/make/)\n\n## Installation\n\n### DDEV Integration\nIf you are using DDEV, see [DDEV Integration instructions](./DDEV_INTEGRATION.md) for container setup.\n\n\n### 1. Recommended: Install with the official script\n\n\nFor most users, run this command (no need to download the source):\n\n```bash\ncurl -sSf https://rtech91.github.io/justjump/install.sh | bash\n```\n\nThis will:\n- Download and install JustJump to `~/.local/bin` (no sudo required)\n- Set up shell integration for Bash or Zsh automatically\n\n---\n\n### 2. Advanced: Build from source (if you downloaded the source code)\n\nIf you have cloned or downloaded the source code, you can build and install manually:\n\n```sh\nmake build-release\nmake install\n```\n\nThis will build the binary and install it to `~/.local/bin`. You do not need sudo for this location.\n\nTo uninstall JustJump, run the following command:\n\n```sh\nmake remove\n```\n\n## Shell integration\n\n**`Important note: The shell integration is necessary to use JustJump in your shell properly.`**\n\nTo integrate JustJump with your shell, add the following line to your shell configuration file (e.g. `~/.bashrc`, `~/.zshrc`):\n\n```sh\n[ -f ~/.justjumprc ] \u0026\u0026 source ~/.justjumprc\n```\n\nYou can automatically add this line to your shell config by running:\n\n```sh\nif [ -n \"$ZSH_VERSION\" ]; then\n  echo '[ -f ~/.justjumprc ] \u0026\u0026 source ~/.justjumprc' \u003e\u003e ~/.zshrc\nelif [ -n \"$BASH_VERSION\" ]; then\n  echo '[ -f ~/.justjumprc ] \u0026\u0026 source ~/.justjumprc' \u003e\u003e ~/.bashrc\nfi\n```\n\nThen copy the `.justjumprc` file to your home directory.\nBy default in the `misc/rc/` directory you can find the examples of the `.justjumprc` file for `bash` and `zsh` shells.\n\n## Usage\n\nTo use JustJump, simply run `jj` in your terminal and select the directory you want to jump to.\n```sh\njj\n```\n\nYou can also pass arguments to `justjump` or `jj`.\n- `--help`: Display help information\n- `--global` or `-G`: Perform a global jump across registered projects\n\n### Add Command\n\nThe `add` command allows you to register a directory as a jump root.\n\nTo add a local jump root for the current directory:\n```sh\njj add\n```\n\nTo add a global jump root for the current directory:\n```sh\njj add --global\n```\nor\n```sh\njj add -G\n```\n\n### Remove Command\n\nThe `remove` command allows you to unregister a directory as a jump root.\n\nTo remove a local jump root for the current directory:\n```sh\njj remove\n```\n\nTo remove a global jump root for the current directory:\n```sh\njj remove --global\n```\nor\n```sh\njj remove -G\n```\n\n### Verify Command\n\nThe `verify` command checks if the local or global folders exist.\n\nTo verify local folders, run:\n```sh\njj verify\n```\n\nTo verify global folders, run:\n```sh\njj verify --global\n```\n\nor \n```sh\njj verify -G\n```\n\n## Configuration\n\nJustJump uses a few configuration files to manage jump points and settings.\n\n### Global Jump Root Registry\n\nThe global jump root registry is managed as a drop-in directory located at:\n```sh\n~/.config/justjump/jumproots.d/\n```\n\nEach global jump root is represented as a file with the `.jpath` extension. The file name corresponds to the jump root name, and the file content contains the absolute path to the directory.\n\nTo manually add a global jump root, create a file in the `jumproots.d` directory:\n```sh\necho \"/absolute/path/to/directory\" \u003e ~/.config/justjump/jumproots.d/yourproject.jpath\n```\n\nTo remove a global jump root, delete the corresponding `.jpath` file:\n```sh\nrm ~/.config/justjump/jumproots.d/yourproject.jpath\n```\n\n### .justjump.yaml\n\nThis file contains predefined jump points that you can use to jump to your project directories quickly.\n\nExample:\n```yaml\njumppoints:\n  - folder1/\n  - subfolder/folder2/\n  - folder3/\n```\n\nSee and use example in the misc/config/local directory.\nDon't forget to copy the `.justjump.yaml` file to your project directory and update the `jumppoints` list with your project directories.\n\n#### Note:\n**By default, the list of jump points will contain the project's root directory at the first position.**","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frtech91%2Fjustjump","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frtech91%2Fjustjump","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frtech91%2Fjustjump/lists"}