Emacs Org-Mode: can I enable column view when uploading a file?

I would like to automatically enable column view (on the first topic) when I open a specific .org file. Is there any way to do this?

+5
source share
2 answers

Switch to column-veiwthe first heading.

test.org

# Local Variables:
# eval: (goto-char (point-min))
# eval: (outline-next-heading)
# eval: (org-columns)
# End:

* test A
* test B
+4
source

Yes. One way to do this is to add a local file variable for this org file.

    # Local Variables:
    # eval: (org-columns)
    # End:
+1
source

All Articles