What's the emacs package/config that prevents Tab from inserting a Tab and instead does only autoindenting
i don't know about that, but i have this in my ~/.emacs.d/init.el:
(setq-default indent-tabs-mode nil)
does that seem close to what you want?> Indentation can insert tabs if this is non-nil.
It kinda works. Doesn't work for elisp tho. Not maybe I'm remembering a behaviour that didn't exist in my config hmmmm
Thanks!
interesting...when i do emacs -q
and edit an emacs lisp file, pressing tab doesn't lead to any tabs being inserted afaict.
ah no that's wrong.
but the indent-tabs-mode
setting does seem to work (that is, during an emacs -q
session)
(fwiw, this is with emacs 27.1)