I have copied a Ruby example into Vim, but it turns out that this messed up the indentation. I tried to make Vim apply the Ruby specific indentation. To do that I uncommented the following lines in the global vimrc file:
if has ("autocmd")
filetype plugin indent on
endif
And pressed gg=G in Vim. Now it changes some of the indentation, but it still has some errors:
- Class definitions don't get indented.
- Comments don't get indented and remain at the start of the lines.
ruby.vimfile in the Vimindentdirectory. – the Tin Man Jun 4 '11 at 20:44:h indent-expressionfor a start on understanding how to modify the ruby.vim file. Also, look through the other language files in the indent directory to see examples of how to things. – Herbert Sitz Jun 5 '11 at 17:39