Roland Walker
Roland Walker
I noticed this old PR, squashed and rebased it.
So the correct implementation would - memcpy global `environ` before forking - manually add a pointer to "ITERM2_COPROCESS_TTY=blah" to the copy - defend against the corner case where `$ITERM2_COPROCESS_TTY` was...
It should be as straightforward as something like ```zsh fzf-tab-partial-and-complete() { if [[ $LASTWIDGET = 'fzf-tab-partial-and-complete' ]]; then fzf-tab-complete else zle complete-word fi } zle -N fzf-tab-partial-and-complete bindkey '^I' fzf-tab-partial-and-complete...
Hi! This arises from my change, and I will fix it. The divide-by-zero is fixed but not released. I thought the vi behavior was correct, because `` could be inserted...
Hi! I can't replicate this. I wonder what it depends upon. Do you see the same issue if you terminate the `show create table` statement with `\G` instead of `;`?
You might go ahead and upgrade mycli if possible, as I am running 1.26.1. But I don't think that is the issue. I just tried Python 3.10 and it doesn't...
That's neat. The column header is wrong too. It should be ``` select 'a\nb'; +---+ | a | | b | |---| | a | | b | +---+ ```...
Try setting ``` table_format = psql ``` in `~/.myclirc` if you currently have `ascii`.
You make good points. The behavior of `ascii` makes no sense with `\n` and we should look into the relevant code for bugs. It's desirable to have ways to emulate...
Hi! What happens if you run this command? ``` python -c 'from urllib.parse import urlparse, unquote; uri = urlparse("mysql://username:passwordWith@and@[email protected]:5555/mydb"); print(uri.username); print(uri.password);' ``` Here I get ``` username passwordWith@and@m ``` suggesting...