Henrik Lissner
Henrik Lissner
I suspect ZVM is doing something differently here, because the key for me to get the two to work together was [to load zsh-vi-mode before zsh-autopair](https://github.com/hlissner/dotfiles/blob/master/config/zsh/.zshrc#L105-L111), but I'm using a...
It seems lean 3 is now obsolete, so it's probably fair to replace `lean-mode` in `:lang lean` with `lean4-mode`, but I have one big issue with it. `lean4-mode` has a...
@urkud Have you seen/tried the two forks ([here](https://github.com/bustercopley/lean4-mode) ~~and [here](https://codeberg.org/mekeor/nael)~~ (was deprecated)) that swap out lsp-mode support for eglot? I'm waiting for confirmation that they're acceptable alternatives before I can...
I already have plans to reduce Doom's core packages to [just two](https://github.com/doomemacs/doomemacs/blob/master/lisp/.doommodule#L5-L9) in the 3.0 release. But that aside, I'd rather treat this as a bug report for `better-jumper`'s behavior...
Emacs (and terminals) understand `C-i` and `TAB` to be the same key. Its ability to distinguish the two (and bind to ``) is [a Doomism](https://github.com/doomemacs/doomemacs/blob/master/lisp/doom-keybinds.el#L53-L75) that will only work in...
This is not considered a bug, but I can understand how it can be frustrating. Refer to [this section of evil's FAQ](https://evil.readthedocs.io/en/latest/faq.html#underscore-is-not-a-word-character) for details on how to understand and tweak...
Oh, forgot to mention. If you want to evil-ify just the minibuffer, another alternative is to enable `evil-want-minibuffer`: ```elisp ;;; add to $DOOMDIR/config.el (setq! evil-want-minibuffer t) ``` This will put...
Ah, I see what you mean. Unfortunately, it's not as simple as swapping the command. IIRC, that particular swap exists to address an issue with `evil-delete-backward-word` operating on read-only regions...
I've incorporated the `global-corfu-minibuffer` predicate approach in 1ec4bac and can't reproduce any of local `completion-at-point-functions` strangeness you've mentioned. Can you confirm?
The issue is that `global-corfu-modes` overrides `global-corfu-minibuffer` in `corfu--on`, which I think should constitute an upstream bug (e.g. I imagine `global-corfu-modes` should dictate which buffers to even try the predicate...