2

I have the following script working Emacs Auto Indent Mode

it does auto indenting but it has one problem when i start marking regions and go down by lines each time i hit the indention the marking is canceled and it kind-of annoyance me.

How can this be fixed or are there any alternatives? or how can i disable auto indention when marking region is active

1 Answer 1

1

It sounds like you have Transient Mark mode enabled. Try putting this at the bottom or your ~/.emacs file:

;; Turn off Transient Mark mode.
(transient-mark-mode -1)

and restart Emacs.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .