Most Important Spring Tool Suite(STS) Keyboard shortcuts for macOS
Spring Tool Suite (STS) is a popular IDE for Java developers. I've been using it for last three years, and there are so many shortcuts that can help you to save time while developing.
On my Mac computer, I'm using STS. The most often used STS shortcut commands are listed here.
- Command (⌘) + Shift (⇧) + F ---> Format source code
- Command (⌘) + Shift (⇧) + O ---> Organise imports in the current java file
- Command (⌘) + Shift (⇧) + T ---> Open / Search for types
- Command (⌘) + S ---> Save current .java file
- Command (⌘) + D ---> Delete current line
- Command (⌘) + / ---> Comment / Uncomment a current line
- Control (⌃) + Space ---> Content assist and code completion
- fn + F3 ---> Open declaration
- Command (⌘) + 1 ---> Quickfix for errors and warnings
- Command (⌘) + 2 ---> Quick assist
- Command (⌘) + fn + F8 ---> Shortcut for switching perspectives
- Command (⌘) + Option (⌥) + S ---> To open source
These are the most time-saving STS shortcuts that I use on a daily basis.
Comments
Post a Comment