Format Ruby code in Vim

11,825

Solution 1

Vimcasts has a useful screencast on this subject that you may be interested in

gg=G

gg => go to start of file
=  => apply autoformatting
G  => ... to the end of file

Solution 2

When I see questions about Vim and reformatting and reindenting, I usually feel confusion. But it is pretty easy.

Reindenting, done with = key, is a process of shifting line indetation without inserting any line ends - no hard wrapping. Simply put, beginning columns of the selected lines can change, but the content cannot.

On the other hand, reformatting is complete rewrite of a selected piece of code. Simply put, everything is deleted and written again according to the language rules defined in Vim. Easy, huh?

The usual patern for reindentation is to go to the beginning of the file (gg), change to line selection (V), go to the end of the file (G) and perform reidentation (=).

That's indenting in vim: ggVG=

Reformatting pattern starts with the very same keys (ggVG), but instead of equal key, you do gq - reformat Vim command.

That's formatting in vim: ggVGgq

This works out-of-box in every Vim instance, even with plain text. Only when Vim does not understand the programming language you need to provide it with correct formatting rules (usually bunch of .vim files which have to go to the .vim directory structure).

Reformatting for Ruby works only when plugin vim-ruby is installed.

I had to publish this on my blog ;-) Isn't Vim cool? It is.

Solution 3

Try:

gg=G

in normal mode.

Solution 4

If you're looking for more than just indentation, have a look at ruby-beautify. It can be integrated with vim through vim-autoformat.

Share:
11,825
opsb
Author by

opsb

Updated on June 12, 2022

Comments

  • opsb
    opsb almost 2 years

    Just moving over to Vim at the moment. In TextMate I could format code by hitting Cmd-Alt-[. How do I achieve the same in Vim?


    See the answer below for the command. I found I also needed the following in my .vimrc so that Vim knew how to autoindent Ruby.

    if has("autocmd")
      filetype indent on
    endif