Aloxaf

Results 21 issues of Aloxaf

Hello, I'm planning to add zsh support for this cool project. But I found `mcfly search` will immediately insert the result to commandline via ioctl, which is unusable in zle...

enhancement

I noticed that you're not using the default rust style guidelines. It would be better to use [rustfmt](https://github.com/rust-lang/rustfmt) to format your code so that coding style can be unified among...

**Describe the bug** zsh crashes when completing `ffmpeg -i` with p10k as the theme The code that causes the bug: https://github.com/Aloxaf/fzf-tab/blob/78b4cefb27dc2bef5e4c9ac3bf2bd28413620fcd/fzf-tab.zsh#L102 https://github.com/romkatv/powerlevel10k/blob/7b0698debf56c80f4e805164537c6401cb88ab2e/internal/p10k.zsh#L3208-L3211 https://github.com/zsh-users/zsh/blob/ce0660b7ba283e3208db28a8763796816a587259/Completion/Unix/Command/_ffmpeg#L109 https://github.com/zsh-users/zsh/blob/ce0660b7ba283e3208db28a8763796816a587259/Completion/Base/Utility/_call_program#L32 - Remove `COLUMNS=500` can fix this...

bug
zsh

fzf-tab can't distinguish groups with the same member ```zsh _tst() { compadd -X group1 -s _suffix1 result; compadd -X group2 -s _suffix2 result } compdef _tst tst ```

bug

```zsh zstyle ':completion:*' completer _complete _match _tst() { compadd aloxaf/fzf-tab junegunn/fzf another/project } compdef _tst tst ``` `tst *tab` get no result

bug

This bug was introduced in 6685da3fad7decf4536314e37c081146f5c132cb, which fixed the bug below: ```zsh zstyle ':completion:*' matcher-list '' 'm:{[:lower:]-}={[:upper:]_}' 'r:|[.,_-]=* r:|=*' 'r:|.=* r:|=*' touch a-b-c rg -\t # The file "a-b-c" will...

bug
help wanted
zsh

**Describe the bug** If a user types something before tmux popup shows, these characters will be print directly to the commandline, not taken as the input of fzf. **To Reproduce**...

bug

`_approximate` will "hook" compadd as well. A way to support it is to unfunction compadd when call _approximate and re-define it when call other completer/functions (_complete, _description).

enhancement