Koichi Murase

Results 1368 comments of Koichi Murase

> similar to what we have in oh-my-zsh I checked the upstream OMZ plugin and realized that this PR is actually not just similar but based on the OMZ plugin....

> Simply dumped the included ngrok completion parameter into custom/ngrok.complete.sh The file contents don't look like a "parameter". Do you mean you've dumped the output of the command `ngrok completion`?

Thank you for your clarification. Then, could you put the following as instructed [here](https://ngrok.com/docs/agent/cli/#ngrok-completion) instead of the full contents of the output? ```bash if _omb_util_binary_exists ngrok; then eval "$(ngrok completion)"...

Actually, the `bash-completion` framework has a loader for this type of completion (produced by ` completion`. I submitted/merged a PR https://github.com/scop/bash-completion/pull/1252 to add an entry for `ngrok` in the `bash-completion`...

> I tried using the command `echo -e $PS1 > file.txt`, You can use `printf '%s\n' "${PS1@P}" > file.txt`

> If this problem is commonplace, would it make sense to add a feature for BLE to detect large inputs and do this automatically? Have you checked [`bleopt line_limit_type`](https://github.com/akinomyoga/ble.sh/wiki/Manual-%C2%A74-Editing#user-content-bleopt-line_limit_type) and...

> ah, you already implemented this! After setting line_limit_type to editor and lowering the limit, I am redirected into vim when I paste a large command. However, I'm also redirected...

Wouldn't just adding a note in the description of `bleopt line_limit_type=editor` suffice? The user wouldn't know `line_limit_type=editor` without reading the description.

It depends on what your terminal actually sends when you press Control+BackSpace. It largely depends on the terminal, as described in [§3.1.1](https://github.com/akinomyoga/ble.sh/wiki/Manual-%C2%A73-Key-Binding#user-content-sec-kspecs-ret). Please read §3.1.1. Some terminals send `C-h`, some...

Ah, OK. This is a typo here: https://github.com/akinomyoga/ble.sh/blob/3d8f6264b3012262a531c52a203505cda08affa7/lib/keymap.vi.sh#L4554-L4555 `"$ch"` should be `"$ch1"`.