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
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can modify your .emacs to enable ruby electric mode by adding the following:
This will add a correctly indented end whenever you type class or def.