|
15 | 15 | 7. [Dot repeat](#dot-repeat)
|
16 | 16 | 4. [Document Diagnostics](#document-diagnostics)
|
17 | 17 | 5. [Tables](#tables)
|
18 |
| -6. [Autocompletion](#autocompletion) |
19 |
| -7. [Abbreviations](#abbreviations) |
20 |
| -8. [Colors](#colors) |
21 |
| -9. [Advanced search](#advanced-search) |
22 |
| -10. [Notifications (experimental)](#notifications-experimental) |
23 |
| -11. [Clocking](#clocking) |
24 |
| -12. [Changelog](#changelog) |
| 18 | +6. [Hyperlinks](#hyperlinks) |
| 19 | +7. [Autocompletion](#autocompletion) |
| 20 | +8. [Abbreviations](#abbreviations) |
| 21 | +9. [Colors](#colors) |
| 22 | +10. [Advanced search](#advanced-search) |
| 23 | +11. [Notifications (experimental)](#notifications-experimental) |
| 24 | +12. [Clocking](#clocking) |
| 25 | +13. [Changelog](#changelog) |
25 | 26 |
|
26 | 27 | ## Getting started with Orgmode
|
27 | 28 | To get a basic idea how Orgmode works, look at this screencast from [@dhruvasagar](https://github.com/dhruvasagar)
|
@@ -121,7 +122,7 @@ win_split_mode = 'tabnew'
|
121 | 122 |
|
122 | 123 | Always open vertically:
|
123 | 124 | ```
|
124 |
| -win_split_mode = 'tabnew' |
| 125 | +win_split_mode = 'vsplit' |
125 | 126 | ```
|
126 | 127 |
|
127 | 128 | Always open horizontally with specific height of 20 lines:
|
@@ -738,15 +739,7 @@ Toggle current line checkbox state
|
738 | 739 | Toggle current line to headline and vice versa. Checkboxes will turn into TODO headlines.
|
739 | 740 | #### **org_open_at_point**
|
740 | 741 | *mapped to*: `<Leader>oo`<br />
|
741 |
| -Open hyperlink or date under cursor.<br /> |
742 |
| -Hyperlink types supported: |
743 |
| -* URL (http://, https://) |
744 |
| -* File (starts with `file:`. Example: `file:/home/user/.config/nvim/init.lua`) Optionally, a line number can be specified |
745 |
| -using the '+' character. Example: `file:/home/user/.config/nvim/init.lua +10` |
746 |
| -* Headline title target (starts with `*`) |
747 |
| -* Headline with `CUSTOM_ID` property (starts with `#`) |
748 |
| -* Fallback: If file path, opens the file, otherwise, tries to find the Headline title. |
749 |
| -When date is under the cursor, open the agenda for that day.<br /> |
| 742 | +Open hyperlink or date under cursor. When date is under the cursor, open the agenda for that day.<br /> |
750 | 743 | #### **org_edit_special**
|
751 | 744 | *mapped to*: `<Leader>o'`<br />
|
752 | 745 | Open a source block for editing in a temporary buffer of the associated `filetype`.<br />
|
@@ -969,6 +962,18 @@ And going to line `4` and pressing `gqgq`, it will format it to this:
|
969 | 962 | | col 1 | col 2 |
|
970 | 963 | ```
|
971 | 964 |
|
| 965 | +## Hyperlinks |
| 966 | + |
| 967 | +The format for links is either `[[LINK]]` or `[[LINK][DESCRIPTION]]`. If a description is provided, the actual link is concealed in favor of the description. |
| 968 | + |
| 969 | +Hyperlink types supported: |
| 970 | +* URL (http://, https://) |
| 971 | +* File (starts with `file:`. Example: `file:/home/user/.config/nvim/init.lua`) Optionally, a line number can be specified |
| 972 | +using the '+' character (Example: `file:/home/user/.config/nvim/init.lua +10`) or a headline within the specified file using '::' (Example: `file:/home/user/org/file.org::*Specific Headline`) |
| 973 | +* Headline title target within the same file (starts with `*`) |
| 974 | +* Headline with `CUSTOM_ID` property within the same file (starts with `#`) |
| 975 | +* Fallback: If file path, opens the file, otherwise, tries to find the headline title. |
| 976 | + |
972 | 977 | ## Autocompletion
|
973 | 978 | By default, `omnifunc` is provided in `org` files that autocompletes these types:
|
974 | 979 | * Tags
|
|
0 commit comments