一、 常用的快捷键
二、 调整界面为酷酷的黑色
Preferences -> Appearance -> theme -> Dracula
三、 设置快捷键:
Preferences -> keycaps
四、 自动补全:
Mac下默认是clt+space,可以使用keymaps=>Main menu=>Code=>Competion设置。比Eclipse好的地方是Spring、Maven的xml,乃至freemarker模板以及iBatis的sqlmap都支持高亮和自动补全。
五、 去除自动补全的大小写敏感:
不知道多少童鞋和我一样被Eclipse惯坏了,使用自动补全完全不注意大小写的,IntelliJ默认区分大小写,很是让人难过。不过在Editor=>Code Completion里把Case sensitive completion设置为None就可以了。
六、自动展开目录
Eclipse有个打开文件就自动展开目录的功能,在IntelliJ里从Project左边栏的齿轮上选择Autoscroll to Source和Autoscroll from Source都勾选上即可。
七、自动编译
IntelliJ默认是不会自动编译项目的,所以在run之前会有个make的过程,习惯自动编译项目的可以在这里打开:Compiler=>make project automatically。因为IntelliJ项目空间不大,所以开启之后也不会像Eclipse一样出现build workspace很久的情况。
Eclipse 和 intellij的快捷键对照表
Eclipse IntelliJ IDEA Description “semi” set in window-> preferences ctrl + shift + enter if I want to add the semi-colon at the end of a statement ctrl + 1 or ctrl + shift + l ctrl + alt + v introduce local variable alt + shift + s alt + insert generate getters / setters ctrl + shift + f ctrl + alt + l format code ctrl + y ctrl + shift + z ctrl + shift + c ctrl + / comment out lines (my own IDEA shortcut definition for comment/uncomment on german keyboard layout on laptop: ctrl + shift + y) ctrl + alt + h ctrl + alt + h (same!) show call hierarchy none ? ctrl + alt + f7 to jump to one of the callers of a method ctrl + shift + i alt + f8 evaluate expression (in debugger) ctrl + b go to declaration (e.g. go to method) ctrl + l ctrl + g