Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!
RuneMate will permanently shut down on August 7, 2026
due to events outside our control. You can continue using RuneMate until this date after which it will no longer be available. Thank you to everyone that contributed to RuneMate's success and to the community for the opportunity to serve you all these years.

  • Learn about RuneMate Vault and how its zero knowledge local encryption already protects your sensitive information.
  • Edit or delete your RuneMate account from your Account Settings.
  • All account upgrade subscriptions have been cancelled. No action required.

Resource Useful Intellij Shortcuts

Joined
Nov 26, 2014
Messages
616
As many of you may know, Intellij is the most popular IDE among RuneMate developers. Here are some useful shortcuts I use to lessen the hassle and speed up coding.

Code:
Alt + Insert
Perhaps my most used shortcut, this one lets you insert many different lines of code such as constructors, getters and setters.

One of its many uses is for enums. Let's say I define a bunch of variables in an enum.
xN7Zy3R.png


I can simply hit the shortcut and this menu will show up.
tzpioBx.png


I simply hit enter when it highlights Constructor.
hTm8Li6.png


I select all the fields I want and hit enter or OK and voila.
uKqhLIN.png


I can do he same for getters as well.
laDstA5.png


Code:
Ctrl + N
I use this to open any class in my project.
NGKvPJP.png


Code:
Ctrl + O
Used to override any method.
LjUy1Lz.png


Code:
Ctrl + F9
Rebuilds the project, useful when testing you code.

Code:
Ctrl + Alt + T
Surrounds a statement or group of statements with various things.
TVkr9D1.png


BONUS!
Code:
sout
Type the following line and hit enter and a system out println is added, handy for debugging.
 
The only thing Alpha about me is my bots
Joined
Sep 22, 2014
Messages
618
Double tapping shift is also useful - it's a more universal version of the class searcher - allows you to jump directly to methods, files, etc.

Ctrl+Shift+A is also awesome if you want to find a setting or something like that without having to scroll through millions of options/etc. It will allow you to find basically any IDE action by typing its name or part of its name.
 
Top