Last active
October 3, 2019 08:19
-
-
Save gunaevart/99f7ad42fc7afcec63178340e04d5b64 to your computer and use it in GitHub Desktop.
Самые нужные горячие клавиши в Intellij IDEA
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Быстро поменять цветовую схему и много другое | |
Ctr + `~` | |
// sout | |
System.out.println(); | |
// просмотр сокращений команд | |
C+J | |
// Строчная I вызов цикла | |
for (Object o :) { } | |
// сокращение fori (вызов цикла) | |
for (int i = 0; i < ; i++) { } | |
// сокращение iter (вызов цикла) | |
for (String s : name) { } | |
} | |
// Выделить всё в скобках {} или строку, слово | |
C+W | |
// Выделить стору | |
Shift+End | |
// Сверуть все блоки | |
Ctrl+Shift+"минус - " |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment