Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Select all text between quotes, parentheses etc in Atom.io

Sublime Text has this same functionality via:

ctrl+shift+m or cmd+shift+space

How do I accomplish the same thing in Atom?

like image 997
Riveascore Avatar asked Jan 05 '16 22:01

Riveascore


2 Answers

Select all text between quotes, parentheses etc in Atom.io:
Ctrl+Alt+,

like image 141
Олег M Avatar answered Sep 27 '22 16:09

Олег M


Select all text between brackets is supported by default Bracket Matcher package.

Works for {}, [] and ():

Ctrl+Cmd+M

To select text inside quotes, you can install expand-selection-to-quotes package and use:

Ctrl+'

like image 38
Liosha Bakoushin Avatar answered Sep 27 '22 16:09

Liosha Bakoushin