1. 鼠标浮在方法名上就能看注释(这个功能的名称叫quick documentation,快捷键是F2或Ctrl+Shift+Space)
设置成自动显示,方法如下:
There is nice feature which shows quick documentation when your mouse is over element.
IntelliJ 14
Editor / General -> Show quick documentation on mouse move
Older versions
Add the following line to idea.properties file:
auto.show.quick.doc=true
2。Eclipse中的回车能自动跳到行尾,IDea怎么做?
Ctrl+Shift+Enter(跳到行尾并且如果行尾没有分号自动补上分号)或者Ctrl+Right
3.Ctrl+1在 IDEA中是用的Alt+Enter
4.查看方法参数(或叫方法签名) Ctrl+P, 这个功能叫parameter info
5.Double Shift这个比Ctrl+Shift+R好用,又更方便。
6. Ctrl+ Tab也不错,在editor间来回切换(有时候要在IDE中打开的两个文件之间切换,你是不是习惯性的按下Alt+Tab,我就有这个毛病)
7. Alt +Q 快捷显示当前行在哪个方法里(如果方法体太长,一屏显示不下这个很有用).
8. 复制当前行到粘贴板, Ctrl+C(不要选中任何内容)
9。Ctrl+Shift+V 高级粘贴。。
10. 自动导入Class, 在IDEA中需要不断地按Alt+Enter来导入缺失的class,是不是很烦?
在settings中搜索Auto Import全部打上勾就解决了,(连Ctrl+Shift+O都省了,是不是很爽)
11.IDEA默认支持zen coding,写html再也不用敲尖括号了.,补全的快捷键是tab,不是Alt+/
12. IDEA中其它好用的快捷键 (2016补充)
a. Find Action 设置为Cmd+Shift+A
b. 跳到配对的花括号 Ctrl + M
c. 新建文件/文件夹/Setter/Getter/JUnit Test Case (Cmd + N ) 这个是一键多用, 不同的场合按cmd+N会出来不同的菜单.
d. Project设置为Cmd + 1 (toggle左边的Project视图)
13. 在多个项目间切换. (2016.12.14补充)
Eclipse的Package explorer一下能显示多个project, IDEA一次只能打开一个project,并且切换赶来很麻烦.
只要装一个叫Frame Switcher的插件, (我设置成了快捷键Cmd+2),,按下这个键就能在不同的project之间来回切.
IDEA的快捷键适用于所有Intellij系列, 学会了一套, 再用其它的IDEA比如WebStorm, PyCharm, AppCode随便玩.
14. 选中文字后输入双引号就直接套上?
Settings > Editor > Smart Keys > Surround selection on typing quote or brace
即可选择文字后输入 ” ‘ < ( { 的时候自动套上去
100.最重要的当属代码提示.Eclipse中叫content assistant,IDEA中叫completion,和输入法冲突要自己动手,设置成什么纯属个人喜好。
欢迎补充.
IDEA Server
alias idea="nohup ~/bin/IntelliJIDEALicenseServer_darwin_amd64 -u cyper -p 6666 &"
IDEA插件区(201607)
[Free MyBatis Plugin](https://github.com/wuzhizhan/intellij-mybatis-plugin.git)
JUnit Generator V2.0
https://www.parleys.com/tutorial/42-intellij-idea-tips-tricks-45-minutes
参考:https://github.com/damao/Intellij-IDEA-F2E
来源:oschina
链接:https://my.oschina.net/u/113421/blog/373826