1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-08 08:20:39 +01:00

feat(wd): update to v0.10.0 (#13093)

Co-authored-by: ohmyzsh[bot] <54982679+ohmyzsh[bot]@users.noreply.github.com>
This commit is contained in:
ohmyzsh[bot]
2025-04-27 10:25:02 +02:00
committed by GitHub
parent 959b6cf5ee
commit 44913a1f16
3 changed files with 27 additions and 3 deletions

View File

@@ -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
;;