karthink
karthink
Interesting. Do you have the same issue with AucTeX's previews when a ".tex" (LaTeX) filename has cyrillic letters? If yes, this might be beyond my ability to fix right now....
That's a good sign. Can you add the errors you get here? Hopefully it's a simple fix.
Thanks, I'll look into it soon.
[minad's comment](https://old.reddit.com/r/emacs/comments/1c7jsk1/announcing_consultweb_a_package_to_get_web_and/l0hkqjg/) clued me in on implementing consult--multi with async, which should make this process much simpler. I'll try to improve the proof of concept to be more modular using...
https://github.com/karthink/consult-web-mini/blob/url-retrieve/cw.el#L215 I created a url-retrieve branch for the brave source, as requested. BTW if you have trouble understanding the multiple source async results merge logic, we can hop on a...
> This is a complete redesign of the package and prioritizing the async/dynamic over the synchronous candidate collection. That sounds great! Looking forward to it so I can switch back...
@laurentHYZ You would put that in `config.el` in Doom Emacs (I think). You can do something like this: ``` emacs-lisp ;; All gptel configuration: (use-package gptel :defer :config (gptel-make-anthropic "Claude"...
Could you try this? ``` emacs-lisp (use-package! gptel :config (setq! gptel-api-key "sk-proj-ant...") (gptel-make-anthropic "Claude" ;Any name you want :stream t ;Streaming responses :key "sk-ant-api...")) ``` We'll have to ask a...
Thanks, I'll need some time to familiarize myself with this. > I synced up with the master branch of GPTel, and just added that in, but my transient menu seems...
No worries, it's (setq gptel-expert-commands t) This is a temporary measure while I figure out how much of the menu to expose by default without overwhelming new users. On Fri,...