Renan Valieris
Renan Valieris
hello, I feel your pain, I've been using conda for years now and had my fair share of dependency woes, trying to figure out the root cause of the conflict...
hello, the error is due to your version of sra-tools, see [this message](https://github.com/ncbi/sra-tools): ``` August 4, 2022 : Security Update Due to updated security at NCBI, versions of the SRA...
hello, sra-tools also have cache directories it uses to download the data, it could be those, check `vdb-config -i`: https://github.com/ncbi/sra-tools/wiki/03.-Quick-Toolkit-Configuration https://github.com/ncbi/sra-tools/wiki/05.-Toolkit-Configuration
hello, the package is available in bioconda, follow the steps in this page to setup: https://bioconda.github.io/
yes, thats a good point. the print(list) is something I added very early on but haven't changed since but it should have been something simpler like one package per line....
same issue here, I found that overriding `__git_files` with this function solves the problem for me: ``` __git_files () { _wanted files expl 'local files' _files } ``` thats for...
I tried running this but `zsh_highlight_files_extract_ls_colors` doesn't seems to work. `_zsh_highlight_highlighter_files_ansi_to_zle` is looping on my LS_COLORS but its not matching anyhing. my LS_COLORS is set with dircolors -b
> Can you attach your LS_COLORS? I'll see if I can get it working. sure, https://pastebin.com/raw/G67RnpRX
same results, but I figured it out, `_zsh_highlight_highlighter_files_ansi_to_zle` needs to `setopt extended_glob`, otherwise `$#match` is always zero. variables set: https://pastebin.com/raw/eHiqxwGw now its working. compared to LS_COLORS, directories, symlinks, and executables...
@danielshahaf , I think its because the function `zsh_highlight_files_extract_ls_colors` is executed on my `.zshrc` after the plugin was loaded.