When I format a PHP file in vim it's ok, but when I format a Ruby file, VIM format code bad.
For example:
class PostsController < ApplicationController
skip_before_filter :authorize, :only => [ :index, :show ]
def index
@posts = Post.all
end
def show
@post = Post.find(:first, :conditions => [ "id = ?", params[:id]], :include => [ :user, :category, :gallery ])
@photos = Photo.where(:gallery_id => @post.gallery.id).all
end
end
When I enter the command gg=G, I get.
class PostsController < ApplicationController
skip_before_filter :authorize, :only => [ :index, :show ]
def index
@posts = Post.all
end
def show
@post = Post.find(:first, :conditions => [ "id = ?", params[:id]], :include => [ :user, :category, :gallery ])
@photos = Photo.where(:gallery_id => @post.gallery.id).all
end
end
Please help me.