Tagged Questions

95
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
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 " << ...
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
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
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 ...
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 ...
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
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 ...