vote up 2 vote down star

In vim, visual block can be recall by 'gv' command so that multiple commands can be applied easily. (such as, comment out, then indent, then do_something_fun).

In Emacs, how can this be achieved? [C-xC-x] only works when current cursor position stays where previous block ended. If previous block was changed, the closest is to go through 'point-to-register' and 'jump-to-register'.

Just I am curious if there is an Emacs built-in command making this in one shot.

flag
1  
Aww, why go from vim to emacs? – Brian Jun 24 at 22:30
2  
Don't want to be in religious choice-of-editor debate. 2 years ago, I switched to Emacs, and I like it. – Raymond Jun 24 at 22:36
Could you describe what you mean in more detail? I'm not familiar enough with vim to know what you are asking for. – docgnome Jun 24 at 22:47

2 Answers

vote up 2 vote down

If Transient Mark mode is off, the region is always active. If it's on (which it sounds like is your situation), you can set mark-even-if-inactive to non-nil to allow region commands to work while the region isn't highlighted.

However, note you also can cycle back through previous mark positions using C-u C-SPC -- this will pop the mark ring. Once you're back to where you want to be, C-x C-x will rehighlight the region you want. (It may take a little bit of playing with this feature to get a feel for it, but it's why I can't switch away from Emacs now.)

link|flag
vote up 4 vote down

If I understand correctly what you are asking for, then you don't need to do anything. When you select a region in emacs, it stays selected until you select a new one. So you could select the region and then perform as many actions as you want.

link|flag
Using Emacs 23(.0.93.1). Thanks, but it didn't work as you mentioned. I am selecting resion using CTRL-SPC for beginning, current-posision for the end. Region highlights after the selection. Applying a command makes this hightlight go away. I assumed this deselects region. – Raymond Jun 24 at 23:00
@Raymond Try performing another action. The region is no longer highlighted but it is still selected. – docgnome Jun 24 at 23:08
+1 Agreed that this solution works. – Trey Jackson Jun 24 at 23:50

Your Answer

Get an OpenID
or

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