문제

Is it possible to set ruby-mode to automatically unindented the end?

For instance, after the end is typed as so:

def foo
  # indented
  end

It should turn into this:

def foo
  # indented
end
도움이 되었습니까?

해결책

You can modify your .emacs to enable ruby electric mode by adding the following:

(require 'ruby-electric)
(add-hook 'ruby-mode-hook (lambda () (ruby-electric-mode t)))

This will add a correctly indented end whenever you type class or def.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top