Michał Wojas
Michał Wojas

Reputation: 519

PhpStorm plugin

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

Answers (1)

LazyOne
LazyOne

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

enter image description here

Upvotes: 2

Related Questions