Revise org keybindings; new +org/toggle-checkbox
This commit is contained in:
parent
4bb4b5ebb9
commit
9fdbfb657f
2 changed files with 32 additions and 45 deletions
|
@ -116,19 +116,11 @@ wrong places)."
|
|||
(save-excursion (insert "\n")))))
|
||||
(when (org-element-property :todo-type context)
|
||||
(org-todo 'todo))))
|
||||
(t (user-error "Not a valid list")))
|
||||
(evil-append-line 1)))
|
||||
|
||||
;;;###autoload
|
||||
(defun +org/toggle-checkbox ()
|
||||
(interactive)
|
||||
(when-let (context (org-element-lineage (org-element-context) '(item) t))
|
||||
(org-end-of-line)
|
||||
(org-beginning-of-line)
|
||||
(if (org-element-property :checkbox context)
|
||||
(when (search-backward-regexp "\\[[ +-]\\]" (line-beginning-position) t)
|
||||
(delete-char 4))
|
||||
(insert "[ ] "))))
|
||||
(t (user-error "Not a valid list, heading or table")))
|
||||
|
||||
(when (bound-and-true-p evil-mode)
|
||||
(evil-append-line 1))))
|
||||
|
||||
;;;###autoload
|
||||
(defun +org/toggle-fold ()
|
||||
|
@ -144,6 +136,12 @@ with `org-cycle'). Also removes babel result blocks, if run from a code block."
|
|||
(org-cycle)
|
||||
(set-window-start nil window-beg)))))
|
||||
|
||||
;;;###autoload
|
||||
(defun +org/toggle-checkbox ()
|
||||
"Toggle the presence of a checkbox in the current item."
|
||||
(interactive)
|
||||
(org-toggle-checkbox '(4)))
|
||||
|
||||
;;;###autoload
|
||||
(defun +org/dwim-at-point ()
|
||||
"Do-what-I-mean at point. This includes following timestamp links, aligning
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue