Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 4 years ago)
- Default Branch: master
- Last Pushed: 2021-05-25T13:07:29.000Z (over 3 years ago)
- Last Synced: 2024-11-11T02:36:00.330Z (3 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
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
```