Dan

Results 14 comments of Dan

Currently I try to achieve this by defining a new completion style. Idea: Given the arguments STRING, TABLE, PRED, _POINT, it will check STRING for patterns after " !" to...

It's actually slower than reported than above, because `f-shortdoc` pulls `shortdoc.el` when `f.el` is loaded, especially the when not `noninteractive`. ``` With s, dash, already loaded. f, f-short, shortdoc aren't...

Now I know that the reason was "other-window-scroll-buffer" had been set to "#". Is there a way to turn this off? I've tried to set it to nil in all...

Alternatively, since the two regexps are the same, we may instead a shared ```lisp (defvar +lisp-outline-regexp "[ \t]*;;;;* [^ \t\n]" "Regexp to use for `outline-regexp' in LISP major modes. This...

Figured out the workaround (after a painful process): Luckily I have set `eldoc-documentation-strategy` in my config, and after loading eldoc on Emacs 27, it gives me this warning: ``` Warning...

I met the same problem. It's odd that `swiper-isearch`'s candidates are updated instantly after `ivy-toggle-regexp-quote`. After looking at `ivy-toggle-regexp-quote` and `ivy-toggle-case-fold`'s definition, I have seen that while the former has...

> Do you see the usual magit colors? I still can see Magit's normal red and green colors, for example this commit: https://github.com/dandavison/delta/commit/79979c272d6daa876ffb3dbad7a6550c22155c8c ![Screenshot_20240311_223901](https://github.com/dandavison/magit-delta/assets/32123754/85819cb7-c02e-4d75-b38a-cea2553e52d0)

- About the exhaustive enumeration on all of the `-ts-mode` major modes, I don't think that nor the need of `treesit-major-mode-hook` is necessary, we can just add `er/treesit-er-parent-node` as one...

Thank you for taking my previous comment to account , after a while I have noticed a few more things. - There is a little problem with the current `er/treesit-er--get-node-between`:...

> Note: [eglot-booster](https://github.com/jdtsmith/eglot-booster) avoids this by setting a buffer-local variable on the jsonrpc request buffer and checking it in the advice. That could be replicated in the lsp advice fairly...