Is there any shortcut in Notepad++ to select all (highlight) codes between the curly braces (start & end)?
E.g. Code between if-else, nethod definition, while, for loop etc.
Is there any shortcut in Notepad++ to select all (highlight) codes between the curly braces (start & end)?
E.g. Code between if-else, nethod definition, while, for loop etc.
Ctrl+Alt+B does that (shows in “Search” drop down also).
I don't know of any shortcut in Notepad++ that could do what you are trying to achieve but you could record a macro and assign a keyboard shortcut to it:
(?<=\{)[^}]+(?=\})During the last step there is the option to assign a keyboard shortcut for this macro.