For eample, I'm editing this code:
<html>
<body>
<script>
var a = 10;
a += 100;
</script>
</body>
</html>
now I need to indent the script line:
<html>
<body>
<script>
var a = 10;
a += 100;
</script>
</body>
</html>
How could I do this without moving cursor to the begin of each line and press Tab?


gg=G– Prince John Wesley Jul 19 '11 at 8:22