diff options
author | Alan Pearce | 2017-03-17 22:01:10 +0100 |
---|---|---|
committer | Alan Pearce | 2017-03-17 22:01:10 +0100 |
commit | 0c4343e413bbc922954b417a639c60dfa007a0da (patch) | |
tree | 524b8f54d7501b7d382748dd04630ba21361c43f /tag-emacs | |
parent | f79b34c0fe68175454606309f074340d2457ab0d (diff) | |
download | dotfiles-0c4343e413bbc922954b417a639c60dfa007a0da.tar.lz dotfiles-0c4343e413bbc922954b417a639c60dfa007a0da.tar.zst dotfiles-0c4343e413bbc922954b417a639c60dfa007a0da.zip |
Emacs: Fix replace error
Diffstat (limited to 'tag-emacs')
-rw-r--r-- | tag-emacs/emacs.d/init.org | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index 82e1755..e8a7c3b 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -2435,10 +2435,8 @@ it much clearer. It’s especially helpful for protoyping and refactoring. ** replace #+BEGIN_SRC emacs-lisp -(use-package replace - :defer t - :config (progn - (setq case-replace nil))) +(with-eval-after-load "replace.el" + (setq case-replace nil)) #+END_SRC ** visual-regexp |