Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I want to try org-mode. What's the shortest path from zero to typing?

I want to give emacs' org-mode a try. What is the shortest path for me to accomplish that? Assume NO previous experience with emacs.

(I'm aware that other editors, like vim and textmate, have similar task lists. I'm specifically interested in learning about the emacs org-mode)

My laptop runs Win7 Home Premium x64

like image 455
Sukotto Avatar asked Feb 09 '11 02:02

Sukotto


People also ask

How do you save in Org mode?

To save the document, either press the save icon, or press C-x C-s, call it 1.org.

What are org mode files?

Org Mode (also: org-mode; /ˈɔːrɡ moʊd/) is a document editing, formatting, and organizing mode, designed for notes, planning, and authoring within the free software text editor Emacs.

How do I set up org mode?

The Basics \par Org-mode works out of the box, and besides the steps described in the manual to activate it, nothing is needed at all. Just open a . org file, press C-c [ to tell org that this is a file you want to use in your agenda, and start putting your life into plain text.


1 Answers

I use Emacs (when I'm on Windows) with the official binaries at http://ftp.gnu.org/gnu/emacs/windows/emacs-22.3-barebin-i386.zip Just unzip to a directory and double click "runemacs".

In all the commands that follow, C stands for Ctrl.

Create a file ending in .org. If using recent Emacs, that will automatically start org-mode. You can create a file using C-x C-f.

Start creating outlines like this:

* Level 1 ** Level 2 

Collapse/Uncollapse outline levels with TAB

Todo's you can cycle by hitting C-c C-t

That's the basics, and pretty much all I know, but I already use it extensively :)

Have a look at the tutorials on http://orgmode.org/worg/org-tutorials/

like image 126
Matthew Talbert Avatar answered Sep 21 '22 21:09

Matthew Talbert