1

I know that I can use

(abbrev-table-put c++-mode-abbrev-table :case-fixed t)

to make one abbrev table to be case sensitive. But how can I make this default for all abbrev-tables ?

1 Answer 1

2
(dolist (table abbrev-table-name-list) (abbrev-table-put (symbol-value table) :case-fixed t)) 
2
  • Please accept your own answer of it resolves your problem so we can mark this post as completed. Commented Dec 27, 2017 at 12:22
  • this works, it makes the existing tables case-sensitive, however, new abbrevs created with C-x a i g are created using all lowercase for the unexpanded value. Commented Apr 14, 2022 at 8:10

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.