Tagged Questions
The autoindent tag has no wiki summary.
4
votes
4answers
459 views
Javascript indentation in VIM
I'm trying to get VIM to indent Javascript with the '=' and related commands. When I try to auto indent the following, for example:
new function($) {
$.fn.setCursorPosition = function(pos) {
...
4
votes
1answer
376 views
How do you enable file specific tab indent settings in VIM?
I believe there is a method to write a comment in a file that vim will use to override default tabbing and indent values.
Can someone point me to information about this feature and how to use it?
4
votes
8answers
10k views
Notepad++: disable auto-indent after empty lines
I find the autoindent style of Notepad++ a little weird: when I am typing on an indented line, I do want it to indent the next line after I press Enter (this it does properly). However, when I am on ...
3
votes
1answer
72 views
Scala mode indentation in Emacs
When writing Scala code in Emacs, I notice the following indentation issue:
List(1,2,3).foreach{ x =>
Then press enter.
Then close the bracket, and this is what ends up happening:
...
3
votes
3answers
291 views
vim phpdoc multiline comment autoindent
Suppose I have a comment block like this:
/**
* comment
* comment
* comment
*/
And when I open a new line inside this block I want vim to start it with
/**
* comment
* _
* comment
* ...
2
votes
2answers
101 views
Vim python indenting changes code semantics
I'm trying to learn vim :-) Having some real trouble with auto-indent changing the meaning of my python code. Is there any way to get the goodness of autoindent without running into behaviors like ...
2
votes
1answer
116 views
How to apply javascript formatting to .json files?
The Ctrl + Shift + F hotkey in Eclipse can format a file. It doesn't work for .json files. How to make it work?
1
vote
1answer
197 views
How do you Tweak Xcode's auto-indentation of Objective C Parameters?
Here's a snippet of code from my iOS app:
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Do you like my hat?"
message:@"If so, ...
1
vote
1answer
69 views
smarty autoindent html
Is there any plugin that I can use to auto indent html in "smarty" template.
the way i do this in vim is like:
while editing a smarty template:
:set filetype=html
press "=G" after moving cursor to ...
1
vote
2answers
360 views
vim - set auto indent to fill the leading space with space or tabstop
It seems if we enable 'ai', vim will fill the the leading space with tabstop.
I can make it fill with just space with 'et'. I don't like a C file mixed with space and tabstop.
My vimrc:
set ts=4 et
...
1
vote
1answer
265 views
Is it possible to get Visual Studio 2010 Express Web Developer to autoindent it's markup?
One thing I do like about visual studio is the autoindent feature in the code behind where you can essentially close off the bracket of a loop or method or class and it'll automatically indent ...
1
vote
1answer
162 views
How can I make emacs' cperl-mode indent all statement continuations by only one level?
In emacs' cperl-mode, lines that continute a statement from a previous line are indented by one level:
my $var
= (1+1)
* (2+2)
/ (3+3);
However, if the statement does not begin at zero ...
1
vote
1answer
99 views
How can I tell emacs how the arguments to my elisp function should be indented?
I have written function (actually a macro, but whatever) that works similarly to progn. How can I tell emacs that this function should be indented in the same way as progn?
0
votes
0answers
145 views
NetBeans, Turn off **ANY** auto indentation / auto formatting
I have just tried out NetBeans and I really like it.
But what drives me crazy is the horrible automatic code formatting !
If I make an indentation, I want that indentation, but NetBeans keeps going ...
0
votes
0answers
100 views
Eclipse is removing all indentation when typing #
I am writing C with eclipse, and I've got some preprocessor directives that are indented like so:
foo() {
#ifdef BAR_1
//do something
#endif
#ifdef BAR_2
/do something ...
0
votes
1answer
732 views
notepad++ and nppautoindent
I have installed the nppautoindent plugin into the notepad++ editor. I see no autoindenting effect. I am using PHP. Can some one help me get this to work?
Thanks
0
votes
1answer
809 views
eclipse: autoindent for xml (particularly build.xml) files?
I really like Eclipse's autoindent feature for .java files, but when I hit Ctrl-I with build.xml open, it just erases the selection.
Is there any way to get autoindent for .xml files working in ...