how to automatically reset tabs in sourcecode

  • Thread starter Thread starter John Devlon
  • Start date Start date
J

John Devlon

Hi

I worked for several years with visual studio and i'm loving it.

One thing I noticed is that, when creating asp pages, the source code is but
of a mess... Tabs are automaticlly at random inserted. Opening statements
are in most causes not on the same tab level as the closing statements.

Is there a function or plugin to clean up the number of tabs inserted before
each line of code to make the code more readable?

Thanks

Tim
 
John said:
Hi

I worked for several years with visual studio and i'm loving it.

One thing I noticed is that, when creating asp pages, the source code is but
of a mess... Tabs are automaticlly at random inserted. Opening statements
are in most causes not on the same tab level as the closing statements.

Is there a function or plugin to clean up the number of tabs inserted before
each line of code to make the code more readable?

VS has a "reformat code" menu command. I don't recall off the top of my
head exactly where it is, but it should not be hard to find.

It works well in the editors I've used it with (C#, XML, VB.NET, to name
a few)...I don't know about your ASP.NET code, but it probably handles
that too, whatever you mean specifically by that.

Pete
 
John Devlon said:
Is there a function or plugin to clean up the number of tabs inserted
before each line of code to make the code more readable?

Thanks

Tim

Open the file in the IDE editor and then Ctrl-K Ctrl-D to reformat the
indentation.

Tom Dacon
Dacon Software Consulting
 
John said:
Hi

I worked for several years with visual studio and i'm loving it.

One thing I noticed is that, when creating asp pages, the source code is but
of a mess... Tabs are automaticlly at random inserted. Opening statements
are in most causes not on the same tab level as the closing statements.

Is there a function or plugin to clean up the number of tabs inserted before
each line of code to make the code more readable?

Thanks

Tim

If your question is how does the automatic formatting get done, and can
it be customized, then look to the following:

1. Menu "Tools", then "Options"
2. On the left, select/expand "Text Editor", "HTML", "Format"
3. Click the button on the right "Tag Specific Options"
4. Alter either the default settings, or expand the "Client HTML Tags"
or "ASP.Net Controls" to find options specific to a tag.

This lets you customize the behavior when the doc is reformatted by you
or the editor.
 
Back
Top