meow-block select wrong region in org-mode source block #405
-
As the title says, if you write the following text in org-mode, then put the cursor before "square" and evaluate
Actually in elisp-mode, there is no such problem, but in org-mode things are different. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Because in Elisp mode, the code is parsed as Elisp, so I usually use |
Beta Was this translation helpful? Give feedback.
Because in Elisp mode, the code is parsed as Elisp, so
?
is treated as a prefix. However in org-mode, there's no syntax for Elisp.Meow uses the builtin syntax pass to detect the levels of paired parentheses, so there's no easy way to fix.
I usually use
C-c '
to narrow to the code snippet for editing.