0

spacemacs default configuration enables auto-completion, however by default its case insensitive.

How to make auto-complete case sensitive (specifically using a spacemacs configuration)?

Dan
  • 32,980
  • 7
  • 102
  • 169
ideasman42
  • 8,786
  • 1
  • 32
  • 114

1 Answers1

1

Put this in your ~/.emacs, (setq ac-ignore-case nil).

For spacemacs this can be done by editing ~/.spacemacs file:

(defun dotspacemacs/user-config ()
  ;; add the line below to the user-config section
  (setq ac-ignore-case nil)
  )
ideasman42
  • 8,786
  • 1
  • 32
  • 114
bertfred
  • 1,729
  • 1
  • 12
  • 24