Using IntelliJ , when I type try followed by Ctrl-Space (autocomplete), I don't add anything
Instead, I would like to see
try { // do something great } catch { case e: Exception => // handle me }
Scala language, if that matters.
How can I define an autocomplete pattern as shown above?
source share