Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gunaevart/99f7ad42fc7afcec63178340e04d5b64 to your computer and use it in GitHub Desktop.
Save gunaevart/99f7ad42fc7afcec63178340e04d5b64 to your computer and use it in GitHub Desktop.
Самые нужные горячие клавиши в Intellij IDEA
// Быстро поменять цветовую схему и много другое
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