Reputation: 361
Is there any shortcuts to select next word in netbeans?
Like Ctrl+d in Sublime text select word (repeat select others occurrences in context for multiple editing)
Upvotes: 21
Views: 11570
Reputation: 401
In netbeans you can use CTRL + J
(in MacOSX CMD + J
).
See https://stackoverflow.com/a/39869089
Upvotes: 30
Reputation: 8968
Not quite the same thing but if you are in a supported programming language you can use Ctrl + R to refactor variable's, funciton names, class names etc.
Upvotes: 2