vote up 5 vote down star
3

I've been somewhat spoiled using Eclipse and java. I started using vim to do C coding in a linux environment, is there a way to have vim automatically do the proper spacing for blocks?

So after typing a { the next line will have 2 spaces indented in, and a return on that line will keep it at the same indentation, and a } will shift back 2 spaces?

flag

64% accept rate

5 Answers

vote up 7 vote down check

These two commands should do it:

:set autoindent
:set cindent

For bonus points put them in a file named .vimrc located in your home directory on linux

link|flag
That's awesome. This will definitely save my spacebar and garner greater vim appreciation from me. Thanks! – zxcv Sep 18 '08 at 22:49
I would also recommend putting those into ~.vim/ftplugin/c.vim so that you're not using cindent all the time, but only for C/C++ files. – graywh Jan 4 '09 at 21:05
vote up 1 vote down

A lot of vim's features (like autoindent and cindent) are turned off by default. To really see what vim can do for you, you need a decent ~/.vimrc.

A good starter one is in $VIMRUNTIME/vimrc_example.vim. If you want to try it out, use

:source $VIMRUNTIME/vimrc_example.vim

when in vim.

I'd actually suggest just copying the contents to your ~/.vimrc as it's well commented, and a good place to start learning how to use vim. You can do this by

:e $VIMRUNTIME/vimrc_example.vim
:w! ~/.vimrc

This will overwrite your current ~/.vimrc, but if all you have in there is the indent settings Davr suggested, I wouldn't sweat it, as the example vimrc will take care of that for you as well. For a complete walkthrough of the example, and what it does for you, see :help vimrc-intro.

link|flag
vote up 0 vote down

and always remember this venerable explanation of Spaces + Tabs:

http://www.jwz.org/doc/tabs-vs-spaces.html

link|flag
What is with that guy's argument? I don't follow how not using the TAB character, and filling with hard-coded spaces instead, solves everyone's problems. That would make it impossible, for example, to be able to open a file and have the width of its indents appear according to your own preferences. – thomasrutter May 4 at 1:58
This guy's solution is much better :) blogs.msdn.com/cyrusn/archive/… – thomasrutter May 4 at 2:00
vote up 8 vote down

I wrote all about tabs in vim, which gives a few interesting things you didn't ask about. To automatically indent braces, use:

:set cindent

To indent two spaces (instead of one tab of eight spaces, the vim default):

:set shiftwidth=2

To keep vim from converting eight spaces into tabs:

:set expandtab

If you ever want to change the indentation of a block of text, use < and >. I usually use this in conjunction with block-select mode (v, select a block of text, < or >).

(I'd try to talk you out of using two-space indentation, since I (and most other people) find it hard to read, but that's another discussion.)

link|flag
Very nice blog. I'm still fairly new to vim, nice to know there's good resources out there though. – zxcv Sep 18 '08 at 22:51
You also missed changing softtabstop in addition to shiftwidth. – graywh Jan 4 '09 at 21:01
vote up -1 vote down

Try:

set sw=2

set ts=2

set smartindent

link|flag
According to the help, cindent is better than smartindent, but only works for C-like code. – thomasrutter May 4 at 1:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.