Skip to content

Tab autocomplet for wordlist not working in zsh #405

Answered by secure-77
secure-77 asked this question in Q&A
Discussion options

You must be logged in to vote

i have some news:

the thing about the md5sum tool was a recent issue 🙄 and is fixed in the next release. i took a look what they changed to fix the md5sum problem: zsh-users/zsh@c843af6

playing a little bit with the _feroxbuster script i figured out that this little change will fix the problem for me:

changing this

   if is-at-least 5.2; then
        _arguments_options=(-s -S -C )
    else
        _arguments_options=(-s -C)
    fi

to this

   if is-at-least 5.2; then
        _arguments_options=(-s -S -C '*: :_files')
    else
        _arguments_options=(-s -C '*: :_files')
    fi

i can make a pull request if you want but i am not familiar with this script and syntax (it was more try and er…

Replies: 3 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by secure-77
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants