How to make Emacs automatically re-specify Ruby code on the fly?
for example with this in Emacs,
def hello puts "hello" en
After I type 'd', I want it to turn into this,
def hello puts "hello" end
This is the default value in Vim, but how can I achieve this in Emacs?
source share