I've got multiple source blocks which are all tangled to the same file. When I invoke C-c '
inside one block, only this specific block is shown in a new buffer.
Is there a possibility to show all parts of this file inside this buffer (instead of just this specific snippet)?
Example:
#+begin_src emacs-lisp :tangle foo.el
(defvar *ok* "")
#+end_src
This is where the variable is stored...
#+begin_src emacs-lisp :tangle foo.el
(defun add-one (n) (+ 1 n))
#+end_src
If I hit C-c '
in the first block I get:
(defvar *ok* "")
but I want:
(defvar *ok* "")
(defun add-one (n) (+ 1 n))