Koichi Murase

Results 1368 comments of Koichi Murase

Thanks. What is the Bash version in your Euler system? Could you provide the result of the following command? ```console $ declare -p BASH_VERSION BASH_VERSINFO ``` Also, what is the...

> [root@localhost ~]# declare -p bash_preexec_imported __bp_imported > -bash: declare: bash_preexec_imported:not found > declare -- __bp_imported="defined" Thanks. This implies that an older version of bash-preexec is loaded. If `/etc/edrAgentGoConf/bash-preexec.sh` is...

Thanks for the report. I forgot to specify the `-a` flag in calling the generator. I'll later create a PR. ```diff diff --git a/completions/cd b/completions/cd index 8de903a68..b0ad71276 100644 --- a/completions/cd...

Thanks for the report, but it doesn't reproduce in my environment. This is one of the types of problems that are difficult to identify the cause when it's not reproducible...

Thanks for testing! OK, it seems I misunderstood the behavior a bit, and it also seems that the problem is happening outside `auto-complete`. Since every input seems to cause the...

@LeonardoMor Q6: What is the result of the following command (before you input `declare -A a`)? ```console $ declare -p | grep -v _ble_history | grep -F .local/state ```

Thank you. I could reproduce the problem by setting `d=/Users/lmoracas/.local/state`. I've identified the bug: `setattr` on the following line should be `setg`: https://github.com/akinomyoga/ble.sh/blob/2f564e636f7b5dd99c4d9793277a93db29e81adf/lib/core-cmdspec.sh#L174 I'll fix it later.

This is a duplicate of #155. `bash-preexec` doesn't offer such a feature. You need to set it up by yourself by overriding `"\r"` (RET), `"\C-o"`, '"\C-x\C-e"', etc. using e.g. `bind...