FAQ
Cover
This is the archive Discourse for the Processing (ALPHA) software.
Please visit the new Processing forum for current information.

   Processing 1.0 _ALPHA_
   Suggestions
   Software Suggestions
(Moderator: fry)
   IDE: tab key indenting highlighted text
« Previous topic | Next topic »

Pages: 1 
   Author  Topic: IDE: tab key indenting highlighted text  (Read 243 times)
silentium


IDE: tab key indenting highlighted text
« on: Nov 9th, 2003, 9:46pm »

I find having the tab key indent highlighted text helps when you reorganize code.
 
e.g.
 
// turning this:
class a
{
void run()
{
  println("a.run");
}
}
 
// into this:
class a
{
  void run()
  {
    println("a.run");
  }
}
 
benelek

35160983516098 WWW Email
Re: IDE: tab key indenting highlighted text
« Reply #1 on: Nov 10th, 2003, 7:49am »

the edit-->beautify command will do this for you.
 
Pages: 1 

« Previous topic | Next topic »