branch: externals/org commit a70c7bae92d600dd103802d4e46386a168513bd2 Merge: 450692255c 0dc647ff54 Author: Ihor Radchenko <yanta...@posteo.net> Commit: Ihor Radchenko <yanta...@posteo.net>
Merge branch 'bugfix' --- lisp/org.el | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index ebc889463b..e9f11db1e8 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -4970,6 +4970,10 @@ This is for getting out of special buffers like capture.") st) "Syntax table including \"@\" and \"_\" as word constituents.") +(defun org--set-tab-width (&rest _) + "Set `tab-width' to be 8." + (setq-local tab-width 8)) + ;;;###autoload (define-derived-mode org-mode outline-mode "Org" "Outline-based notes management and organizer, alias @@ -4992,7 +4996,16 @@ The following commands are available: (setq-local org-mode-loading t) ;; Force tab width - indentation is significant in lists, so we need ;; to make sure that it is consistent across configurations. - (setq-local tab-width 8) + (org--set-tab-width) + ;; Really force it, even if dir-locals or file-locals set it - we + ;; need tab-width = 8 as a part of Org syntax. + (add-hook 'hack-local-variables-hook + #'org--set-tab-width 90 'local) + ;; In Emacs <30, editorconfig-mode uses advices, so we cannot rely + ;; upon `hack-local-variables-hook' to run after editorconfig + ;; tab-width settings are applied. + (add-hook 'editorconfig-after-apply-functions + #'org--set-tab-width 90 'local) (org-load-modules-maybe) (when org-agenda-file-menu-enabled (org-install-agenda-files-menu))