You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems like binding o and O to org-evil-list-open-item-above/below makes it work correctly. Normally, I'll go to a list and press o or O in normal mode, but I only observe a newline formed; no new bullet.
The text was updated successfully, but these errors were encountered:
It seems the same happens with headers too. I've put in a temporary workaround to simply use the internal function as such:
(evil-define-minor-mode-key 'normal 'org-evil-list-mode
"<" 'org-evil-list-outdent-item-tree
">" 'org-evil-list-indent-item-tree
"O" 'org-evil-list-open-item-above
"o" 'org-evil-list-open-item-below)
;; Change o and O for org-evil so they function correctly in headings
(evil-define-minor-mode-key 'normal 'org-evil-heading-mode
"<" 'org-evil-promote
">" 'org-evil-demote
"O" 'org-evil-heading-open-sibling-above
"o" 'org-evil-heading-open-sibling-below)
@YangVincent Thanks for opening the issue (apologies for the late response)!
In version 0.4.0 I changed the open above/below bindings to require a prefix argument, do the bindings work fine for you if you try C-u o/C-u O?
The rationale was that the usual case when using o/O would be to open a new line for adding some additional text for the current/previous item/heading, but as o/O also make sense as 'open item/heading', I've kept them on the same key (but with a required prefix argument).
It seems like binding o and O to
org-evil-list-open-item-above/below
makes it work correctly. Normally, I'll go to a list and press o or O in normal mode, but I only observe a newline formed; no new bullet.The text was updated successfully, but these errors were encountered: