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?
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?
Use rectangular operations. C-x r k - to kill a rectangle.
You do the same, since C-x tab understands negative arguments.
So to outdent 3 columns:
C-- C-3 C-x tab
Just like you mention for indenting:
C-u N C-x TAB
Just use a negative N:
C-u -N C-x TAB