summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-08-26 23:30:43 -0500
committerCase Duckworth2021-08-26 23:30:43 -0500
commite627aec4ded8a98b724a6d0aef4a1e54124eeb20 (patch)
tree872c0581a389db117b3dcac9b34efe01550fb0fa /init.el
parentAdd experimental (commented) :after advice for do-auto-fill (diff)
downloademacs-e627aec4ded8a98b724a6d0aef4a1e54124eeb20.tar.gz
emacs-e627aec4ded8a98b724a6d0aef4a1e54124eeb20.zip
Add bindings to widen org-buffer on next/previous heading
Diffstat (limited to 'init.el')
-rw-r--r--init.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/init.el b/init.el index 079e586..587ffdf 100644 --- a/init.el +++ b/init.el
@@ -1570,8 +1570,8 @@ successive invocations."
1570 ((string-suffix-p "~" pattern) 1570 ((string-suffix-p "~" pattern)
1571 `(orderless-flex . ,(substring pattern 0 -1)))))) 1571 `(orderless-flex . ,(substring pattern 0 -1))))))
1572 1572
1573(setup (:straight org) 1573(setup (:straight org
1574 (:straight org-contrib) 1574 org-contrib)
1575 (require 'acdw-org) ; so I don't clutter up init.el 1575 (require 'acdw-org) ; so I don't clutter up init.el
1576 (:option 1576 (:option
1577 org-adapt-indentation nil 1577 org-adapt-indentation nil
@@ -1612,7 +1612,9 @@ successive invocations."
1612 "<S-return>" acdw-org/org-table-copy-down 1612 "<S-return>" acdw-org/org-table-copy-down
1613 "M-SPC M-SPC" insert-zero-width-space 1613 "M-SPC M-SPC" insert-zero-width-space
1614 "C-c C-l" org-insert-link-dwim 1614 "C-c C-l" org-insert-link-dwim
1615 "M-w" acdw/copy-region-plain) 1615 "M-w" acdw/copy-region-plain
1616 "C-c C-n" acdw/org-next-heading-widen
1617 "C-c C-p" acdw/org-previous-heading-widen)
1616 1618
1617 (with-eval-after-load 'org-export 1619 (with-eval-after-load 'org-export
1618 (add-to-list 'org-export-filter-final-output-functions 1620 (add-to-list 'org-export-filter-final-output-functions