We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I create the following alias inside a desk:
# Tmux shortcut alias t="tmux"
And add, to the same desk, the following function:
# Do something cool function tns() { ... }
I would to receive the following output when type desk (with the desk loaded)
desk
global - Common shared configurations t Tmux shortcut tns Do something cool
When I do that, I receive:
global - Common shared configurations t Tmux shortcut # Do something cool Do something cool tns Do something cool
I've noticed that this only happens with aliases that has a high similarity with functions.
For example, I have a k alias and a kl alias. This won't happen. But if I have a k alias and a kl function this happens.
k
kl
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Desired behaviour
When I create the following alias inside a desk:
And add, to the same desk, the following function:
I would to receive the following output when type
desk
(with the desk loaded)Actual behaviour
When I do that, I receive:
Aditional info
I've noticed that this only happens with aliases that has a high similarity with functions.
For example, I have a
k
alias and akl
alias. This won't happen. But if I have ak
alias and akl
function this happens.The text was updated successfully, but these errors were encountered: