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

1
vote
1answer
24 views

Indenting the 2nd line of a paragraph with CSS

I'm curious how everyone would go about indenting the 2nd line of a paragraph. I've tried p{text-indent: 200px;} p:first-line{text-indent: 0;} and p{margin-left: 200px;} p:first-line{margin-left: ...
0
votes
0answers
27 views

C code formatter/indenter in JavaScript [closed]

I'm looking for a JavaScript library that provides a function: format_c_code(code); it should take a string with C code, and return a formatted version of it. e.g. format_c_code('int main(){int ...
3
votes
1answer
58 views

How to apply indent correctly on a line containing BEGIN_C_DECLS macro?

I'm using indent utility to apply code styling on my code. I have problem with the following: #ifdef __cplusplus #define BEGIN_C_DECLS extern "C" { #define END_C_DECLS } #else /* !__cplusplus */ ...
0
votes
1answer
34 views

Emacs Lisp Built-In Indentation Issue with Keywords

Original Say, I have a function like this: (defun my-function () "This is my function." :his-keyword xxx :her-keyword yyy (his-function) (her-function)) After applying Emacs built-in ...
0
votes
0answers
18 views

Right Indent parameter does not apply to Jasper Report HTML export

I have a text field defined as follows: <textField pattern="#,##0" isBlankWhenNull="true"> <reportElement uuid="2f924751-c6a9-4603-95b3-41046f59b9d1" x="591" y="0" width="105" ...
2
votes
2answers
29 views

TextArea library for code

I was wondering if there was a library or something that could indent and embellish a code in a JTextArea instead of an ugly plain text ?
0
votes
0answers
28 views

Vbscript: How to change xml indent string

I have a script to modify my backup jobs. The job definitions are in XML format. I must change 3 Node text in xml and save. I use the following script. Everything is ok. But the new created xml is ...
0
votes
1answer
34 views

Root element in XML file is not indented

I have generate an XML file using xmlEventWriter. Why if i open the file with Notepad, the root element is on the same line of the encoding??? This is the output: <?xml version="1.0" ...
0
votes
0answers
9 views

NSMutableParagraphStyle not transferring to PDF

I am in the process of converting my app from a hack to NSMutableParagraphStyle. Originally the paragraph spacing and first line indents came from a return and a tab. I didn't write the original code! ...
0
votes
0answers
47 views

Namespace indentation in Visual Studio with C#

Visual Studio indents code within namespace. This can be avoided when disabling indentation globally, which is not what I want. In all other cases, the indentation is fine, I simply don't like the ...
0
votes
1answer
43 views

Python indentation error after try:

I have a problem, whenever I try to run this python script on an Raspberry PI: import socket import sys # Create a TCP/IP socket sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) # Bind the ...
2
votes
1answer
125 views

Why indent breaks source code formatting?

I am using indent to format C source code under Ubuntu this way indent -linux -l120 -i4 -nut filename Somehow several files have broken formatting after indenter. The result looks like this ...
1
vote
1answer
63 views

ignores comments when reformatting tcl code indentation

I have try to use this plugin: http://www.vim.org/scripts/script.php?script_id=1717. But indented code in GVim(for vim it work as I expected) is not looks as I have expect. For example when I ...
2
votes
2answers
73 views

Auto indent doesn't work when using vim coding python

I want to use vim to write python code but there is a problem on auto indention. First I downloaded the latest python.vim from http://www.vim.org/scripts/script.php?script_id=790 and putted it in the ...
0
votes
0answers
14 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 ...
1
vote
1answer
33 views

Intellij idea indent on wrap

My current formatting makes too much intend when wrapping line in XML file. I get this: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
0
votes
1answer
36 views

Simple Div/text issue on aliging text on two rows

The solution to this is probably pretty simple, but I'm having massive brain farts and server crises at the moment(I'm the new web designer and noob sysadmin...crazy schedule). ...
1
vote
1answer
84 views

Use vim as command line tool?

is there a way to use vim as a command line tool? What I mean is, use it from the console (without opening a ncurses window) to run vim commands on file and save them. I need this because I usually ...
2
votes
1answer
70 views

How to set indentation type used in vim?

I'm coding in sage (a python flavour), and I want to enable the python indentation for the filetype sage. How do I do this, without changing the filetype to python? The reason I don't want python as ...
0
votes
0answers
14 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 ...
1
vote
1answer
70 views

How to remove indent after annotation in Java

I have @Override annotation in my java code, but vim indent the next line automatically like this: @Override public String toString() { //some code } How can I get rid of the ...
1
vote
3answers
43 views

unident doesnt match any outer indent level, what do i need to change? [closed]

def update(self): # Get the current mouse position. This returns the position # as a list of two numbers pos = pygame.mouse.get_pos() # Fetch the x and y out of the ...
0
votes
2answers
88 views

Indentation error in python random numbers game

This is a simple little guessing game that i've edited. I know that it should run fine, but it keeps giving me an error. On line 12 it says "unindent does not match any outer indentation level" with ...
0
votes
0answers
83 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 ...
-1
votes
1answer
88 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
1answer
161 views

Can I set IntelliJ to auto indent the code body?

Question 1: Can IntelliJ be set to indent the code body automatically upon making a new line? Here is an example of what I mean: I have this method: public static void main(String[] args) ...
-2
votes
2answers
573 views

How to auto format code indentations in VS2012? [closed]

How to auto format code in VS2012 to save time typing and deleting spaces and tabs?
2
votes
1answer
101 views

Make vim indent C preprocessor directives the same as other statements

General info (Note: Please read this all the way through, because I spent a bit of time organizing it, making sure I addressed each individual problem I'm having and why one proposed solution doesn't ...
0
votes
0answers
111 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
28 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
1answer
56 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. ...
3
votes
1answer
346 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. ...
0
votes
0answers
73 views

Stop automatic indent for certain lines in sublime text snippets? [closed]

Is there a way in sublime text to make it so that snippets, or parts of snippets are not automatically indented with the rest of the text? My example is this: <snippet> ...
0
votes
1answer
38 views

Code Spacing and Intending Tips

I know this might spur a bit of discussion, and that isn't want this site wants, but this question CAN be answered. I always code in one way that I am starting to frown upon: <html> ...
0
votes
2answers
111 views

Break long source lines, but only on comma

Background: I use PHPStylist to indent PHP code, which is generally working out fine. But, when it find function calls with many arguments, it puts all these arguments on one single line. So for ...
0
votes
0answers
53 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
1answer
96 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
0answers
28 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, ...
-1
votes
2answers
42 views

How to create in indent of a rectangle in Inkscape? [closed]

I've been trying to design something for laser cutting and couldn't figure out how to create an indent of a rectangle. Any ideas would be appreciated!
2
votes
1answer
138 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 ...
0
votes
0answers
44 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
2answers
79 views

Python expected indent error

Here is a picture of my problem in idle it says that I have an expected indent error and can't figure out what to do.
0
votes
0answers
23 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 ...
2
votes
1answer
287 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 ...
0
votes
0answers
44 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 ...
4
votes
1answer
194 views

Vim changes shiftwidth for .sml files

Vim under Win 7 changes my shiftwidth setting to something I don't want for .sml files only. What I want is everything to be indented with spaces only, and for everything to be 4 spaces always. This ...
0
votes
0answers
25 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 ...
2
votes
1answer
83 views

EMACS custom-indention function for a symbol rather than a symbolic expression?

CLIPS and JESS are lispy languages used for AI and rules-engines. Their EMACS are derived from lisp-mode. The most important form to format correctly is defrule, it helps for readability. By default ...
0
votes
1answer
117 views

How to make the indents by Vim look consistent in other software?(e.g.. Textmate, textwrangler)

I use MacVim to edit my code. The indents look pretty good in Vim,Emacs and textedit. But they look horrible in Textmate2, textwrangler. How to make the indents by Vim look consistent in other ...
1
vote
5answers
573 views

CSS - Indent all except first line

Update 2013-01-04 The flexbox solution makes very little extra HTML / CSS. However it's unclear if it can work in Firefox and IE10? To add minus characters to :before with CSS content instead of ...

1 2 3 4 5 6