fnussbaum
fnussbaum
I would not object to adding a user option. In any case, one could of course change the behaviour locally with something like: ```elisp (defun my/spacemacs/save-as (filename) (interactive (list (expand-file-name...
Thanks for the report, I have drafted a PR that would fix this: #16382 In the meantime, something like the following could serve as a workaround: ```elisp (defun fix/spacemacs//ahs-ts-on-exit ()...
`org-paste-subtree` does not insert empty lines, it just skips over any existing lines and pastes the subtree just before the next heading or at the end of the buffer. If...
Thanks, I can reproduce your observations. For me, the behaviour in Spacemacs and `emacs -Q` seems consistent, there is only the following difference due to evil-mode: When leaving `evil-insert-state`, the...
In many cases either way should work: Setting variables in the layer declaration, or using `setq` or `setopt` forms in `dotspacemacs/user-config`. Some ideas, though I do not use ess regularly...
In this particular case, the main problem I see is that the variable `ess-r-flymake-linters` only applies to `flymake`, and `flycheck` would still use some default (in my case `snake_case` instead...
Fixed upstream in https://github.com/emacs-evil/evil/commit/d7c0f8f7f7f1a9469f35acd55d1dcb48b8989eb1. (As noted above this was a purely cosmetical issue, only the cursor colour was affected, not the actual evil state.)
This is a long-standing issue, see #502. It might have become more noticable in Emacs 29 because eldoc was changed to enable special-mode in its temporary buffers. As a workaround...
The fix in https://github.com/emacs-evil/evil/pull/1931 looks good to me (though I haven't tested it much). As long as that is not merged we could do the same: ```elisp (define-advice forward-evil-word (:around...