Tagged Questions
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:
...
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
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
1answer
409 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
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
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 ...
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
6answers
461 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 ...
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
271 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
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
787 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 ...