diff options
author | Alan Pearce | 2017-01-16 11:59:31 +0100 |
---|---|---|
committer | Alan Pearce | 2017-01-16 11:59:31 +0100 |
commit | 60966619f991659c804c8f8c82224e82dd7a8dd7 (patch) | |
tree | 7c4c979d07c72e85dc63877a99acdaeadeb56a54 /tag-emacs | |
parent | ab8adeaa5ac297d2d46375c1a4cb483d45560597 (diff) | |
download | dotfiles-60966619f991659c804c8f8c82224e82dd7a8dd7.tar.lz dotfiles-60966619f991659c804c8f8c82224e82dd7a8dd7.tar.zst dotfiles-60966619f991659c804c8f8c82224e82dd7a8dd7.zip |
Show modeline when using minibuffer
Diffstat (limited to 'tag-emacs')
-rw-r--r-- | tag-emacs/emacs.d/init.org | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index e12cd6f..3a34b84 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -174,7 +174,10 @@ Let’s try a basic theme. (interactive) (fringe-mode '(8 . 4)) (show-mode-line)) - (hide-clutter))) + (hide-clutter) + + (add-hook 'minibuffer-setup-hook #'show-mode-line) + (add-hook 'minibuffer-exit-hook #'hide-mode-line))) #+END_SRC Highlighting quasi-quoted expressions in lisps is quite useful. |