all repos — archive/dotfiles @ 6e6ba4ad2f37ff70989a7ed8d30b2f75fe67f619

Superseded by nixfiles

Emacs: Fix free variable warning: company-dabbrev-downcase

The default is `case-replace`, so use that instead
Alan Pearce alan@alanpearce.uk
Tue, 14 Mar 2017 22:42:11 +0100
commit

6e6ba4ad2f37ff70989a7ed8d30b2f75fe67f619

parent

9a0f3dae0a5113b04d6c40088e7e582f4ac0d7a1

1 files changed, 10 insertions(+), 2 deletions(-)

jump to
M tag-emacs/emacs.d/init.orgtag-emacs/emacs.d/init.org
@@ -951,8 +951,7 @@ company-idle-delay .3                 company-begin-commands '(self-insert-command)
                 company-auto-complete #'company-explicit-action-p
                 company-auto-complete-chars '(?\ ?\( ?\) ?.)
-                company-tooltip-align-annotations t
-                company-dabbrev-downcase nil)))
+                company-tooltip-align-annotations t)))
 #+END_SRC
 
 #+BEGIN_SRC emacs-lisp
@@ -2444,6 +2443,15 @@ (set-marker p nil)                     (set-marker m nil))
                 ad-do-it)))
   :diminish undo-tree-mode)
+#+END_SRC
+
+** replace
+
+#+BEGIN_SRC emacs-lisp
+(use-package replace
+  :defer t
+  :config (progn
+            (setq case-replace nil)))
 #+END_SRC
 
 ** visual-regexp