双击shift | 全局搜索 | 搜索类名,idea功能(如Settings,Plugins),同windows |
左command(?) + ` | 多个idea项目间快速切换 | 仅mac支持 |
shift + enter | 无视光标跳到下一行 | 同windwos |
command(?) + , | 打开setting | windows = ctrl + alt + S |
option(? ) + 左command(?) + T | 快速对选中代码try/catch、if、while等 | windows = ctrl + alt + T |
左command(?) + F | 文章内查找,替换
| windows = ctrl + F |
左command(?) + Shift + F | 文件中搜索
| Find In File按代码内容搜索 windows = ctrl + H |
左control(^) + enter | 快速修复(Quick-fixes) | 所有的快速修复都是基于 Settings | Editor | Inspections 中的选项进行提示。 windows = alt + enter |
左control(^) + enter | 生成代码(Generating code)
| 快速生成get、set等 该操作不仅可以在编辑器中使用,在项目窗口和导航栏也可以使用:(用.分隔可以快速创建多级package) windows = alt + insert |
左command(?) + n | 快速创建类
| /** * */ windows = alt + insert |
输入 /** 并 左command(?) + enter | 快速生成注释
| /** * */ windows = alt + insert |
选中代码 左command(?) + option(? ) + M | 快速封装方法
| windows = ctrl + shift + M |