[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Comments within Org src block move point unexpectedly
From: |
excalamus |
Subject: |
Re: Comments within Org src block move point unexpectedly |
Date: |
Fri, 9 Apr 2021 15:27:18 +0200 (CEST) |
Sigh, sorry about the formatting...
Also, make sure org-mode is enabled.
Toggle comment-line with point after 'interactive':
#+begin_src emacs-lisp
(defun hello ()
"Say hi."
(interactive)|
(message "Hello, world!"))
#+end_src
Point jumps to a previous line ("Say hi"):
#+begin_src emacs-lisp
(defun hello ()
|"Say hi."
(interactive)
(message "Hello, world!"))
#+end_src