Koichi Murase

Results 1368 comments of Koichi Murase

I think we can now close this issue as no reports arose after applying the change. Thank you all.

Thanks for the report. I tried it in Fedora 41, but the problem doesn't reproduce with - bash-5.2 + ble.sh + zoxide I also tried the following combinations, but none...

> ``` > $ declare -p _fzf_orig_completion_cd > -bash: declare: _fzf_orig_completion_cd: not found > ``` > > [...] try to figure out why the last command returns an error. Ah,...

Thanks. I now tried your files, but I still cannot reproduce the problem. > If I source this file in `.bashrc`, I run into the issue above: > > https://evermeet.cx/paste/fzf.7qs6.sh...

I could minimize the setup in your environment: ```bash # ~/.bashrc . /etc/profile.d/bash_completion.sh . ~/.local/share/blesh/ble.sh ble-import -d integration/fzf-completion eval "$(zoxide init --cmd cd bash)" ``` Then, I realized that the...

I further reduced the setup. It was actually unrelated to the version of bash-completion, but how the bash-completion was sourced. The system bash-completion tries to source `/etc/bash_completion.d/*.sh`, and one of...

I could even simplify the reproducer as follows. The key was dropping `-d`. ```bash # bashrc source /path/to/ble.sh --norc ble-import integration/fzf-completion eval "$(zoxide init --cmd cd bash)" ``` I'll later...

I fixed it in commit https://github.com/akinomyoga/blesh-contrib/commit/a5d3a2e017c32f0c59a5bd609e43bf78b1b50f9e. This was an issue with the zoxide integration (which is automatically loaded) and was actually identical to the problem reported for `fzf` in #250...

> Thanks for the info. I am still a bit confused why this only seemed to be triggering an issue on Linux. (Or maybe anything but macOS.) I'm not sure...