Page 1 of 1

Add an space to selected line

Posted: Mon Oct 06, 2008 2:16 pm
by Fredi
I want do something like "Insert comments" in IDE but instead of ";" add space to selected lines, its possible or not yet?

Example:

Code: Select all

If a> 1

line 1
line 2
line 3
line 4

Endif
To:

Code: Select all

If a> 1

   line 1
   line 2
   line 3
   line 4

Endif

Re: Add an space to selected line

Posted: Mon Oct 06, 2008 2:22 pm
by PB
Select all the lines and press the Tab key. ;) Shift+Tab moves them back.

Add an space to selected line

Posted: Mon Oct 06, 2008 2:50 pm
by Fredi
Thank you PB :wink: