IDEA常用设置提高使用舒适度

实用的设置往往能提高开发效率,以下皆为个人常用设置推荐。

IntelliJ IDEA 2021.2.4版本后书签编号图标不显示在项目视图中

官方回复

上图为JB官方人员的回复。

开启显示
idea鼠标悬停提示文档
  • File → Settings → Editor → General → 勾选Show quick documentation on mouse move

    image
idea自动导包
  • File → Settings → Editor → General → Auto Import → Insert imports on paste选择All,同时勾选上Add unambiguous imports on the fly和Optimize imports on the fly(for current project)

    自动导包
idea忽略大小写进行提示
  • File → Settings → Editor → General → Code Completion → 去掉Match case的勾选

    忽略大小写
idea快捷复制

idea默认快捷黏贴的位置是补充在原代码的位置后,个人喜欢直接黏贴在下一行。

快捷复制
idea自动进行编译
  • File → Settings → Build → Compiler → 勾选 Build project automatically

    自动编译设置
idea更改缩进线颜色
  • File | Settings | Editor | Color Scheme | General → Editor → Guides → Indent guide
设置缩进线颜色

idea开启通过快捷键生成serialVersionUID

  • File | Settings | Editor | Inspections → 勾选 Serializable class without serialVersionUID
生成serialVersionUID
  • 使用方式,在实现了Serializable接口的类名上 Alt + Enter 选择Add serialVersionUID...会进行自动生成
使用方式

idea开启新Git提交窗口

  • File | Settings | Version Control | Commit → 勾选Use non-modal commit interface
新提交

更多内容直接访问 → IDEA使用教程

你可能感兴趣的:(IDEA常用设置提高使用舒适度)