Andrew Cantino
Andrew Cantino
I hope it's not more than a couple minutes.
I'm glad it finished, but am surprised it took so long! What kind of computer do you have?
Agreed, I think this import process needs to be profiled and optimized.
Also, `MCFLY_HISTORY_LIMIT` doesn't currently affect import, so it makes sense that it didn't help. Should it?
Agreed. This should be optimized.
Hey @CreativeCactus, sorry for the delay! I feel like I've seen that once or twice on Linux. I don't think I've seen it on my Mac, at least not in...
You could try adding a debug line that prints to the screen (or, if that isn't showing up because of the mode, to a file) with each keycode received here:...
Thanks @joehillen! I wonder if #156 will fix this.
Does this need something like from @jltml's [comment](https://github.com/cantino/mcfly/issues/150#issuecomment-846626586)? ```zsh if [[ $(defaults read -g AppleInterfaceStyle) != 'Dark' ]]; then export MCFLY_LIGHT=TRUE fi ```
That's a good point. I guess it's a bit annoying to have to call things like `defaults read -g AppleInterfaceStyle` from within the Rust code, but maybe it's okay. What...