Results 108 comments of David Mandelberg

Could the multiple preexec issue be solved in bash 5.0, 5.1, and 5.2 with a new internal variable to suppress it? Something like this before calling preexec: ```sh if [[...

I think I found the formal specification: https://www.unicode.org/versions/Unicode16.0.0/core-spec/chapter-4/#G135165 > Only Latin capital letters A to Z (U+0041..U+005A), ASCII digits (U+0030.. U+0039), U+0020 SPACE, and U+002D HYPHEN-MINUS occur in character names....

Another approach that I like is https://github.com/google/vim-codefmt. Unlike `gq`, it can support formatters that require the entire file, not just specific lines. And it can leave the cursor a lot...

Not sure about other languages, but at least in Python, the formatter is dependent on the project, not the syntax region. E.g., if `pyproject.toml` exists in a parent directory and...

I just realized that `-u NONE` doesn't remove user dirs from `runtimepath`. (Should it?) If I add `-c 'set rtp-=~/.config/vim rtp-=~/.config/vim/after'` after `-c 'set nocompatible'`, the bug doesn't happen. This...

Moving it to a file sourced by my vimrc worked. And now that I think about it more, setting a g: variable in indent/ probably doesn't make too much sense...

I just realized that I can just turn off direxpand. Apparently I [turned it on because of another bug](https://github.com/dseomn/dotfiles/commit/c7b93251918cddb6794053b9816b317c72b1928f), but that seems to be fixed now, so I'll just turn...

> hmm, i wonder if this ought to be considered a pip bug as dynamic version seems to be ignored in its expectations I just ran into this bug, and...