devcarbon-com
devcarbon-com
Okay, I just reproduced this bug. Emacs version: ``` GNU Emacs 29.1 (build 1, aarch64-apple-darwin21.6.0, NS appkit-2113.60 Version 12.6.6 (Build 21G646)) of 2023-08-16 ``` org-transclusion version: `1.3.2` installed via package-install...
(edited to be accurate)
Ah, yes, I see where I was not clear now. Following your steps, I get the exact same behavior as you do, and do not get an infinite loop. The...
Note that saving the buffer in step 10 seems to also be a key step. If you leave this out, it works without issue. (no loop, and transclution is removed...
@countvajhula Nice! I'll take a look.
Sure, Say you have a literate config with the following: ```elisp #+begin_src emacs-lisp (setq mouse-autoselect-window t) #+end_src ``` As-is, if I try to eval the `setq`, I get `symex--evaluate: Symex...
Along these lines: ```elisp (when (eq major-mode `org-mode) (let ((element (org-element-at-point))) (when (eq 'src-block (org-element-type element)) (org-element-property :language element)))) ```
@countvajhula Neat! On a side note I'm curious, is the plan for Rigpa to also be evil independent at some point?
I haven't dug into this code specifically yet, but boon-core sounds like it might be good inspiration if nothing else for a rigpa mode provider: https://github.com/jyp/boon#comparison-with-other-modal-layers-for-emacs
Good to know. I've not replaced evil completely, but I have made it's loading optional. I haven't tested this specifically yet, but I think it should still work with Rigpa...