[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] How to show the complete syntax tree
From: |
Charles Berry |
Subject: |
Re: [O] How to show the complete syntax tree |
Date: |
Mon, 14 Jul 2014 16:56:22 +0000 (UTC) |
User-agent: |
Loom/3.14 (http://gmane.org/) |
Shiyuan <gshy2014 <at> gmail.com> writes:
>
> Hi, The command I can find in the manual to show the syntax tree is
(org-element-parse-buffer). However, when the structure is output to the
buffer, by using the commands C-u M-: (org-element-parse-buffer), it seems
that only the part up to a certain depth is printed.
Yes, as Nick explained there are variables that control this.
My eyes sometimes like this approach to viewing lisp objects:
#+BEGIN_SRC emacs-lisp
(pp-to-string (org-element-parse-buffer))
#+END_SRC
HTH,
Chuck