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.
0
votes
1answer
30 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 ...
1
vote
1answer
117 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
46 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
57 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
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 ...
1
vote
1answer
23 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
29 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
80 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
68 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
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 ...
1
vote
1answer
60 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
39 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
82 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
67 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
53 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
69 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
180 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
90 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
87 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
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. ...
3
votes
1answer
186 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
54 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
29 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
106 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
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
1answer
85 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
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, ...
-1
votes
2answers
34 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!
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 ...
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
2answers
70 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
20 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
267 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
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 ...
4
votes
1answer
187 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
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
...
2
votes
1answer
76 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
107 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
438 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 ...
0
votes
1answer
85 views
PHP and HTML indenting or not…? [closed]
I have been looking at several questions regarding the pros and cons of indenting HTML into PHP or not. I did not find a clear answer.
My main question now is regarding a small code I have, in which ...
0
votes
0answers
64 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
1answer
119 views
Vim: Code Hard-Wrapping and Advanced Indentation/Alignment in Vim Script
Code Hard-Wrapping. I've configured Vim to automatically (as I type) hard wrap long lines of comments on 80 columns. Works well. However, it does not seem to wrap code automatically. I thought adding ...
2
votes
0answers
136 views
Python IDLE: auto-indent is too large? [closed]
This isn't the same as the question "Changing indentation in Python's IDLE"1. When writing code IDLE is supposed to indent for the user when you type a line ending in a colon. But in the current ...
3
votes
1answer
93 views
How to indent a block of code in Pharo / Squeak?
With a selected a block of code, I try to indent it by pressing TAB.
I would expect the code to be indented.
Instead, the selected text is deleted and replaced by a TAB.
How come? Is there any ...
4
votes
3answers
134 views
How to keep vim from adding indentation to strings?
I want to be able to gg=G on my bash scripts, or some variation of auto-format that won't obstruct a simple echo.
I have a feeling that something like this isn't an issue, I just haven't discovered ...
0
votes
1answer
82 views
XSLT: Avoiding indentation in some nodes
I have some XSLT that replaces linebreaks with <Break/> tags and it works fine as long as there isn't multiple consecutive linebreaks. I think it's the indent="yes" that's causing problems.
Can ...
2
votes
2answers
66 views
Fixing indents of a source and making it clean
Is there any suitable program to fix the indents of a R script already written?
For example if it is fed an script like this:
foo = function(x) {
a = 1
print(a)
}
It converts it to:
foo = ...
1
vote
1answer
389 views
PhpStorm: any solution for 4 annoying problems?
I'm a rather happy PhpStorm user, but there are a few things that really annoy me, but I'm not a settings expert and wish there is a solution for them (editing PHP files) :
Navigation
Often in the ...
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 ...




