Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ wt() {
return 1
fi
case "$1" in
completion|__complete|"")
completion|__complete|list|version|"")
"$wt_bin" "$@"
return $?
;;
Expand Down Expand Up @@ -90,7 +90,7 @@ function wt --description "Git worktree manager with auto-cd"
return $status
end
switch $argv[1]
case completion __complete
case completion __complete list version
$wt_bin $argv
return $status
end
Expand Down
2 changes: 1 addition & 1 deletion wt.fish
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function wt --description "Git worktree manager with auto-cd"
end

switch $argv[1]
case completion __complete
case completion __complete list version
$wt_bin $argv
return $status
end
Expand Down
2 changes: 1 addition & 1 deletion wt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ wt() {

# Pass through commands that produce non-directory output
case "$1" in
completion|__complete|"")
completion|__complete|list|version|"")
"$wt_bin" "$@"
return $?
;;
Expand Down
Loading