diff options
author | Yuchen Pei <id@ypei.org> | 2024-11-05 11:52:13 +1100 |
---|---|---|
committer | Yuchen Pei <id@ypei.org> | 2024-11-05 11:52:13 +1100 |
commit | 90b0da4820632a040975ce825c69322e7d7d0d7f (patch) | |
tree | 3d4c6cec96f18d6f4a49c6a155a2caed6b09c7c8 /emacs/.emacs.d/init | |
parent | 6f7d2224f66f0c8442780955e467ca600bb91ebf (diff) |
* emacs/.emacs.d/init/ycp-org.el: disable read-only in org edit
special buffer
* emacs/.emacs.d/lisp/my/my-org.el: ^
* misc/.gdbinit: a break-and-continue convenience function
Diffstat (limited to 'emacs/.emacs.d/init')
-rw-r--r-- | emacs/.emacs.d/init/ycp-org.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/emacs/.emacs.d/init/ycp-org.el b/emacs/.emacs.d/init/ycp-org.el index 430335a..eb5a63d 100644 --- a/emacs/.emacs.d/init/ycp-org.el +++ b/emacs/.emacs.d/init/ycp-org.el @@ -498,6 +498,7 @@ (advice-add 'org-insert-structure-template :after 'my-org-edit-special) (advice-add 'org-edit-src-exit :before 'my-org-edit-src-before-exit) (advice-add 'org-edit-src-exit :after 'my-org-edit-src-after-exit) + (advice-add 'org-edit-special :after 'my-org-edit-special-after) (my-setq-from-local my-org-task-categories)) (my-package my-org |