Skip to content

Commit a5e4d10

Browse files
committed
Merge commit 'b91237c1ede98e7e025227f5d38a42837f97d378' into v0.4
2 parents 2dd9d77 + b91237c commit a5e4d10

File tree

3 files changed

+6006
-0
lines changed

3 files changed

+6006
-0
lines changed

doc/orgguide.txt

+230
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,230 @@
1+
*orgguide.txt* For Vim version 7.3 Last change: 2011 August 5
2+
3+
==============================================================================
4+
TABLE OF CONTENTS *orgguide* *orgguide-toc*
5+
6+
1. About Org mode guide |orgguide-about|
7+
2. Introduction |orgguide-introduction|
8+
3. Document structure |orgguide-docstructure|
9+
4. Tables |orgguide-tables|
10+
5. Hyperlinks |orgguide-hyperlinks|
11+
6. Todo items |orgguide-todoitems|
12+
7. Tags |orgguide-tags|
13+
8. Properties |orgguide-properties|
14+
9. Dates and times |orgguide-dates|
15+
10. Capture - refile - archive |orgguide-capture|
16+
11. Agenda views |orgguide-agenda|
17+
12. Markup for rich export |orgguide-richexport|
18+
13. Publishing |orgguide-publishing|
19+
14. Working with source code |orgguide-source|
20+
14. Miscellaneous |orgguide-misc|
21+
22+
==============================================================================
23+
ORG MODE GUIDE *orgguide-about*
24+
25+
Copyright © 2010 Free Software Foundation
26+
27+
Permission is granted to copy, distribute and/or modify this document
28+
under the terms of the GNU Free Documentation License, Version 1.3 or
29+
any later version published by the Free Software Foundation; with no
30+
Invariant Sections, with the Front-Cover texts being “A GNU Manual,”
31+
and with the Back-Cover Texts as in (a) below. A copy of the license
32+
is included in the section entitled “GNU Free Documentation License.”
33+
34+
(a) The FSF’s Back-Cover Text is: “You have the freedom to copy and
35+
modify this GNU manual. Buying copies from the FSF supports it in
36+
developing GNU and promoting software freedom.”
37+
38+
This document is part of a collection distributed under the GNU Free
39+
Documentation License. If you want to distribute this document
40+
separately from the collection, you can do so by adding a copy of the
41+
license to the document, as described in section 6 of the license.
42+
43+
==============================================================================
44+
INTRODUCTION *orgguide-introduction*
45+
46+
Preface~
47+
Org is a mode for keeping notes, maintaining TODO lists, and doing
48+
project planning with a fast and effective plain-text system. It is also
49+
an authoring and publishing system.
50+
51+
This document is a a copy of the orgmode-guide for emacs with modifications
52+
for vim. It contains all basic features and commands, along with important
53+
hints for customization.
54+
55+
56+
Installation~
57+
TODO
58+
59+
Activation~
60+
TODO
61+
62+
Feedback~
63+
If you find problems with Org, or if you have questions, remarks, or
64+
ideas about it, please create a ticket on
65+
https://github.com/jceb/vim-orgmode
66+
67+
68+
==============================================================================
69+
DOCUMENT STRUCTURE *orgguide-docstructure*
70+
71+
Org is based on Outline mode and provides flexible commands to edit the
72+
structure of the document.
73+
74+
75+
Outlines~
76+
Org is implemented on top of Outline mode. Outlines allow a document to
77+
be organized in a hierarchical structure, which (at least for me) is the
78+
best representation of notes and thoughts. An overview of this structure
79+
is achieved by folding (hiding) large parts of the document to show only
80+
the general document structure and the parts currently being worked on.
81+
Org greatly simplifies the use of outlines by compressing the entire
82+
show/hide functionality into a single command, =org-cycle=, which is
83+
bound to the <TAB> key.
84+
85+
86+
Headlines~
87+
Headlines define the structure of an outline tree. The headlines in Org
88+
start with one or more stars, on the left margin[[#FOOT1][(1)]]. For
89+
example:
90+
91+
>
92+
* Top level headline
93+
** Second level
94+
*** 3rd level
95+
some text
96+
*** 3rd level
97+
more text
98+
99+
* Another top level headline
100+
<
101+
102+
Some people find the many stars too noisy and would prefer an outline
103+
that has whitespace followed by a single star as headline starters.
104+
[[#Clean-view][A cleaner outline view]], describes a setup to realize
105+
this.
106+
107+
Visibility cycling~
108+
Outlines make it possible to hide parts of the text in the buffer. Org
109+
uses just two commands, bound to <TAB> and S-<TAB> to change the
110+
visibility in the buffer.
111+
112+
<TAB> :: /Subtree cycling/: Rotate current subtree among the states
113+
114+
>
115+
,-> FOLDED -> CHILDREN -> SUBTREE --.
116+
'-----------------------------------'
117+
<
118+
119+
When called with a prefix argument (C-u <TAB>) or with the shift key,
120+
global cycling is invoked.
121+
122+
S-<TAB> and C-u <TAB> :: /Global cycling/: Rotate the entire buffer
123+
among the states
124+
125+
>
126+
,-> OVERVIEW -> CONTENTS -> SHOW ALL --.
127+
'--------------------------------------'
128+
<
129+
130+
C-u C-u C-u <TAB> :: Show all, including drawers.
131+
132+
When Emacs first visits an Org file, the global state is set to
133+
OVERVIEW, i.e. only the top level headlines are visible. This can be
134+
configured through the variable =org-startup-folded=, or on a per-file
135+
basis by adding a startup keyword =overview=, =content=, =showall=, like
136+
this:
137+
138+
>
139+
#+STARTUP: content
140+
<
141+
142+
Motion~
143+
TODO
144+
145+
Structure editing~
146+
TODO
147+
148+
Sparse trees~
149+
TODO
150+
151+
Plain lists~
152+
TODO
153+
154+
Footnotes~
155+
TODO
156+
157+
==============================================================================
158+
TABLES *orgguide-tables*
159+
160+
TODO add
161+
162+
==============================================================================
163+
HYPERLINKS *orgguide-hyperlinks*
164+
165+
TODO
166+
167+
Link format~
168+
TODO
169+
170+
Internal links~
171+
TODO
172+
173+
External links~
174+
TODO
175+
176+
Handling links~
177+
TODO
178+
179+
Targeted links~
180+
TODO
181+
182+
==============================================================================
183+
TODO ITEMS *orgguide-todoitems*
184+
185+
TODO
186+
187+
==============================================================================
188+
TAGS *orgguide-tags*
189+
190+
TODO
191+
192+
==============================================================================
193+
PROPERTIES *orgguide-properties*
194+
195+
TODO
196+
197+
==============================================================================
198+
DATES AND TIMES *orgguide-dates*
199+
200+
TODO
201+
202+
==============================================================================
203+
CAPTURE - REFILE - ARCHIVE *orgguide-capture*
204+
205+
TODO
206+
207+
==============================================================================
208+
AGENDA VIEWS *orgguide-agenda*
209+
210+
TODO
211+
212+
==============================================================================
213+
MARKUP FOR RICH EXPORT *orgguide-richexport*
214+
215+
TODO
216+
217+
==============================================================================
218+
PUBLISHING *orgguide-publishing*
219+
220+
TODO
221+
222+
==============================================================================
223+
WORKING WITH SOURCE CODE *orgguide-source*
224+
225+
TODO
226+
227+
==============================================================================
228+
MISCELLANEOUS *orgguide-misc*
229+
230+
TODO

0 commit comments

Comments
 (0)