Auto-indentation is used in programming tools (IDEs and source code beautifiers) to automatically adjust the amount of leading white space on a line.
0
votes
1answer
13 views
How to cut and paste tabbed lines with auto indent set to on in vi [duplicate]
Not sure which stack exchange group this question goes so please move to the correct one if this is the wrong one.
What's happening is if I highlight something with tabs/indents from one ...
1
vote
2answers
16 views
vim: smartindent (or cindent) is activated but does not work
Vim is not autoindenting the C source files I am working on, although it claims both the autoindent and cindent options are enabled when I type the
:set
command.
Nothing is happening when I type in ...
2
votes
0answers
35 views
Certain comment styles within a block break re-indentation in Sublime Text 2
In Sublime Text 2, re-indentation (Edit -> Line -> Reindent)seems to bug out in the presence of certain comment styles in Javascript code. Only single-line C-style comments (/* ... */)work properly.
...
1
vote
1answer
82 views
Sublime Text 2 php endforeach, endif, and endwhile get confused widh html closing tag
So the problem is basically the autoindent.
I use this in the user configuration for auto indent on f12
{ "keys": ["f12"], "command": "reindent", "args": {"single_line": false} }
And in a ...
1
vote
2answers
73 views
Auto-Indention Code using Brackets
im working on a code-editor (winforms) and i want to know how to do function of { and } specifically the auto-indention using brackets (open and close) like in actual code editor .
---|> { and }
...
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 ...
4
votes
1answer
92 views
Sublime text comment indentation issue with Ruby
I use SublimeText since a few months with ruby, and I have a issue with comment auto-indentation. Indentation uses the comment's indentation, and indent all the following code using this indentation. ...
-2
votes
2answers
610 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?
1
vote
2answers
47 views
vim does remove indent for all lines starting with # character
I have already read this:
Vim automatically removes indentation on Python comments
I have tried everything that is mentioned there without success:
I have smartindent off
I use filetype indent on
...
0
votes
0answers
38 views
Auto-Indenting HTML JEditorPane
I'm using a JEditorPane to display HTML.
Is there anyway I can have the editor pane auto-indent when I make a new tag? I know that when you call getText() on a pane, it returns everything properly ...
1
vote
3answers
77 views
How to tell vim to auto-indent before saving
I have recently started using vim for my graduate level projects. Main problem, I face that sometimes I checkin un-indented code. I feel if I can somehow make shortcut of auto-indent+save+close then ...
1
vote
0answers
51 views
Different Behaviour of cindent Between vim 7.0 and vim 7.2
I am using a .vimrc file on one machine that indents my parentheses exactly how I like them using the following lines:
set tabstop=3
set shiftwidth=3
set ai
set cindent
set cino=(s,U1,)0,m1
The ...
1
vote
0answers
49 views
notepad++ move closing tag down two lines when pressing enter
I'm using notepad++ version 6.1. I have the TextFX plugin installed to auto close my tags once inserted. I then installed the Indent By Fold plugin to indent on enter. My problem is between tags, it ...
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>
...
1
vote
1answer
98 views
'break' indentation in switch statement
I want a switch-case-break indentation as follows ('break' indentation is the same with 'case' indentation):
switch(x){
case 0:
/* Some code */
break;
case 1:
/* Some ...
2
votes
1answer
188 views
auto-indent in Sublime Text 2 with Erlang after ->
How to auto-indent in Sublime Text 2 with Erlang after -> ?
I found this page: http://sublimetext.userecho.com/topic/85708-fix-increaseindentpattern-for-erlang/
How to apply it?
Do I have to use ...
0
votes
1answer
92 views
How to force SublimeText 2 to use 4 spaces tab? (it changes to spaces sometimes)
Often SublimeText 2 opens files and if it finds in some place some spaces instead of a tab.
I said to force everything to 4 tabs. Not to convert manually every file I open to tabs (like in How to ...
0
votes
1answer
70 views
how to automatically indent a python code why instrumenting a code ..?
I am reverse engineering a python application. Through which i will be observing the behavior by dynamically instrumenting code inside the application. The problem is i need to insert the code at the ...
0
votes
0answers
46 views
Emacs autoindent indenting way too deep
I've a before-save hook for autoindenting files. Emacs is inserting TONS of extra indentation, how can I fix this? This problem is particularly offensive for filetypes with significant whitespace ...
1
vote
3answers
79 views
Indentation Error in Python
Sorry, I can't compile because in this part of code:
if command == 'HOWMANY':
opcodegroupr = "A0"
opcoder = "85"
elif command == 'IDENTIFY':
opcodegroupr = "A0"
...
4
votes
2answers
826 views
How to fix/convert space indentation in Sublime Text 2?
Example: If I have a document with 2 space indentation, and I want it to have 4 space indentation, how do I automatically convert it by using the Sublime Text 2 editor?
1
vote
1answer
84 views
Vim soft wrap with autoindent
In Vim, is there a way to soft wrap the text, autoindent, but also to give the appearance that soft wrapped lines are autoindented?
E.g. rather than:
1 hello
2 one two three four five six seven ...
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 ...
1
vote
2answers
49 views
Vim re-indentation option
I want to convert C files from one coding style to other. I can use indent and other similar tools. But, I was wondering, if Vim has a built-in support for this kind of need.
1
vote
1answer
263 views
Emacs won't set indentation to 4 spaces in any language
I'm having trouble getting Emacs to behave and set Python (or any environment) to 4-space tabs. Below is my .emacs file, and I've tried all the options under ;; --- Set python indent to 4 spaces ---, ...
0
votes
0answers
176 views
Auto-Indenting code [closed]
I want to use the following code:
#define fori for (int i = 0; i <
#define doi ; i++) {
#define endi }
to let me quickly write common for loops as, e.g.,:
fori 10 doi
cout << i ...
0
votes
1answer
18 views
Selective Indentation in Visual Studio 2010
Is there a way to tell VS2010 to automatically ident lines just inside methods? Since I usually have only one namespace/class per file, I feel all this indentation a waste of space.
If that was ...
0
votes
1answer
75 views
Intellij Idea Code Indentetion Confuses at Comments
When I create a Java file a Javadoc command author is added to file by me. Intellij IDEA also adds date and time which are not yet implemented to Javadoc yet as a comment. When I do auto code ...
3
votes
1answer
734 views
Auto indent HTML / Javascript in Notepad++
So it seems this issue has been raised before, a couple of years ago but none of the responses seemed to work on the newest version of Notepad++ 6.2.2
I've also tried using the NppAutoIndent plugin ...
1
vote
1answer
103 views
Getting vim to auto-indent this syntax
I've successfully gotten vim to understand my language's syntax for highlighting, but I'm unsure how to get it to automatically indent my code properly. The language itself is somewhat Lisp-like, but ...
4
votes
3answers
137 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 ...
1
vote
0answers
105 views
Vim auto-indent behaves strangely after multiline comment
I have this piece of PHP-code:
} elseif($uri->next() == "list"){
bla();
/*****************************************
* Get empty relation by type *
* ...
1
vote
1answer
147 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
319 views
How can I make Matlab's editor smart indent always on while writing code?
While working with Matlab I'm using very often the combination of Ctrl+A (select all) followed by Ctrl+I (smart indent). Can I make Matlab's editor smart indent option working automatically, while I ...
2
votes
1answer
127 views
Indent continuation lines differently depending on whether they start or not on a new line
I'm trying to get vim to indent continuation lines starting on a new line this way:
def foo
open_paren_at_EOL(
100, 200)
a = {
:foo => 1,
}
end
Vim 7.3's default indentation ...
0
votes
2answers
226 views
Prevent emacs from excessively indenting line continuations in Python
Emacs's Python mode has an annoying "feature" that automatically indents line continuations from parentheses and brackets against the opening bracket in the previous line. So we get stuff like
...
12
votes
1answer
323 views
Indenting Objective-C literals with Xcode
Xcode think that this:
NSArray *persons = @[
@{
@"name": @"Bob",
@"pet": @"cat"
},
@{
@"name": @"Alice",
@"pet": @"dog"
}
];
would be better indented ...
1
vote
2answers
239 views
Emacs scheme (scheme-mode) indentation
By default, scheme mode in Emacs formats code using one space indentation:
(string-append
"foo "
"bar "
"baz")
I want it to be at least two spaces, i.e.:
(string-append
"foo "
"bar "
...
1
vote
1answer
369 views
Eclipse Java code formatting
I'm writting a GUI program.
It has several JPanels that conatin other components. It would be really nice if my code would look like this:
parent component code
child component code
...
1
vote
0answers
335 views
Notepad++ Indent by Fold with XML Tag Auto Close
I'm looking for a way to code XML (mxml, specifically) in Notepad++ such that it follows the behavior of the "Indent by Fold" plugin - indentation after pressing 'enter' following an opening tag - but ...
0
votes
1answer
473 views
Fixing Komodo Edit auto-indention for other editors
I've created a PHP project with Komodo Edit now i should migrating to another editor (Coda) but Komodo auto-indention is only valid and fine in Komodo! Coda and Sublime Text don't recognize ...
0
votes
0answers
64 views
how to change indentation in IDLE for more than one indent level
I tend to write my scripts in Python using a tab size of 2 spaces (which some consider better suited for scientific computing). I would like to be able to convert my scripts to indents of 4 spaces ...
1
vote
0answers
124 views
HTML formatting in TextMate (automatic 'outdenting')
I'm using TextMate and indentation isn't working as I'd expect - more specifically, it doesn't 'outdent' closing tags for me.
I create a new HTML file, I move the cursor down to the body section ... ...
3
votes
1answer
110 views
Let Emacs align dot operators when indenting
In Emacs C-like modes (C++, Java) I would like code to be indented as follows:
SomeClass someObject;
someObject.add( foo )
.add( bar )
.execute();
However, per default Emacs ...
0
votes
1answer
139 views
Eclipse auto-indent incorrectly indents file
Something weird is happening to my Eclipse that I never remember happening before. Basically if I've got a long statement and split it onto two lines, then everything after that gets indented a tab ...
1
vote
1answer
94 views
VIM python filetype specific indent fails after 50 lines of one list
I'm currently working on reformatting a python project to follow the 4 spaces indent style. The project is being done in VIM with the following plugins: fugitive, snipmate, surround, git, supertab, ...
1
vote
0answers
126 views
Ant: indent echo output depending on target call-depth
For larger ant build structures and quite complex projects, I'd like to indent the information output (echo) depending on target call-depth like:
[echo] running build from project/build.xml
...
0
votes
0answers
44 views
How to make Eclipse PDT to put auto indent after <?php tag
I searched for the answer but generally people talk about indentation after implemantation(Formatting selected code etc) How can I force eclipse to put indent after I hit return?
Now
<?php
echo ...
0
votes
1answer
325 views
Xcode does not automatically indent on colon for a method name split across lines
I'm expecting Xcode to auto-indent my method when I type a colon, but it does not. I have Automatic indent for: ":" turned on. How can I get this to work?
Example:
type - (id)initWithName:(NSString ...
2
votes
3answers
385 views
Sublime Text (v 2.0) - how do I stop auto indentation on new lines after brackets?
I'm trying to make the jump from Notepad++ to Sublime Text 2. However one issue is stopping me from doing so:
When working in CSS, JavaScript or PHP - whenever I type a bracket and press [ENTER], an ...


