IDEA自己常用的几个快捷方式(自己的习惯)

@TOC

背景

换工作了, 新的IDEA, 又要重新设置自己的快捷方式了.

灵感

1.这些个性话的配置应该是可以导出的. 然后在新的IDEA直接导入就行了, 感觉应该是有这个功能.

就是这个文件:

xml 复制代码
<keymap version="1" name="Personal KeyMap" parent="$default">
  <action id="$EditorTranslateAction">
    <keyboard-shortcut first-keystroke="alt t" />
  </action>
  <action id="ActivateProjectToolWindow" />
  <action id="CloseAllEditorsButActive">
    <keyboard-shortcut first-keystroke="alt 1" />
  </action>
  <action id="Console.History.Browse" />
  <action id="Editor EditorTranslateAction">
    <keyboard-shortcut first-keystroke="alt t" />
  </action>
  <action id="EditorDeleteLine">
    <keyboard-shortcut first-keystroke="ctrl d" />
  </action>
  <action id="ExpressionTypeInfo" />
  <action id="FileChooser.TogglePathBar" />
  <action id="FindInPath">
    <keyboard-shortcut first-keystroke="ctrl h" />
  </action>
  <action id="Git.Pull">
    <keyboard-shortcut first-keystroke="shift ctrl p" />
  </action>
  <action id="GotoImplementation">
    <mouse-shortcut keystroke="control alt button1" />
    <keyboard-shortcut first-keystroke="alt g" />
  </action>
  <action id="ParameterInfo" />
  <action id="PerforceDirect.Edit" />
  <action id="PinActiveEditorTab">
    <keyboard-shortcut first-keystroke="ctrl p" />
  </action>
  <action id="RenameElement">
    <keyboard-shortcut first-keystroke="shift f6" />
    <keyboard-shortcut first-keystroke="f2" />
  </action>
  <action id="ShowFilePath">
    <keyboard-shortcut first-keystroke="ctrl alt e" />
  </action>
  <action id="TableResult.SelectAllOccurrences" />
  <action id="ToggleFindInSelection" />
  <action id="TypeHierarchy">
    <keyboard-shortcut first-keystroke="f4" />
  </action>
  <action id="android.device.power.button" />
</keymap>

常用快捷方式

// TODO 上面应该都有, 这个后续补充

相关推荐
大只鹅17 分钟前
WebSocket类明明注入了Bean,为什么报错为null
java·websocket
ChinaRainbowSea25 分钟前
9-2 MySQL 分析查询语句:EXPLAIN(详细说明)
java·数据库·后端·sql·mysql
时序数据说27 分钟前
Java类加载机制及关于时序数据库IoTDB排查
java·大数据·数据库·物联网·时序数据库·iotdb
wowocpp27 分钟前
rabbitmq 与 Erlang 的版本对照表 win10 安装方法
java·rabbitmq·erlang
风象南31 分钟前
SpringBoot基于Java Agent的无侵入式监控实现
java·spring boot·后端
崎岖Qiu37 分钟前
【Spring篇08】:理解自动装配,从spring.factories到.imports剖析
java·spring boot·后端·spring·面试·java-ee
belldeep44 分钟前
java:如何用 JDBC 连接 TDSQL 数据库
java·数据库·jdbc·tdsql
2301_1472583692 小时前
7月2日作业
java·linux·服务器
香饽饽~、2 小时前
【第十一篇】SpringBoot缓存技术
java·开发语言·spring boot·后端·缓存·intellij-idea
小莫分享2 小时前
移除 Java 列表中的所有空值
java