diff options
| author | ohmyzsh[bot] <54982679+ohmyzsh[bot]@users.noreply.github.com> | 2025-04-27 10:25:02 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-27 10:25:02 +0200 |
| commit | 44913a1f16424f21b5989a0dd7d2c95d02047cec (patch) | |
| tree | 0a1b9c29f67c867d5a4f107ba9c472b881733eeb /plugins/wd/_wd.sh | |
| parent | 959b6cf5eed78f108dc6e0f46b53816f5168dd3a (diff) | |
| download | zsh-44913a1f16424f21b5989a0dd7d2c95d02047cec.tar.gz zsh-44913a1f16424f21b5989a0dd7d2c95d02047cec.tar.bz2 zsh-44913a1f16424f21b5989a0dd7d2c95d02047cec.zip | |
feat(wd): update to v0.10.0 (#13093)
Co-authored-by: ohmyzsh[bot] <54982679+ohmyzsh[bot]@users.noreply.github.com>
Diffstat (limited to 'plugins/wd/_wd.sh')
| -rw-r--r-- | plugins/wd/_wd.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/wd/_wd.sh b/plugins/wd/_wd.sh index 46b032f78..7c416086d 100644 --- a/plugins/wd/_wd.sh +++ b/plugins/wd/_wd.sh @@ -37,6 +37,7 @@ function _wd() { 'rm:Removes the given warp point' 'list:Outputs all stored warp points' 'ls:Show files from given warp point' + 'open:Open warp point in the default file explorer' 'path:Show path to given warp point' 'show:Outputs all warp points that point to the current directory or shows a specific target directory for a point' 'help:Show this extremely helpful text' @@ -73,6 +74,9 @@ function _wd() { ls) _describe -t points "Warp points" warp_points && ret=0 ;; + open) + _describe -t points "Warp points" warp_points && ret=0 + ;; path) _describe -t points "Warp points" warp_points && ret=0 ;; |
