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
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
Copyright © 2021 Jogjafile Inc.
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.