diff options
| author | ohmyzsh[bot] <54982679+ohmyzsh[bot]@users.noreply.github.com> | 2024-05-21 20:48:54 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-21 20:48:54 +0200 |
| commit | f6b3fc84d192274f245a7322c3994767c5e68691 (patch) | |
| tree | 04c3a062f46f5fdbe0cd049475d01dad98e2261b /plugins/wd/README.md | |
| parent | 04b66b230857fb9bc28af5e7590b09ff79f888fa (diff) | |
| download | zsh-f6b3fc84d192274f245a7322c3994767c5e68691.tar.gz zsh-f6b3fc84d192274f245a7322c3994767c5e68691.tar.bz2 zsh-f6b3fc84d192274f245a7322c3994767c5e68691.zip | |
feat(wd): update to version v0.7.0 (#12436)
Co-authored-by: ohmyzsh[bot] <54982679+ohmyzsh[bot]@users.noreply.github.com>
Diffstat (limited to 'plugins/wd/README.md')
| -rw-r--r-- | plugins/wd/README.md | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/plugins/wd/README.md b/plugins/wd/README.md index 0c71c0565..bf19031f8 100644 --- a/plugins/wd/README.md +++ b/plugins/wd/README.md @@ -142,7 +142,7 @@ rm -f ~/.zcompdump; compinit If you want to make use of the `fzf`-powered browse feature to fuzzy search through all your warp points, set up a keybind in your `.zshrc`: ```zsh -bindkey '^G' wd_browse +bindkey ${FZF_WD_BINDKEY:-'^B'} fuzzy_wd_widget ``` ## Usage @@ -158,6 +158,19 @@ If a warp point with the same name exists, use `wd add foo --force` to overwrite **Note:** a warp point cannot contain colons, or consist of only spaces and dots. The first will conflict in how `wd` stores the warp points, and the second will conflict with other features, as below. +* Add warp point to any directory with default name: + +```zsh +wd addcd /foo/ bar +``` + +* Add warp point to any directory with a custom name: + +```zsh +wd addcd /foo/ +``` + + You can omit point name to automatically use the current directory's name instead. * From any directory, warp to `foo` with: |
