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 code flow.

learn more… | top users | synonyms

302
votes
11answers
77k views

How do I indent multiple lines quickly in vi?

Should be trivial, and it might even be in the help, but I can't figure out how to navigate it. Thanks in advance.
31
votes
7answers
4k views

Wanted: Command line HTML5 beautifier [closed]

Wanted A command line HTML5 beautifier running under Linux. Input Garbled, ugly HTML5 code. Possibly the result of multiple templates. You don't love it, it doesn't love you. Output Pure beauty. ...
31
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
9answers
18k views

Set 4 Space Indent in Emacs in Text Mode

I've been unsuccessful in getting Emacs to switch from 8 space tabs to 4 space tabs when I'm using Text mode. I've tried to edit my .emacs file to: (setq-default indent-tabs-mode nil) (setq-default ...
17
votes
23answers
7k views

SQL Statement indentation good practice

What is the accepted practice for indenting SQL statements? For example, consider the following SQL statement: SELECT column1, column2 FROM table1 WHERE column3 IN ( SELECT TOP(1) column4 FROM ...
11
votes
1answer
216 views

Haskell and Vim: Proper Indentation

Search for "vim haskell indent" on SO. There are lot of answers for how to configure Vim for Haskell indentation. None of them really "work". They don't provide code as is recommended by the Haskell ...
11
votes
5answers
8k views

Java: How to Indent XML Generated by Transformer

I'm using Java's built in XML transformer to take a DOM document and print out the resulting XML. The problem is that it isn't indenting the text at all despite having set the parameter "indent" ...
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
3answers
5k views

How to create an all browser-compatible hanging indent style in CSS in a span

The only thing I've found has been; .hang { text-indent: -3em; margin-left: 3em; } The only way for this to work is putting text in a paragraph, which causes those horribly unsightly extra ...
8
votes
2answers
494 views

How to indent existing OCaml code

I have ~30.000 lines of badly indented OCaml code (including mly and mll files) and would like to indent them. I tried googling for variations of 'ocaml indent' the closest I can get is to use ...
8
votes
7answers
3k views

Annoying vim (un)indent rules

When editing PHP code (I'm not sure if it's specific to that language) and I create a new line in the middle of comma-separated lists that span multiple lines, the indent rules always unindent the ...
7
votes
2answers
255 views

Looking for the correct cinoptions for this piece of code

What cinoptions can I set for getting the block below indented as shown? f(int *p) : a(p) , b(0) { std::cerr << blah << foo << std::endl; } The closest I've got was to: ...
7
votes
6answers
936 views

Code-style for indent of multi-line IF statement in Python?

When indenting long if conditions, you usually do something like this (actually, PyDev indents like that): if (collResv.repeatability is None or collResv.somethingElse): collResv.rejected = ...
7
votes
6answers
278 views

How should I indent do nothing initialization list constructors?

Example: Thread::Thread: class Thread { Process * parent_; unsigned __int32 id_; void * entryPoint_; public: Thread(Process * parent, unsigned __int32 id, void * entryPoint) : ...
6
votes
5answers
220 views

How to suppress indentation for XML output in XQuery

Is there a way from within an XQuery to remove indentation of the XML output? Eg. say I had an XQuery of; <foo><bar/></foo> producing an XML result document of; <foo> ...
6
votes
5answers
530 views

What is the preferred way to indent cases in a switch?

As I was writing another switch in Eclipse, I once again came across a rather weird (to me, at least) default indentation, which is applied to 'switch' statements: switch (i) { case 1: ... case ...
6
votes
2answers
517 views

How do you indent *every* line of a <span> element?

I have the following HTML chunk: <span class='instruction_text'> Line 1<br> Line 2 </span> And the CSS declaration of instruction_text is: .instruction_text { margin-left: ...
6
votes
5answers
5k views

How to indent a selection in gvim (win32)?

I'd like to indent a block of text. I am able to do this in the linux build of givm. I do this is the state of gvim where I'm not in the insert or visual mode. The bar at the bottom is blank on the ...
5
votes
3answers
149 views

How to quickly select (inner) line-wise in Vim

Vim has some very useful text motions such as ib, i), i}, etcetera to quickly select a portion of text. But, I often need an inner block in line-wise mode. For example (with line numbers): 1: $foo ...
5
votes
1answer
149 views

Vim editor indent problem when the first character of the line is a sharp # character

This haven been bugging me since the first day using Vim for 3 years. Whenever I try to indent a line via Shift + > when the FIRST CHARACTER of the line starts with a "#", it doesn't work at all, ...
5
votes
1answer
136 views

Is it possible to modify the cindent rules for one case in vim?

I am currently using vim as my editor for programming in D. The indent rules are pretty much identical to C, but I've run into a case that vim doesn't handle by default. In D, case statements can ...
5
votes
1answer
686 views

like-vim emacs ruby indentation

ruby-mode from svn, looks equal to 1.1 version here is emacs indentation of hash User.all({ :joins => :account, :conditions => {:delete_at => nil} }) here is the same ...
4
votes
3answers
102 views

Vim Pre-Exit (Esc Key) Command?

Right now in Vim when I go to a new line (or press 'p' or 'o' in normal mode) I get a lovely automatic indent, that also disappears if I exit insert mode without adding anything to it. Is there a way ...
4
votes
4answers
343 views

Bash continuation lines

How do you use bash continuation lines? I realize that you can do this: echo "continuation \ lines" >continuation lines However, if you have indented code, it doesn't work out so well... ...
4
votes
2answers
127 views

Indent selected text 4 spaces

I want to indent the selected text in a <textarea> by 4 spaces, just like StackOverflow does for code, using jQuery. I'm doing this to create a text editor similar to SO's, but with only basic ...
4
votes
1answer
145 views

What happens with Rails indentation in outputted HTML?

I'm writing code for a Rails view in TextMate (using the 2-space indentation standard). Whenever I view the output of my webpages (View Source), the HTML brackets always seem weirdly indented. For ...
4
votes
1answer
298 views

Text-Indent vs Position for SEO

What's the best way to hide a text element and replace it with an image while still maintaining good SEO. I've seen negative text-indent, but I prefer absolute positioning with negative top. So what ...
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
3answers
2k views

editing the NetBeans source formatting standard

Is there any way of changing the standard by which NetBeans automatically formats the code when doing "Source->Format"? I seem to remember seeing this option somewhere, but I can't find anything about ...
4
votes
3answers
2k views

Eclipse PDT: How do I get it to format my PHP arrays like VIM?

I've been struggling to get Eclipse to format my php arrays like vim indentation does. What eclipse does (press CTRL+SHIFT+F) <?php $array = array( 'key1' => 'value1', 'key2' => array( ...
4
votes
2answers
1k views

Vim indentation for c++ templates?

Does anyone have or know about vim plugin/macro/function that indents nicely c++ templates? When I highlight template definition in vim .hpp/.h file and indent it with '=' I get something like this: ...
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
134 views

Why is vim indenting my Perl code incorrectly?

I have a subroutine in Perl that should be indented like this: sub GetFiles { my $pwd = shift; my @input = @_; my @returned; my @DirectoryContent = ...
3
votes
2answers
55 views

Can PHP introspect or detect tag's current indent level within source document?

For those of us still inlining PHP within an HTML structure, is there a way to introspect the indent level (within the source) of the current PHP statement/tag being evaluated? Consider the following ...
3
votes
2answers
242 views

Vim - Indent multiple lines with tab

I want to be able to highlight lines I want to indent/reverse-indent and indent with tab and shift-tab respectively. " for command mode reverse tab nmap <S-Tab> << " for insert mode ...
3
votes
1answer
92 views

Emacs: different tab indent settings in different modes

I'm currently using whitespace-cleanup in my save hook. Using indent-tabs-mode, I'm able to save files without any tabs. All is well, I don't want tabs in my files. But. Makefiles do need tabs. That ...
3
votes
2answers
169 views

aligning or prettifying code in emacs

I remember this was possible in emacs, but don't know how. If I have something like: 'abc' => 1, 'abcabc' =>2, 'abcabcabc' => 3, How can I align the keys, arrows and values to something like ...
3
votes
1answer
127 views

Emacs indent an extra level for every continued line

How do you tell emacs to indent the current continued line (e.g. after a dot or indirection operator) one level deeper than the previous one? Arguments about which one is prettier are irrelevant here ...
3
votes
2answers
215 views

Can you get ERB to properly indent when rendered?

I have several partials that I'm including in my Rails application.html.erb file, but the resulting HTML doesn't preserve my indenting (formatting). I've been told that the first line gets rendered ...
3
votes
3answers
1k views

Can't indent UITableViewCell subclass

I have subclassed UITableViewCell to create a custom cell with a button and 2 labels. The cell definition is loaded from a xib using the pattern outlined in Dave Mark's Beginning iPhone Development. ...
3
votes
1answer
645 views

How to fix broken automatic indentation in vim

I am trying to use vim 7.2 (on Windows XP) to automatically indent and format some VHDL and Matlab code. To do so I am trying to use the "gg=G" command. However this does not work properly. The code ...
3
votes
2answers
609 views

Vim textwidth comma indent problem

If i set the following option in Vim, set textwidth=80 the text will break at 80 characters. This works, but the problem is if a comma (,) is on the end of a line, Vim indents the next line. What ...
3
votes
3answers
2k views

How do I make vim indent JavaScript in HTML?

Vim 7.0.237 is driving me nuts with indentexpr=HtmlIndentGet(v:lnum). When I edit JavaScript in a <script> tag indented to match the surrounding html and press enter, it moves the previous line ...
3
votes
2answers
691 views

Any Emacs command like paste-mode in vim?

When i'm trying to paste some code from browser to Emacs, it will indent code automatically, is there any way to stop Emacs from indenting temporarily like :set paste in vim?
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
2answers
59 views

vim - remapping >> << (indent commands)

I would love to map << and >> to single keys to speed up my workflow, but I can't find any info on how to write the remap in my vimrc. Any idea how I can get my remap on?
2
votes
4answers
113 views

Vim Dumb Indenting?

Is there a way to just have Vim copy the indent from the line above, whether it be spaces or tabs, oblivious of the file types?
2
votes
2answers
243 views

Alternative to IndentingXMLStreamWriter.java

Is their an alternative to IndentingXMLStreamWriter.java i've always had some sort of issue at some point in which i am unable to compile though it goes away after a while. So I was wondering if their ...
2
votes
2answers
179 views

Delphi: TPanel and text indent

How can I make the view like in the Yellow rectangle. Using TPanel + Color? If yes what about an indent of the text from the left? Thanks for help and advices!
2
votes
2answers
561 views

asp.net menu skiplink

The ASP.NET menu creates a skiplink which has 0x19 size and it is invisible in explorer, but it is rendered in chrome! So my menu has an extra 19 pixels indent! How do I overcome this? Here is it's ...

1 2 3