Replies: 1 comment
-
Short answer: not yet or only in a limited way.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As an org-mode user, I'm thinking of migrating to Neovim. I assume contributors to this plugin actually used org-mode, so I was wondering if I can get a similar experience using this plugin (or another Neovim plugin, maybe Neorg which seems like a calculated approach for implementing org-mode within the "constraints" of Neovim. Two of the features I use most on org-mode (not necesarily org-mode, but org-mode related):
counsel-org-goto-all
: this will popup a small buffer split horizontally where you can fuzzy match headlines of any depth in all your org files and jump to it. A sub-headline is prefixed with the parent headline to provide the user with more context.swiper
works the same but search candidates are for each line. If I hold a modifier and move up/down to select the line, the buffer will jump to each candidate so I get a true preview before I decide to commit the jump, closing this selection buffer. With this, it's as if all my notes are in one big org file. Of course there's a companion function which does the same but restricts the candidates to be those in the current file.org-super-agenda provides a customizable org-agenda views where you can group items by criteria, e.g. have a group at the top of the agenda showing items due within 7 days, another that groups items by a certain tag, another that sorts the rest of the items by priority. org-ql is a compatible tool with org-super-agenda that provides advanced searching and filtering. I would at least like to have features of org-super-agenda for custom agendas that allow for grouping sorted items by todo states, tags, priorities, etc. which allow for a GTD workflow. i find the basic org-agenda to be quite limited, restricted only to time-based views when some things are more long-term and don't necessarily have a concrete date.
org-emphasis-alist
allows for styling text. For example, hello might show the text as underlined, /hello/ to italicize, hello to show the text in a different color, and +hello+ might add a strikethrough, etc. Of course you can toggle this off and see the actual raw text. Copying the text to the system clipboard can exclude the stylizing portion of the text which is the behavior you usually want.Small miscellaneous features like cycling expanding headlines by levels for a very quick and easy way to visualize structure of notes and possibility of using similar keybindings like C-c C-d, C-c C-w, C-c c, etc.
Does this plugin cover these features? Are there any features that may be difficult to implement in Neovim? Much appreciated.
Beta Was this translation helpful? Give feedback.
All reactions