Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```