Artem
Artem

Reputation: 2500

How to copy whole string literal to clipboard?

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

Answers (1)

Andrey
Andrey

Reputation: 16381

Use Main menu | Edit | Extend Selection action (Ctrl(Cmd)+W default shortcut).

Upvotes: 2

Related Questions