Browse Source

Don't ask for confirmation in org-babel-execute

main
parent
commit
a126b09783
Signed by: chris GPG Key ID: 3025DCBD46F81C0F
  1. 3
      README.org

3
README.org

@ -2090,7 +2090,8 @@ Org-mode[fn:58] is a document editing and organizing mode, designed for notes, p
;; Configure `org-mode' source blocks. ;; Configure `org-mode' source blocks.
(setq org-src-fontify-natively t ;; Make source blocks prettier. (setq org-src-fontify-natively t ;; Make source blocks prettier.
org-src-tab-acts-natively t ;; Use TAB indents within source blocks. org-src-tab-acts-natively t ;; Use TAB indents within source blocks.
org-src-preserve-indentation t) ;; Stop `org-mode' from formatting blocks.
org-src-preserve-indentation t ;; Stop `org-mode' from formatting blocks.
org-confirm-babel-evaluate nil) ;; Don't ask for confirmation to evaluate blocks.
;; Add an `org-mode-hook'. ;; Add an `org-mode-hook'.
(add-hook 'org-mode-hook (add-hook 'org-mode-hook

Loading…
Cancel
Save