Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ruby-mode末尾を自動的にインデント解除するように設定することはできますか?
ruby-mode
たとえば、endが次のように入力された後:
def foo # indented end
これに変わるはずです:
以下を追加することで、.emacs を変更して ruby electric モードを有効にすることができます。
(require 'ruby-electric) (add-hook 'ruby-mode-hook (lambda () (ruby-electric-mode t)))
これにより、class または def を入力するたびに、正しくインデントされた end が追加されます。