Indenting is used to organize code by indicating blocks, closures, conditionals, and other constructs. It makes code easier to read, and in some languages is used to handle code flow.

learn more… | top users | synonyms

4
votes
2answers
1k views

Indent, pretty-print code including Django template tags, HTML, CSS, and JavaScript

In dealing with a bunch of crufty Django template files, I want to indent them. The files contain: HTML, the bulk of the file. Maybe a pre tag or two. JavaScript, inside script tags. CSS inside ...
3
votes
2answers
156 views

Can PHP introspect or detect tag's current indent level within source document?

For those of us still inlining PHP within an HTML structure, is there a way to introspect the indent level (within the source) of the current PHP statement/tag being evaluated? Consider the following ...
1
vote
2answers
369 views

vim - html in php files: how to change tab size for html only

How to change the indent, tab size for HTML markup within PHP files? I dont want to change the indent size for php code. Desired tab sizes: HTML - 2, PHP - 4 so it looks like this: <dl> ...
0
votes
2answers
139 views

indent line or selected region or whole document in visual studio 2010 C# with resharper

It seems like none of the settings for indentation are working for me. Tried CTRl-K,Ctrl-F Ctrk-K,Ctrl-D Ctrl-I I don't want to move to the beginning of the line for every indent using tab. Is there ...
0
votes
2answers
444 views

JSF selectOneRadio indentation

Is there anyway to indent a set of radio buttons? I want it to look like the following: o Item 1 o Item 2 o Item 2.1 o Item 2.2 o Item 3 I tried just applying a style to it but it doesn't ...
0
votes
2answers
437 views

How can I determine paragraph and line indents in MS Word documents with c#?

Any one Please tell me is there any way to determine indents of each line and paragraph in MS word documents. I’m new in Office programming and I intend to write an application which convert documents ...
3
votes
1answer
191 views

Disabling JSHint indentation check only for a specific file

I use jshint with the indent enforcing option enabled and set to 4, and would like to keep it that way for most files in the codebase. In one specific file though, I would like to disable this check. ...
3
votes
1answer
297 views

Is it possible to set the hanging indent of each line in a RTB in c#?

So basically what I need to do in a C sharp rich text box, is take the text from how it looks in this image: And make it look perfectly formatted like stack overflow does: Product Data: Submit ...
3
votes
1answer
218 views

How to avoid indenting comment blocks with vim cindent?

I have a comment block such as: /*++ Blah: blah Foo: foo --*/ And I'm using the following vim cindent options: set shiftwidth=2 set tabstop=2 set cindent set cino=g0,+0,(0,W2 If I ...
2
votes
1answer
269 views

VB.NET with Word - how to modify a paragraph indent after find

I am using VB.NET (VS2012) and Word (2013) with the Word 14 interop. Note: I am NOT using VBA within Word and can't use that as a solution. I am trying to do a search and replace in the document for ...
1
vote
1answer
103 views

Indent blank lines (IntelliJ IDEA)

I'd like to set the IDEA formatter to keep indentations on blank lines. Currently when I reformat my source files, it strips all indents on blank lines. I could not find anything on Google nor could ...
1
vote
1answer
133 views

How to autoindent code in multiple files with eclipse CDT

It is simple to autoindent the code in one source file in eclipse CDT (Ctrl-I will indent the selection). Is there a way to do it on multiple files at once? I need to auto-indent all the source files ...
1
vote
1answer
127 views

How to set auto insert new line and indent in Vim when use the auto close in pair

I found a Vim auto pair plugin called vim-autoclose. It works great just like other IDEs. For example, when you type { it gives you {|} (the "|" represents the cursor). Then, if you press "Enter", the ...
1
vote
1answer
116 views

Auto Indenting Compass/SASS files

Is there any simple way to auto-indent SASS/Compass files? I want to maintain the indentation inside the hierarchy.
1
vote
1answer
2k views

Auto-Indent Code In Dreamweaver CS4

This is getting really irritating and I can't seem to figure out how to disable this feature. I notice that if I use a [ in a line and then press enter and then close an if statement with }, it will ...
1
vote
1answer
228 views

Configure indentation in LESS CSS

I recently started using LESS(http://lesscss.org/) for writing my CSS. It is great and I love it but I couldn't find how to configure the indentation of the output CSS file. By default it is 2 spaces, ...
0
votes
1answer
42 views

How to get properly indented XML on Android?

Based on several examples here on StackOverflow I have the following code for indenting XML. I have a source xml file in a String. Output however is not indented, but it also doesn't give any errors. ...
0
votes
1answer
88 views

vi plugin - Stab - replace regular tabs with spaces, bundle as plugin and autostart

for long period I'm looking for a good indentation plugin, and recently I found: http://stackoverflow.com/a/1610732/2034967 this is an awesome indentation(the best in my personal opinion) and I use ...
0
votes
1answer
118 views

Opening New Tab Undoes Code Folding in Vim

I have an HTML file with the CSS in the head. Usually I open the file in 2 tabs, so I can switch between the HTML and CSS easily, but I would also like to fold most of the code (especially the ...
0
votes
1answer
453 views

Emacs indentation for switch…case statements

Indentation in Emacs always works, but I face some questions about switch - case statements. For example, switch (x) { case 'A': case 'B': printf("hello"); printf(...); printf(...); break; } ...
0
votes
1answer
2k views

Java 1.6: javax.xml.transform.Transformer refuses to indent xml strings which contain newlines

I need to be able to pretty print xml strings using Java APIs and have found multiple solutions for this both on the web and on this particular website. However despite multiple attempts to get this ...
-1
votes
1answer
54 views

Aptana tab indentation guides

I recently moved from geany to Aptana as I'm working on some bigger projects and felt I would benefit from a full IDE. One feature I'm really missing is the little grey line every four spaces to help ...
2
votes
0answers
545 views

Zend Studio code formatter problem with comments

i have Zend Studio 7.x, mostly use it for Zend Framework PHP and OOP JavaScript. When i run formatter on *.php file, often space is added after block of inline comments Before formatter run: ...
0
votes
0answers
11 views

PyDev comment indentation behaviour

Problem: In PyDev (multiline) comments (Ctrl+/) always prepend the comment character # on the beginning of the line. This behaviour might not be preferred for the user (at least for me it is not). The ...
0
votes
0answers
12 views

Optional 'psl' (procnames-start-lines) formatting when using 'indent'

I was hoping there would be a way to use the indent -psl option, but have it only take effect when breaking long lines. For example, I would like this procedure to be on one line: void ...
0
votes
0answers
68 views

Identation Error - OpenErp Python

I got this error after adding a function field in my module OpenERP Server Error Client Traceback (most recent call last): File "C:\Program Files\OpenERP ...
0
votes
0answers
88 views

ScrollViewer width in TreeView row not correct after node expand

I have a TreeView where each subnode has a grid with two columns. In the first column, there is a ScrollViewer (because the text can be very long). I want the right side of this ScrollViewer align ...
0
votes
0answers
27 views

indented image not working in browser

Righto i believe i have indented this properly but looking like ive done something wrong www.techagesite.com/new_page_9.htm <p style="margin-top: 0; margin-right:10; margin-bottom:0; ...
0
votes
0answers
37 views

Pydev Comment Toggle Adds Indent

Problem: When I toggle a comment in Pydev it adds a space, inconveniencing me to manually correct this indentation. This was not an issue with earlier versions of Eclipse/Pydev. This problem occurs if ...
0
votes
0answers
24 views

Any indent utility for PHP which can break long lines?

I am looking for a utility or program which can indent PHP code. The problem I have is that for instance PHPStylist takes a line which looks like: somefun($somerandomvarnamegoeshere1, ...
0
votes
0answers
43 views

Implement indent and dedent using JFlex

I am trying to generate a compiler for Pi language. How do I toggle the issue of indent and dedent in JFlex?
0
votes
0answers
21 views

Code beautifiers treat multiplication and pointer operator as same

I am using the Lindent script from Linux kernel source tree to format certain Linux driver code. The indent options, however, treat the '*' operator appearing in arithmetic statement (that is as a ...
0
votes
0answers
39 views

padding in top and bottom of scroll

I have this code: <div class="container"> <p> many-many of text </p> many many of some element </div> I want that scroll on the right of div.container's element have ...
0
votes
0answers
24 views

How do I keep 'indent' from moving curly braces to the next line?

I have several empty inline function definitions in C++ like so: class C { void foo(){} void bar(){} }; now if I run indent -st -i4 -nut test.cc in order to just fix the indentation I get ...
0
votes
0answers
65 views

Auto indention in AvalonEdit

I don't see any documentation about how setting the Auto Indention to true in XAML. I'm sure it is possible somehow. How can I do that, please?
0
votes
0answers
80 views

Custom Eclipse indentation rule (Window/Preferences are too simple)

I'd like to make Eclipse to indent code when it comes across certain sequence of characters (e.g. //indent). Can I somehow configure this in Eclipse or should I use a of plugin of somekind? Custom ...
0
votes
0answers
83 views

Visual Studio Add In Indent in text adornment

I'm trying to create an Visual Studio Add In for the very first time, that is going to draw graphic elements on each indent of the text. The Add In is created from the "Editor Text Adornment" ...
0
votes
0answers
100 views

How do I disable Aptana's snippet assist for JSON objects?

I like to indent json objects like so: { "key": "value", "key_2": "value_2", "foo": "bar" } For some reason, when I press tab after typing the colon ":", Aptana's editor keeps ...
0
votes
0answers
51 views

How do i change indent options in ECLIPSE for this

I want to a sequence of four "shift + tab" do what you can see below. But ECLIPSE can't do it, it can't do the last step properly. You can test on your eclipse to see. If i press "shift + tab" four ...