27.05.2012, 10:32
Use the TAB key to indent (push a line in). Each 'block' should be pushed in one level, i.e.
Put the mouse cursor (the blinking |) at the start of the line and press TAB, or highlight all the code and press TAB. Use Shift+TAB to outdent (reverse indent).
pawn Код:
public function(params)
{
if(condition)
{
for(...)
{
// stuff
}
}
return 1;
}