Replies: 3 comments 6 replies
-
|
If you installed xmake with powershell/bash command, it should already be present |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
you can also update to dev version |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Auto completion of I did some changes here: #compdef xmake xrepo
_xmake_zsh_complete() {
local completions=("${(@f)$(XMAKE_SKIP_HISTORY=1 XMAKE_ROOT=y xmake lua private.utils.complete 0 "$words[@]")}")
compadd -Q -S '' -- ${completions}
}
_xrepo_zsh_complete() {
local completions=("${(@f)$(XMAKE_SKIP_HISTORY=1 XMAKE_ROOT=y xmake lua private.xrepo.complete 0 "$words[@]")}")
compadd -Q -S '' -- ${completions}
}
compdef _xmake_zsh_complete xmake
compdef _xrepo_zsh_complete xrepo |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is your feature request related to a problem? Please describe.
First of all, xmake is awlsome, thanks for all the work that you've done.
And is there any script or solution for shell completion, it's useful..i think.
Finally, thanks.
Describe the solution you'd like
oh-my-zsh plugins..maybe
Describe alternatives you've considered
No response
Additional context
No response
Beta Was this translation helpful? Give feedback.
All reactions