You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
585 B
21 lines
585 B
# zsh-interactive-cd |
|
|
|
This plugin provides an interactive way to change directories in zsh using fzf. |
|
|
|
## Demo |
|
|
|
 |
|
|
|
## Installation |
|
|
|
1. Install [fzf](https://github.com/junegunn/fzf) by following its [installation instruction](https://github.com/junegunn/fzf#installation). |
|
|
|
2. Add `zsh-interactive-cd` to your plugin list in `~/.zshrc`: |
|
|
|
```zsh |
|
plugins=(... zsh-interactive-cd) |
|
``` |
|
|
|
## Usage |
|
|
|
Press tab for completion as usual, it'll launch fzf automatically. Check fzf’s [readme](https://github.com/junegunn/fzf#search-syntax) for more search syntax usage.
|
|
|