Tagged Questions
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 control flow.
146
votes
11answers
77k views
Notepad++ tabs to spaces
Does anyone know how to convert tabs to spaces in Notepad++? I found a webpage that suggests it's possible (http://www.texteditors.info/notepad-replacements-compared.php) but I couldn't find any ...
63
votes
9answers
16k views
How do I fix the indentation of an entire file in Vi?
In Vim, what is the command to correct the indentation of all the lines?
Often times I'll copy and paste code into a remote terminal and have the whole thing messed up. I want to fix this in one ...
32
votes
5answers
11k views
Changing Vim indentation behavior by file type
Could someone explain to me simply the easiest way to change the indentation behavior of vim based on the file type? For instance if I open a python file it would indent with 2 spaces, but if I open ...
24
votes
15answers
1k views
How to avoid wasting screen space writing sparse C# code?
The commonly accepted way to format C# code seems to be as follows:
namespace SomeNamespace
{
namespace SomeSubNamespace
{
class SomeClass
{
void SomeFunction()
...
24
votes
5answers
4k views
Turning off auto indent when pasting text into vim
Unfortunately, I am not an experienced vim user. But, I am making the effort to learn it.
When I paste code into my document from the clipboard, I get extra spaces at the start of each new line:
...
23
votes
2answers
3k views
Can git automatically switch between spaces and tabs?
I use tabs for indentation in my python programs, but I would like to collaborate (using git) with people who use spaces instead.
Is there a way for git to automatically convert between spaces and ...
22
votes
25answers
11k views
Tab versus space indentation in C#
I sometimes find myself discussing this issue with other C# developers and especially if we use different styles. I can see the advantage of tab indentation allowing different developers to browse the ...
21
votes
15answers
5k views
Why does Python pep-8 strongly recommend spaces over tabs for indentation?
I see on Stack Overflow and PEP 8 that the recommendation is to use spaces only for indentation in Python programs. I can understand the need for consistent indentation and I have felt that pain.
Is ...
20
votes
3answers
383 views
Why is indentation in empty lines bad?
Every FOSS project I know has rules against trailing whitespace in code. But I think it's very natural to continue the current indentation on the next line:
int main()
{
....int a = 42;
....
...
19
votes
3answers
894 views
Emacs Haskell indentation
Please help me set up proper indentation in Emacs haskell-mode
When I'm trying to type down something like ADT or a record, I'm getting on the wrong column after pressing <ENTER>, and pressing ...
18
votes
4answers
1k views
Is there any way to make Visual Studio stop indenting namespaces?
Visual Studio keeps trying to indent the code inside namespaces.
For example:
namespace Foo
{
void Bar();
void Bar()
{
}
}
Now, if I un-indent it manually then it stays that way. ...
18
votes
2answers
1k views
Vim automatically removes indentation on Python comments
I'm using Vim and editing Python scripts.
Autoindent works pretty well in general, but when I start a new line and type '#' to type a comment, Vim unindents that line for me.
For example, if have
...
16
votes
6answers
2k views
Is it possible to display Indentation guides in Vim?
I'm a longtime Vim user (3 or 4 years) who has recently started dealing with some deeply nested code. This code is indented with spaces, not tabs. I would like some clean and non-distracting ...
15
votes
6answers
658 views
How can I spot subtle Lisp syntax mistakes?
I'm a newbie playing around with Lisp (actually, Emacs Lisp). It's a lot of fun, except when I seem to run into the same syntax mistakes again and again.
For instance, here's something I've ...
15
votes
4answers
7k views
How can I wrap text to some length in Vim?
Let's speak of relative measures. My Vim looks like:
aaaaaaaaaaaaa
bbbbbbbbbbbbb
ccccccccccccc
etc
I would like it to be smaller:
aaaaa
aaaaa
bbbbb
bbbbb
ccccc
ccccc
etc
How can I get it? And ...
14
votes
1answer
385 views
Emacs cc-mode indentation problem with C++0x enum class
Emacs cc-mode does not appear to yet recognize the type-safe enum class introduced in C++0x. The result I get is a double indentation for second, third, etc enums:
enum class Color {
Blue,
...
14
votes
3answers
579 views
How to handle widespread code format changes in a git repository
We have a project with around 500,000 lines of code, managed with git, much of it several years old. We're about to make a series of modifications to bring the older code into conformance with the ...
13
votes
3answers
611 views
Does vim have this Notepad++ feature?
In Notepad++, there is a dotted line that runs down from the function keyword through the end of the method. It looks like this:
Can vim reproduce something similar?
13
votes
8answers
1k views
Indenting #defines
I know that #defines etc. are normally never indented. Why?
I'm working in some code at the moment which has a horrible mixture of #defines, #ifdefs, #elses, #endifs, #etc. All these often mixed in ...
12
votes
3answers
532 views
emacs 23 python.el auto-indent style — can this be configured?
I have been using emacs 23 (python.el) for just over a month now and I'm unhappy with the default auto-indentation settings.
Currently, my Python files are auto-indented as follows:
x = ...
12
votes
5answers
4k views
How to properly indent PHP/HTML mixed code?
When mixing PHP and HTML, what is the proper indentation style to use? Do I indent so that the outputted HTML has correct indentation, or so that the PHP/HTML mix looks properly formatted (and is thus ...
11
votes
5answers
194 views
Why is the Java library source code so strangely indented?
I often rely on the JDK source code to understand how I should implement an interface, and I often find some very strange indentation style at use. For instance, in DefaultCellEditor.java:
public ...
11
votes
7answers
313 views
What is a good heuristic for determining the tab width used in a source file?
I would like to determine the tab width used in source files indented with spaces.
This is not hard for files with particularly regular indentation, where the leading spaces are only used for ...
11
votes
2answers
993 views
How to control indentation after an open parenthesis in Emacs
When I use emacs python-mode, if the last character of a line is an open parenthesis it indents the next line just one step in from the indentation of the previous line.
call_some_function(
...
11
votes
4answers
1k views
Smart Indent algorithm documentation?
I'm a big fan of documenting the proper behavior of IDE features that have a subtle but significant impact on coding flow - things like auto-completion selection and commenting/uncommenting code you ...
11
votes
2answers
6k views
How do I tidy up an HTML file's indentation in VI?
The other day my friend asked me how to fix the indentation of his huge html files which was all messed up.
I tried the usual "gg=G" command, which is what I use to fix the indentation of code files. ...
11
votes
5answers
41k views
IndentationError: unindent does not match any outer indentation level
When I compile the Python code below, I get
IndentationError: unindent does not match any outer indentation level
import sys
def Factorial(n): # Return factorial
result = 0
for i in ...
11
votes
6answers
11k views
Correct indentation of HTML and PHP using Vim
I've been using Vim for a while, and I can't get proper HTML indentation working in PHP files.
For example, what I want is for each child to be indented one tab more than it's parent, as shown below.
...
10
votes
2answers
265 views
Avoiding label indenting in C++
I guess this was asked before, but I could not find any similar question.
When writing part of the scope operator in C++, Vim guesses that it's going to be a label (on the first :) and then indents ...
10
votes
2answers
908 views
Parsing Indentation-based syntaxes in Haskell's Parsec
I'm trying to parse an indentation-based language (think Python, Haskell itself, Boo, YAML) in Haskell using Parsec. I've seen the IndentParser library, and it looks like it's the perfect match, but ...
10
votes
3answers
2k views
Haskell “where” indentation: why must it be indented past identifier?
This code:
import Data.Char (digitToInt)
myInt :: String -> Int
myInt [] = error "bad input: empty string"
myInt (x:xs)
| x == '-' = -1 * myInt xs
| otherwise = foldl convert 0 (x:xs)
...
10
votes
1answer
2k views
XCode 3.2: Changing the default “Code Sense” indentation and whitespaces
I'm working with XCode 3.2 (on "Snow Leopard") which (still) has this nice "Text Macro" auto-completion feature (eg. if you type if it will expand to if (<#condition#>) { <#statements#> ...
10
votes
4answers
3k views
Algorithm for neatly indenting SQL statements (Python implementation would be nice)
I'd like to reformat some SQL statements that are a single string with newlines in to something that's much easier to read.
I don't personally know of a good coding style for indenting SQL - how ...
9
votes
2answers
551 views
Emacs ruby-mode indentation behavior
class Foo
attr_accessor :a,
:time, # ms since epoch
:b,
:c
end
In text mode, the variables listed after 'a' would indent as written above, but in ...
9
votes
9answers
821 views
Why don't people indent C++ access specifiers/case statements?
I often see stuff like this:
class SomeClass {
public:
void someMethod();
private:
int someMember;
};
This seems totally unnatural to me (the same applies to case-statements when using ...
9
votes
1answer
508 views
How to indent the fluent interface pattern “correctly” with eclipse?
I just created a generator for some fluent interfaces. Now I have lots of code looking like this:
new MyFluentInterface()
.setFirst( "first" )
.setSecond( "second" )
.setThird( "third" )
...
9
votes
13answers
220 views
Formatting of dynamically generated HTML - does no one care?
I have very little experience in web development, so this may be a very basic question.
It's just, from the limited experience I do have (a little PHP, and a little Ruby on Rails), it seems that the ...
9
votes
4answers
441 views
How do I indent a single line multiple times in vi or vim?
I've found several answers on how to indent multiple lines in vim, I want to know how to take a single line and indent it more than once. In effect, I want a shorter version of the following command:
...
9
votes
11answers
838 views
Why doesn't Python require exactly four spaces per indentation level?
Whitespace is signification in Python in that code blocks are defined by their indentation.
Furthermore, Guido van Rossum recommends using four spaces per indentation level (see PEP 8: Style Guide ...
9
votes
5answers
965 views
indenting a bunch of lines in VIM
Is there a way to indent a selection of lines in vim, like we have in text editors where we select a bunch of lines and press tab (or shift tab) to indent/unindent the selected lines? I am talking ...
9
votes
3answers
1k views
How to display indentation guides in Emacs?
I'm trying to switch to Emacs as my primary source-code editor. I really miss one thing (common in even much simpler editors) - indentation guides (unobtrusive vertical lines which show the ...
9
votes
2answers
628 views
Visual Studio, per solution indentation settings
I'm working on a couple of different things and some use tabs, some use 2 spaces for indents, another users 4 spaces for indents etc.
The option to set this in Visual Studio is in ...
9
votes
4answers
6k views
Emacs C++-mode incorrect indentation?
I'm running emacs 23 with c++-mode and having some indentation problems.
Suppose I have this code:
void foo()
{
if (cond)
{ <---
int i;
...
} <---
}
This seems to ...
8
votes
2answers
155 views
What is the proper way of indenting Erlang?
Till yesterday, I was a happy user of out-of-the-box emacs + erlang-mode. Then my colleague started contributing to the project (using some windows editor), and it seems he is not very happy with the ...
8
votes
2answers
136 views
Vim: Reformat a source file to go from 2 space indentations to 3
This question is nearly identical to this question except that I have to go to three spaces (company coding guidelines) rather than four and the accepted solution will only double the matched pattern. ...
8
votes
6answers
302 views
What is the proper way to format a multi-line dict in Python?
In Python, I want to write a multi-line dict in my code. There are a couple of ways one could format it. Here are a few that I could think of:
mydict = { "key1": 1,
"key2": 2,
...
8
votes
2answers
546 views
Vim auto-indentation: Align an array initialization which extends over multiple lines
Sometimes an array initialization in C extends over several lines, especially if the array is multidimensional. In Emacs the result of auto-indentation looks like this:
int a[N][N] = {{0, 0, 6, 7, 0, ...
8
votes
4answers
1k views
How to avoid namespace content indentation in vim?
How to set vim to not indent namespace content in C++?
namespace < identifier >
{
< statement_list > // Unwanted indentation
}
Surprisingly, 'cinoptions' doesn't provide a way to ...
8
votes
6answers
9k views
How do I autoindent in Netbeans?
In eclipse you can click Ctrl+I at any line, and it'll automatically indent the line or group of lines according to the indentation scheme you chose in the settings.
I'm really missing this feature ...
8
votes
15answers
2k views
If you break long code lines, how do you indent the stuff on the next line?
Sometimes you have to write in your source long lines, that are better to break. How do you indent the stuff ceated by this.
You can indent it the same:
very long
statement;
other statement;
That ...