Rubymine 7.0: disable automatic "end" installation
I would like to disable auto-insert end
for def
/ while
/ class
/ etc. in Rubymine 7.0.
For example, if I type def
and press Enter, it is automatically added end
below the new line:
# Before I press enter:
def|
# After I press enter:
def
|
end
I looked at the options in File> Preferences ... and can see options for similar functions (like the automatic insertion of closing characters )
that I removed), but nothing specifically for end
.
The answer to a similar question suggests using the "Rubymine" registry (accessible via Help> Find Action ...> "registry" as explained here ), but that didn't seem to have any effect.
source to share