lang/org: don't ask for permission to run elisp links

We'll trust the user to know what they're doing
This commit is contained in:
Henrik Lissner 2019-10-31 23:13:03 -04:00
parent c80413fabc
commit 51defe93ce
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -184,7 +184,10 @@ background (and foreground) match the current theme."
(defun +org-init-babel-h () (defun +org-init-babel-h ()
(setq org-src-preserve-indentation t ; use native major-mode indentation (setq org-src-preserve-indentation t ; use native major-mode indentation
org-src-tab-acts-natively t org-src-tab-acts-natively t
org-confirm-babel-evaluate nil ; you don't need my permission ;; You don't need my permission (just be careful, mkay?)
org-confirm-babel-evaluate nil
org-link-elisp-confirm-function nil
org-link-shell-confirm-function t ; except you, too dangerous
;; Show src buffer in popup, and don't monopolize the frame ;; Show src buffer in popup, and don't monopolize the frame
org-src-window-setup 'other-window) org-src-window-setup 'other-window)