Replies: 2 comments
-
|
I think that's because the shell knows when to autocomplete paths usually when they come right after a command or flag. The shell treats " For the workaround, you can set up a simple custom completion script for # if you're using Bash :)
_alterx_custom_completion() {
local cur
cur="${COMP_WORDS[COMP_CWORD]}"
COMPREPLY=( $(compgen -f -- "$cur") )
}
complete -F _alterx_custom_completion alterx |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Thank you. Works good. But doing |
Beta Was this translation helpful? Give feedback.
0 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.
-
While using -pp param it would be useful to have the tab autocomplete function to load the file name.
For instance, I want to use the file brute.force.txt into the param
wordhere:alterx -p '{{word}}.{{suffix}}' -pp word=brute.force.txtBeta Was this translation helpful? Give feedback.
All reactions