diff options
author | dx <aryadevchavali1@gmail.com> | 2020-05-13 04:55:33 +0100 |
---|---|---|
committer | dx <aryadevchavali1@gmail.com> | 2020-05-13 04:56:08 +0100 |
commit | 1cdb662b0899f7bd610b1fa2b77d2b3fbbb58ea3 (patch) | |
tree | 3c8af136d4b774807a12d8be7184c1dd7af85e6f /Doom/.doom.d/org/literate.org | |
parent | 51ab820b6f5d775084726632d9733d0bbcfde497 (diff) | |
download | dotfiles-1cdb662b0899f7bd610b1fa2b77d2b3fbbb58ea3.tar.gz dotfiles-1cdb662b0899f7bd610b1fa2b77d2b3fbbb58ea3.tar.bz2 dotfiles-1cdb662b0899f7bd610b1fa2b77d2b3fbbb58ea3.zip |
+quit parameter to popup-rule in literate
Diffstat (limited to 'Doom/.doom.d/org/literate.org')
-rw-r--r-- | Doom/.doom.d/org/literate.org | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doom/.doom.d/org/literate.org b/Doom/.doom.d/org/literate.org index b45f1a2..d3c9d11 100644 --- a/Doom/.doom.d/org/literate.org +++ b/Doom/.doom.d/org/literate.org @@ -62,7 +62,7 @@ literate module of doom. ** Popup rules I don't want Emacs to focus onto the output buffer of the tangling process when I save, which is what happens with a standard async-shell-command. So setup a rule for the 'messages' and 'errors' buffers to not focus them (by setting their time to live to 0). #+BEGIN_SRC elisp -(set-popup-rule! "\*org-tangle-.*" :ttl 0) +(set-popup-rule! "\*org-tangle-.*" :ttl 0 :quit t) #+END_SRC * Hook on save Now we need to make a hook function that, when the current buffer is an org file |