Aloxaf

Results 134 comments of Aloxaf

Thanks @romkatv and @xPMo. `zsh-ls-colors` is cool, it helps a lot.

A basic support has been done with the help of @xPMo 's zsh-ls-colors ![image](https://user-images.githubusercontent.com/17017672/76684764-a1b71f00-6649-11ea-8319-73784648463e.png)

> But the symbolic link is buggy @webmastak Yes...it's a bug introduced in f81cee85dc1cb955f1dd981f58839a825856073c and has been fixed in https://github.com/Aloxaf/fzf-tab/commit/749e86b28f777a173f7307df312d2a78b8c7c661. I think I should write some tests for it. >...

@cradesto I'm not sure. Have you set list-colors correctly?

I think this is a question about compsys, not fzf-tab. A simple solution is override the default completion functions/completer: ```zsh _files() { local files=($(fd --hidden --follow --type=f)) compadd -a -f...

Umm, compsys itself doesn't support streaming mode, and nor does fzf-tab. To take advantage of streaming mode of fzf we should call it in advance. ```zsh _files() { compadd -f...

> If this is done from within fzf-tab, then it should be possible Yes, that sounds great. But currently, fzf-tab's function is built for compsys and are all blocking. Considering...

> but if I do vim prefix then completion will be shown 3 times for me I can't reproduce this, but maybe you could add a flag to prevent _files...

> Would it be possible to hook compadd and stream to fzf from there? That's what's [fzf-tab-completion](https://github.com/lincheney/fzf-tab-completion) does. But normally compadd will receive a **group** of candidates at a time....

> What's the downside? I didn't choose this way mainly for speed. Another is for some function like getting the common prefix of candidates or sort the candidates or group...