vote up 2 vote down star

In emacs, after an operation such as comment-region, the selected region is automatically deselected.

Is there any way of disabling this behaviour?

flag

59% accept rate
2  
Are you sure the region is deselected, or you just lost the visual highlight? (You may try running uncomment-region right after comment-region.) – Török Gábor May 3 at 17:46
Wow, you are right, thanks! I'll accept Brians' answer. – EoghanM May 3 at 19:06

1 Answer

vote up 1 vote down check

If the region is deselected, that sounds like you must be using transient-mark-mode. In transient-mark-mode, when you execute a command that operates on the region, the region is deselected (in particular, the mark remains, but it is inactive). You can reselect the region (reactivate the mark) using C-x C-x (exchange-point-and-mark).

If you want to disable the deselection entirely, you can turn off transient-mark-mode. This means that you won't get any highlighting of the current region, though if you would like to set the mark and highlight the region, you can turn on transient mark mode briefly using C-<SPC> C-<SPC> or C-u C-x C-x.

link|flag
hmm, I can't seem to turn it off - I now have (custom-set-variables '(transient-mark-mode nil)) in .emacs and M-x transient-mark-mode gives: Transient-Mark mode disabled but the behaviour (highlighting & immediate deselection) hasn't changed – EoghanM May 2 at 22:26
That's rather odd. Do you have something else in your .emacs that enables transient mark mode? Or is there something in a particular major mode you're using that forces transient mark mode on? – Brian Campbell May 2 at 22:37
grep -r "transient" ~/.emacs.d/ turns up nothing, and nothing in ~/.emacs – EoghanM May 3 at 10:26
slink pointed me towards the answer - with transient-mark-mode off, the behaviour doesn't seem to have changed (still a 'transient' highlighting of region), but the region does seem to be permanent. – EoghanM May 3 at 19:07
Hmm, interesting. It doesn't work that way in my version of Emacs; I'm running GNU Emacs 22.3, perhaps you're running a different version? Glad you got it working, anyhow. – Brian Campbell May 3 at 20:54
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.