my xfce4 dotfiles
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.

23 lines
750 B

3 years ago
  1. # zsh-interactive-cd
  2. This plugin adds a fish-like interactive tab completion for the `cd` command.
  3. To use it, add `zsh-interactive-cd` to the plugins array of your zshrc file:
  4. ```zsh
  5. plugins=(... zsh-interactive-cd)
  6. ```
  7. ![demo](https://user-images.githubusercontent.com/1441704/74360670-cb202900-4dc5-11ea-9734-f60caf726e85.gif)
  8. ## Usage
  9. 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.
  10. ## Requirements
  11. This plugin requires [fzf](https://github.com/junegunn/fzf). Install it by following
  12. its [installation instructions](https://github.com/junegunn/fzf#installation).
  13. ## Author
  14. [Henry Chang](https://github.com/changyuheng)