Results 6 comments of Ricky Zhou

This problem is not specific to Kali. The Python bindings source distribution uploaded to PyPI is broken/unbuildable. The issue seems to be that setup.py is designed to build from inside...

For what it's worth, I have been using my patch at https://github.com/junegunn/fzf/pull/1299 for a while. I just rebased it to master, and thanks to other improvements that have been made...

Your example could maybe look something like this (based off of the example at https://github.com/junegunn/fzf/wiki/Examples-(completion)): ```zsh FZF_PER_CMD_COMPLETION_TRIGGERS[hg]='' _fzf_complete_hg() { local args="$@" if [[ $args == 'hg up'* ]]; then _fzf_complete...

For what it's worth, I would still be interested in merging this if the maintainers are willing. There have been some improvements made to fzf's zsh code since the original...

@aur3l14no That line says to set trigger to the first non-null value out of $FZF_PER_CMD_COMPLETION_TRIGGERS[$cmd], $FZF_COMPLETION_TRIGGER, or '**'. See https://zsh.sourceforge.io/Doc/Release/Expansion.html#Parameter-Expansion for a description of this zsh syntax. Can you provide...

Now that 52594355bfa63ce7d579c7961f4f2fb30b486101 has removed the special case for kill, this has effectively become a one-line change. I also added a simple test case. It wouldn't be difficult to implement...