https://github.com/fikovnik/zsh-quickjump
A zsh plugin adding tab completion to quickly navigate to recent files and directories
https://github.com/fikovnik/zsh-quickjump
autojump fasd fzf zsh zsh-plugin zsh-quickjump
Last synced: about 1 month ago
JSON representation
A zsh plugin adding tab completion to quickly navigate to recent files and directories
- Host: GitHub
- URL: https://github.com/fikovnik/zsh-quickjump
- Owner: fikovnik
- License: mit
- Created: 2021-02-17T13:31:30.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-25T13:07:29.000Z (over 4 years ago)
- Last Synced: 2025-02-26T04:31:37.340Z (9 months ago)
- Topics: autojump, fasd, fzf, zsh, zsh-plugin, zsh-quickjump
- Language: Shell
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-zsh-plugins - quickjump - Adds tab completion support for [skim](https://github.com/lotabout/skim) for recent files and directories using [fasd](https://github.com/whjvenyl/fasd). (Completions / ZSH on Windows)
- fucking-awesome-zsh-plugins - quickjump - Adds tab completion support for <b><code> 6093⭐</code></b> <b><code> 223🍴</code></b> [skim](https://github.com/lotabout/skim)) for recent files and directories using <b><code> 102⭐</code></b> <b><code> 10🍴</code></b> [fasd](https://github.com/whjvenyl/fasd)). (Completions / ZSH on Windows)
README
# ZSH quickjump plugin
Adds tab completion support for [fzf](https://github.com/junegunn/fzf) for recent files and directories using [fasd](https://github.com/whjvenyl/fasd).
The following three commands are supported:
```sh
j - jump to a recent directory (fasd -Rdl)
f - edit a recent file (fasd -Rfl)
v - visit a recent file (fasd -Rfl)
```
The `j` command is covered by fasd. For `f` and `v` add the following aliases:
```sh
alias f=$EDITOR
alias v=xdg-open
```