diff options
Diffstat (limited to 'functions/git_functions.sh')
-rw-r--r-- | functions/git_functions.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions/git_functions.sh b/functions/git_functions.sh index 6ed195a81253..02be2ff5fbae 100644 --- a/functions/git_functions.sh +++ b/functions/git_functions.sh @@ -60,7 +60,7 @@ function wgjira { # wgcheckout combined with a fuzzy search function wgfcheckout { - branchname=$(trim $(git branch | fzf)) + branchname=$(trim $(git branch | fzf-tmux)) [ ! -z "$branchname" ] && wgcheckout "$branchname" || return } |