tags:

views:

77

answers:

3

I can use C-x TAB for indenting 1 column, or C-u N C-x TAB for N columns.

How can I `outdent' a block with emacs?

+1  A: 

Use rectangular operations. C-x r k - to kill a rectangle.

Maxim Yegorushkin
@Maxim : How to outdent 1 column?
prosseek
Select a rectangle one column wide (it will show as if you selected several lines). Then C-x r k.
Maxim Yegorushkin
+5  A: 

You do the same, since C-x tab understands negative arguments.

So to outdent 3 columns:

C-- C-3 C-x tab

Bahbar
+1  A: 

Just like you mention for indenting:

C-u N C-x TAB

Just use a negative N:

C-u -N C-x TAB

Josh