summaryrefslogtreecommitdiff
path: root/evil-org.el
diff options
context:
space:
mode:
Diffstat (limited to 'evil-org.el')
-rw-r--r--evil-org.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/evil-org.el b/evil-org.el
index f2db940..6c21e47 100644
--- a/evil-org.el
+++ b/evil-org.el
@@ -133,7 +133,7 @@ Passing in any prefix argument, executes the command without special behavior."
(e (org-element-lineage (org-element-at-point) special t)))
(cl-case (org-element-type e)
((table-row) (org-table-insert-row '(4)) (evil-insert nil))
- ((item) (org-insert-item) (evil-append nil))
+ ((item) (org-insert-item) (evil-insert nil))
(otherwise (evil-open-below count)))))
(defun evil-org-open-above (count)
@@ -147,7 +147,7 @@ Passing in any prefix argument, executes the command without special behavior."
(e (org-element-lineage (org-element-at-point) special t)))
(cl-case (org-element-type e)
((table-row) (org-table-insert-row) (evil-insert nil))
- ((item) (beginning-of-line) (org-insert-item) (evil-append nil))
+ ((item) (beginning-of-line) (org-insert-item) (evil-insert nil))
(otherwise (evil-open-above count)))))
(defun evil-org-insert-subheading (&optional arg)