emacs

Consider also joining #cider, #lsp and #inf-clojure, where most of the tool-specific discussions are happening.
zackteo 2020-09-13T07:31:04.063100Z

What's the emacs package/config that prevents Tab from inserting a Tab and instead does only autoindenting

2020-09-13T08:30:55.063800Z

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?

2020-09-13T08:31:02.064Z

> Indentation can insert tabs if this is non-nil.

zackteo 2020-09-13T12:53:17.064900Z

It kinda works. Doesn't work for elisp tho. Not maybe I'm remembering a behaviour that didn't exist in my config hmmmm

zackteo 2020-09-13T12:53:20.065100Z

Thanks!

2020-09-13T13:18:27.065900Z

interesting...when i do emacs -q and edit an emacs lisp file, pressing tab doesn't lead to any tabs being inserted afaict.

2020-09-13T13:18:48.066100Z

ah no that's wrong.

2020-09-13T13:19:35.066600Z

but the indent-tabs-mode setting does seem to work (that is, during an emacs -q session)

2020-09-13T13:21:23.067Z

(fwiw, this is with emacs 27.1)