https://github.com/foltik/fish-fasd-fzf
Fish plugin integrating fasd and fzf
https://github.com/foltik/fish-fasd-fzf
fasd fish fish-packages fish-plugin fish-shell fisher fzf fzf-plugin fzf-scripts oh-my-fish
Last synced: 4 months ago
JSON representation
Fish plugin integrating fasd and fzf
- Host: GitHub
- URL: https://github.com/foltik/fish-fasd-fzf
- Owner: foltik
- License: mit
- Created: 2022-04-19T14:53:30.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-01T01:27:34.000Z (over 1 year ago)
- Last Synced: 2025-06-06T10:45:22.720Z (4 months ago)
- Topics: fasd, fish, fish-packages, fish-plugin, fish-shell, fisher, fzf, fzf-plugin, fzf-scripts, oh-my-fish
- Language: Shell
- Homepage:
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fish-fasd-fzf
Fish plugin integrating fasd and fzf.## Setup
First install [fasd](https://github.com/clvv/fasd) and [fzf](https://github.com/junegunn/fzf).Then add the plugin with [fisher](https://github.com/jorgebucaran/fisher):
```
fisher add foltik/fish-fasd-fzf
```## Features
The following standard fasd commands are implemented:```sh
f # find file
d # find dir
a # find file or dir
z # cd to dir
```Additionally, each command supports interactively selecting the result with fzf if no arguments are passed.
## Example Usage
```sh
# Jump to a recently visited directory
you@local ~> z proj
you@local ~/Documents/code/project># Edit a recently accessed file
you@local ~> vim (f config.fish)# Edit a recently accessed file, selected interactively
you@local ~> vim (f)
```