diff options
author | Amin Bandali <bandali@gnu.org> | 2018-12-22 02:41:20 -0500 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2018-12-22 02:41:20 -0500 |
commit | d39cbbe3c2fb681e78d51375e0d1a66d66307886 (patch) | |
tree | 79dab82a267cea8fb21e804fa31401abb6452d16 | |
parent | c44ace121a47611a449c8755506f6bb5eeaf1336 (diff) | |
download | configs-d39cbbe3c2fb681e78d51375e0d1a66d66307886.tar.gz configs-d39cbbe3c2fb681e78d51375e0d1a66d66307886.tar.xz configs-d39cbbe3c2fb681e78d51375e0d1a66d66307886.zip |
[emacs] don’t show compilation window in amin/async-babel-tangle
-rw-r--r-- | init.org | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -646,7 +646,7 @@ Enable =winner-mode=. (winner-mode 1) #+end_src -*** Close =*compilation*= on success +*** COMMENT Close =*compilation*= on success #+begin_src emacs-lisp (setq compilation-exit-message-function @@ -827,7 +827,8 @@ file. ',file-tangle-start-time))) "")) (when amin-async-tangle-post-compile - (compile amin-async-tangle-post-compile))) + (save-window-excursion + (compile amin-async-tangle-post-compile)))) (message "Tangling %s failed" ,file-nodir)))))))) (add-to-list |