- Hands-On Microservices with Kotlin
- Juan Antonio Medina Iglesias
- 322字
- 2021-06-30 19:10:55
Tips and Tricks
They are several key bindings and tools that we can use to improve our products using IntelliJ, let's review some of them.
Execute an action: Shift + Ctrl + A on Windows, shift + command + a on MacOS. This will allow us to execute any action in the tool, for example, Run, View Maven projects, Save the file, and so on.
Search everywhere: Double Shift. This will have a window that allows us to search for everything, from file names to actions, and so on. The search is quite powerful, for example, if we want to open our class, ExampleService we can just type ES in capitals.
Paste from history: Shift + Ctrl + V on Windows, shift + command + v on Mac OS, it will display a window with a history on our clipboard.
Iterations and quick-fixes: Alt + Enter. This is probably the most powerful tool; many times, we can see a light bulb on the editor, using this key binding where it is will fold options for this, from removing unused imports, to simplify lines of code. Try to experiment with it.

Rename: Shift + F6. This will rename anything, from a class name to a file, or even a package, and will also change the code that was using that name; for example, if we rename a function, every call to that function will be renamed.
Refactor this: Shift + Ctrl + Alt + T on Windows, control + T on MacOS, is a really nice feature to use in any piece of code, from extracting a method to moving a class, changing parameters and functions, and many more.
- The Modern C++ Challenge
- PyTorch自動駕駛視覺感知算法實戰
- BeagleBone Media Center
- Big Data Analytics
- 大學計算機基礎(第2版)(微課版)
- Windows Server 2016 Automation with PowerShell Cookbook(Second Edition)
- 響應式架構:消息模式Actor實現與Scala、Akka應用集成
- 持續輕量級Java EE開發:編寫可測試的代碼
- The Professional ScrumMaster’s Handbook
- Android驅動開發權威指南
- OpenCV with Python Blueprints
- Java Hibernate Cookbook
- Android初級應用開發
- Java核心技術速學版(第3版)
- PHP典型模塊與項目實戰大全