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,584
  • 6
  • 98
  • 168
ideasman42
  • 8,375
  • 1
  • 28
  • 105

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,375
  • 1
  • 28
  • 105
bertfred
  • 1,699
  • 1
  • 11
  • 23