Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

96
votes
4answers
50k views

Tab key == 4 spaces and auto-indent after curly braces in VIM

How do I make Vi-Vim never use tabs (converting spaces to tabs, bad!), makes the tab key == 4 spaces, and automatically indent code after curly brace blocks like emacs does? Also, how do I save these ...
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: ...
9
votes
7answers
4k views

What setting in vim counteracts smartindent's refusal to indent # comments in shell scripts?

I recently started using vim 7 (previously vim 6) and the smartindent setting. For the most part, it works well, though I'm so used to typing a tab after an open brace that it is almost ...
8
votes
1answer
160 views

Undoing auto-indentation

Wnen you use irb with auto indent mode, the end statements get indented one level extra def foo ... end instead of showing the ordinary indenting convention: def foo ... end because you ...
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 ...
5
votes
2answers
116 views

In VIM, how to left-align IO stream operator “<<”/“>>”?

For example, instead of following alignment: std::cout << "Hello " << "Hello " << "world "; I want left-align the "<<" operator, as: std::cout << "Hello " << ...
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
5answers
5k views

Visual Studio 2005 : Is there an easy way to indent correctly in an ASPX file?

In Visual Studio 2005, is there a way to indent correctly the tags in the aspx file (not in .cs files but really in ASPX files which contain HTML/ASP code)?
3
votes
2answers
60 views

Vim autoindent does not work the way I expect after 'if', 'for', 'while'; how can I make it work the way I want?

I have auto indentation turned on in my .vimrc file set autoindent which moves to the previous indentation like so (█ is the cursor position) while (! skynet.selfAware()){ DARPA.funding++;█ } ...
3
votes
1answer
410 views

How do I define indents in vim based on curly braces?

I use https://github.com/cakebaker/scss-syntax.vim for syntax highlighting SCSS (or SASS) files on vim, which works very well for syntax highlighting. However, the plugin does not come with an indent ...
3
votes
3answers
519 views

How to make eclipse not auto-indent a block of code

I like Eclipse's auto-indent function, but sometimes I've got some indentation I don't want it to correct, like audioBuffer1[j] = (short) (VOLUME_REDUCER * ( inputBuffer[i] + ALPHA ...
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 ...
2
votes
2answers
126 views

Emacs auto-indent in Clojure - Do it like CL?

Emacs auto-indents Clojure code in the following way: (defn foo [x] (if (= 0 x) 0 1)) I'd prefer if it did it like Scheme and CL: (defn foo [x] (if (= 0 x) 0 1)) How do I ...
2
votes
1answer
88 views

Can VIM autoindent SQL?

This answer appears to be the accepted format for writing SQL blocks: http://stackoverflow.com/a/272232/178383 Is there a VIM indent/syntax file that would adhere to this standard - or at least ...
2
votes
0answers
99 views

Visual Studio 2010 Emacs Tab deletes characters

In VS2008 with Emacs keybindings, hitting Tab would activate "auto indent", ie indenting the line correctly no matter where the cursor is. However, in VS 2010, it is still attempting to auto indent, ...
2
votes
1answer
62 views

How to keep the indentation of the content copied to vim from outside with autoindent set?

I am an average vim user and with an avarage .vimrc containing: set autoindent It's not that bad in general, but when it comes to copying the content from outside, I get the indentation of this ...
2
votes
2answers
159 views

Command-line program to indent PHP files

I'm looking for a indent application to fix all aspects of PHP code formatting - convert spaces, perform indentation in PHP and HTML code, leave HEREDOC alone, etc. Please recommend a decent indenter ...
2
votes
2answers
285 views

Automated indentation cleaner for MATLAB or Octave?

Does anyone know of an existing method of automatically cleaning the indentation of a MATLAB/Octave script? I've got someone else's code (no, really!), and it's horrible - none of the loops or ...
2
votes
2answers
595 views

Using emacs extension in Visual Studio 2010, disables auto indent

I recently installed Visual Studio 2010 for my c++ course at school. Im very used using emacs scheme in netbeans and eclipse, its hard wired into my brain, the hotkeys. At my frustration, after ...
1
vote
0answers
118 views

How to get gedit to auto-indent code

I'm trying to get gedit to auto-indent my code. The auto-indent check-box in preferences doesn't work. Is there a way to get gedit to auto-indent code? (By the way, I only really care about C++ ...
1
vote
2answers
69 views

How to paste correctly when autoindent in vim resets the line if nothing typed

This question describes how auto indent is ignored with empty lines, using his/her example: ....{ ....█ ....} becomes ....{ █ ....} when no text is entered. Apparently this is supposed to ...
1
vote
1answer
68 views

NetBeans doesn't know how to format JS code, how do I fix?

Surely an IDE as powerful as NetBeans isn't this clueless, but as I'm just typing out code, here is how it's formatting it: $(document).ready(function() { if (someVar > 2) { ...
1
vote
3answers
236 views

Difference between Ctrl+Shift+F and Ctrl+I in Eclipse

I have been used Ctrl+Shift+F to correct indentation but I heard there is another shortcut to do that: Ctrl+I According a reference found in google, Ctrl+Shift+F is Reformat and Ctrl+I is Correct ...
1
vote
6answers
462 views

Any way to auto-indent a c/c++ code with Kdevelop or other software?

I've a source code that's not mine, there are not comment and it's completely not indented.. it's really a mess. Do you know if there is some tool, option, addon for kdevelop or if not also another ...
1
vote
4answers
299 views

auto indenting wrapped Python code in Word

I'm wrestling with Microsoft Word to display my Python code correctly and am in need of some help. I am trying to paste large amounts of Python scripts into Microsoft Word with documentation text ...
1
vote
1answer
513 views

Xcode Disable Colon-aligning Auto-indent

Is there any way to disable the auto-indent Xcode performs to align colons when breaking up a long method name into multiple lines? That is, I'd rather not have this: UIBarButtonItem ...
0
votes
0answers
11 views

Alternate between colours depending on tab/indentation level

For some sections of the Reddit.com site (e.g. askscience), they use a colour scheme where each tab indentation swaps between white and light blue. I myself have create an example to illustrate this ...
0
votes
1answer
121 views

Methods parameters indent (configuration Visual Studio, ReSharper)

I'm using Visual Studio 2010 + ReSharper. I there any way to modify auto-indent for methods parameters (any VS2010 or ReSharper option)? For example: public Topology(string name, TopologyType type = ...
0
votes
2answers
272 views

Linux tool/editor that will nicely auto-format my code AFTER it's written

I'm looking for a tool or editor where I can paste in potentially messy code, be it HTML, Javascript, CSS, whatever, and properly take care of all indentation and spacing. I use Geany but I don't see ...
0
votes
1answer
367 views

Vim auto indent of HTML in PHP filetype not working

I have been using Vim for a very long time now, I was never bothered about auto indentation and it was always off. But now I need to try auto indentation and enabled it. I am having a strange issue ...
0
votes
1answer
264 views

Tweaking NppAutoIndent, or is there a good customizable alternative?

I recently started using the NppAutoIndent plugin for Notepad++, and have been fairly pleased with the Smart Indent mode, but I find its lack of customizable preferences to be annoying as there are a ...
0
votes
1answer
261 views

How to make auto-indent work in Eclipse for jsp/jsf/xhtml pages?

I'm using Eclipse Helios with WTP. I would like eclipse to auto-indent jsf pages. Eclipse fails to do that properly and I didn't find any place that I can configure what I want. Examples of bad ...
0
votes
4answers
189 views

Lightweight Java IDE that Maintains Indentation?

Whenever I am debugging a java program, I have to have the code indented! And I hate to manually indent code one by one (using Tab). I would really like a lightweight Java IDE that automatically ...
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
86 views

smartindent doesn't allow one to manually indent lines beginning with “#”

The shortcut >> doesn't indent lines that start with "#" for me in either C or Python when smartindent is set. If anyone has a workaround, that would be cool; I'm also posting this let people ...
0
votes
1answer
791 views

Disable auto indent globally in Emacs

How to disable auto indent in Emacs globally or only for some modes? I have a number of packages installed for RubyOnRails (ruby, html, js, css). Let's say I want to disable autoindent for ...
0
votes
3answers
426 views

Auto-Indentation On Close Block in Visual Studio 2008

I recently upgraded to Visual Studio 2008 Professional, and it is not auto-indenting blocks of code when the block is closed }. This was a feature I found very useful with Express. How do I turn it ...
0
votes
2answers
477 views

Auto Indentation Off

In Visual Studio, when I press Enter, it automatically indents my text, and I don't like that. Is there a way to turn that 'feature' off? Thank you :) Bael.