Reputation: 519
I am looking for plugin for PhpStorm that allows me to surround selected text like it is in Sublime Text.
Example:
//selected text:
foo();
//press the ' char
//result
'foo();'
I totally do not know how such plugin may be named.
Upvotes: 0
Views: 93
Reputation: 165088
It's a built-in functionality. Just ensure that you have this option enabled:
Settings/Preferences | Editor | General | Smart Keys --> Surround selection on typing quote or brace
Upvotes: 2