Skip to content

Commit

Permalink
Merge pull request #10 from embik/fix-alias-usage
Browse files Browse the repository at this point in the history
shell: properly use alias in shell magic
  • Loading branch information
embik authored Nov 21, 2023
2 parents 53adb7e + 3a26b2d commit 605edf2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cmd/shell/files/bash/kbs.source
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ function kbs() {
eval "$(_kbs_bin use $(_kbs_bin ls | _inline_fzf))"
else
# if parameters are passed, we just call the kbs binary directly
${_kbs_bin} $@
_kbs_bin $@
fi
}
2 changes: 1 addition & 1 deletion src/cmd/shell/files/zsh/kbs.source
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ function kbs() {
eval "$(_kbs_bin use $(_kbs_bin ls | _inline_fzf))"
else
# if parameters are passed, we just call the kbs binary directly
${_kbs_bin} $@
_kbs_bin $@
fi
}

0 comments on commit 605edf2

Please sign in to comment.