ichizok

Results 41 comments of ichizok

When I tried, https://api.github.com/authorizations returned "404 Not Found". `0:` in the error message is caused by #88 .

Oh... the issue number in upstream vim matches this.

Please check `:set rtp` and `:scriptnames` when the error occurs.

For building Vim as universal: * set CC=`xcrun --sdk macosx11.0 clang` (on 10.15. on 11.0 is ok to default) * append `-arch arm64e -arch x86_64` to CFLAGS and LDFLAGS ref:...

I didn't know `--with-macarchs`... thank you. As to arm64e, since Apple native apps and executables are built for arm64e (and x86_64) so I just thought of using it and not...

It looks the similar error: https://github.com/lervag/vimtex/issues/1764 Probably can fix it by updating vimtex.

Sorry, I could not reproduce... Please present the minimal executable example: vimrc, gvimrc, a few user input, using Core Text renderer or not.

Hmm.. I could not reproduce. What your configure/build steps of MacVim? My env and steps: On macOS 10.13.6 / 10.15.5, ``` export CPPFLAGS=-DWE_ARE_PROFILING export CFLAGS=-Wall -Wextra -Wshadow -Wno-unknown-pragmas -g -glldb...

I could reproduce on my new Retina machine (I had only non-Retina machines until yesterday..). Reverting `[self processInputQueue]` makes CI fail, thus I'll do it and comment-out the test as...

[8.1.0342](https://github.com/vim/vim/commit/94f01956a583223dafe24135489d0ab1100ab0ad) の変更が原因です。 修正: ```diff --- a/src/misc2.c +++ b/src/misc2.c @@ -6366,11 +6366,6 @@ parse_queued_messages(void) { win_T *old_curwin = curwin; - // Do not handle messages while redrawing, because it may cause...