Reputation: 2500
Suppose I have the following code: String str = "to-do-list";
If I double-click anywhere inside of the quotation marks the Intellij selecting nearest word(to or do or list).
Is there a shortcut to select the whole string literal without manually selecting whole content of the string with the mouse(in case if literal will be too big)?
Upvotes: 0
Views: 416
Reputation: 16381
Use Main menu | Edit | Extend Selection action (Ctrl(Cmd)+W default shortcut).
Upvotes: 2