|
| 1 | +Features |
| 2 | +================================ |
| 3 | +TL;DR |
| 4 | +***************** |
| 5 | +* Agenda view |
| 6 | +* Search by tags/keyword |
| 7 | +* Clocking time |
| 8 | +* Repeatable dates, date and time ranges |
| 9 | +* Capturing to default notes file/destination |
| 10 | +* Archiving (archive file or ARCHIVE tag) |
| 11 | +* Exporting (via ``emacs``, ``pandoc`` and custom export options) |
| 12 | +* Notifications (experimental, see `Issue #49 <https://github.com/nvim-orgmode/orgmode/issues/49>`_) |
| 13 | +* Calendar popup for easier navigation and date updates |
| 14 | +* Various org file mappings: |
| 15 | + |
| 16 | + * Promote/Demote |
| 17 | + * Change TODO state |
| 18 | + * Change dates |
| 19 | + * Insert/Move/Refile headlines |
| 20 | + * Change tags |
| 21 | + * Toggle checkbox state |
| 22 | + |
| 23 | +* Clocking time |
| 24 | +* Remote editing from agenda view |
| 25 | +* Repeatable mapping via `vim-repeat <https://github.com/tpope/vim-repeat>`_ |
| 26 | + |
| 27 | +Detailed breakdown |
| 28 | +****************************** |
| 29 | +* Agenda prompt: |
| 30 | + |
| 31 | + * Agenda view (``a``): |
| 32 | + |
| 33 | + * Ability to show daily(``vd``)/weekly(``vw``)/monthly(``vm``)/yearly(``vy``) agenda |
| 34 | + * Support for various date settings: |
| 35 | + |
| 36 | + * DEADLINE: Warning settings - example: `<2021-06-11 Fri 11:00 -1d>` |
| 37 | + * SCHEDULED: Delay setting - example: `<2021-06-11 Fri 11:00 -2d>` |
| 38 | + * All dates - Repeater settings: |
| 39 | + |
| 40 | + * Cumulate type: `<2021-06-11 Fri 11:00 +1w>` |
| 41 | + * Catch-up type: `<2021-06-11 Fri 11:00 ++1w>` |
| 42 | + * Restart type: `<2021-06-11 Fri 11:00 .+1w>` |
| 43 | + |
| 44 | + * Time ranges - example: `<2021-06-11 Fri 11:00-12:30>` |
| 45 | + * Date ranges - example: `<2021-06-11 Fri 11:00-12:30>--<2021-06-13 Sun 22:00>` |
| 46 | + |
| 47 | + * Properly lists tasks according to defined dates (DEADLINE,SCHEDULED,Plain date) |
| 48 | + * Navigate forward (``f``)/backward(``b``) or jump to specific date (``J``) |
| 49 | + * Go to task under cursor in current window(``<CR>``) or other window(``<TAB>``) |
| 50 | + * Print category from ":CATEGORY:" property if defined |
| 51 | + |
| 52 | + * List tasks that have "TODO" state (``t``): |
| 53 | + * Find headlines matching tag(s) (``m``): |
| 54 | + * Search for headlines (and it's content) for a query (``s``): |
| 55 | + * `Advanced search <DOCS.md#advanced-search>`_ for tags/todo kewords/properties |
| 56 | + * Notifications (experimental, see `Issue #49 <https://github.com/nvim-orgmode/orgmode/issues/49>`_) |
| 57 | + * Clocking time |
| 58 | + |
| 59 | +* Capture: |
| 60 | + |
| 61 | + * Define custom templates |
| 62 | + * Fast capturing to default notes file via ``<C-c>`` |
| 63 | + * Capturing to specific destination ``<Leader>or`` |
| 64 | + * Abort capture with ``<Leader>ok`` |
| 65 | + |
| 66 | +* Org files |
| 67 | + |
| 68 | + * Clocking time |
| 69 | + * Refile to destination/headline: ``<Leader>or`` |
| 70 | + * Increase/Decrease date under cursor: ``<C-a>``/``<C-x>`` |
| 71 | + * Change date under cursor via calendar popup: ``cid`` |
| 72 | + * Change headline TODO state: forward``cit`` or backward``ciT`` |
| 73 | + * Open hyperlink or date under cursor: ``<Leader>oo`` |
| 74 | + * Toggle checkbox: ``<C-space>`` |
| 75 | + * Toggle current line to headline and vice versa: ``<Leader>o*`` |
| 76 | + * Toggle folding of current headline: ``<TAB>`` |
| 77 | + * Toggle folding in whole file: ``<S-TAB>`` |
| 78 | + * Archive headline: ``<Leader>o$`` |
| 79 | + * Add archive tag: ``<Leader>oA`` |
| 80 | + * Change tags: ``<Leader>ot`` |
| 81 | + * Promote headline: ``<<`` |
| 82 | + * Demote headline: ``>>`` |
| 83 | + * Promote subtree: ``<s`` |
| 84 | + * Demote subtree: ``>s`` |
| 85 | + * Add headline/list item/checkbox: ``<Leader><CR>`` |
| 86 | + * Insert heading after current heading and it's content: ``<Leader>oih`` |
| 87 | + * Insert TODO heading after current line: ``<Leader>oiT`` |
| 88 | + * Insert TODO heading after current heading and it's content: ``<Leader>oit`` |
| 89 | + * Move headline up: ``<Leader>oK`` |
| 90 | + * Move headline down: ``<Leader>oJ`` |
| 91 | + * Highlighted code blocks (`#+BEGIN_SRC filetype`) |
| 92 | + * Exporting (via ``emacs``, ``pandoc`` and custom export options) |
| 93 | + |
| 94 | +Link to detailed documentation: `DOCS <https://github.com/nvim-orgmode/orgmode/blob/master/DOCS.md>`_ |
0 commit comments