idea的常用设置(从设置开始提高编程效率)

工欲善其事必先利其器

IDEA版本 2020.1.1

idea 常用设置

进入设置:File | Settings  
省电模式(该模式下代码提示等功能不会开启):File | Power Save Mode
项目编码格式:File | Settings | Editor | File Encodings  
改变某个文件的编码格式:打开文件 -> 右下角编码格式切换  
设置主题:File | Settings | Appearance & Behavior | Appearance  
设置字体、字号、行距:File | Settings | Editor | Font  
设置(Ctrl+Mouse Wheel调节)编辑区字体大小:File | Settings | Editor | General -> 勾选(Change fot size with Ctrl+Mouse Wheel) 
设置注释颜色:File | Settings | Editor | Color Scheme | Language Defaults -> Comments 
文件生成时注释:File | Settings | Editor | File and Code Templates  
设置鼠标悬浮码上显示提示:File | Settings | Editor | Code Editing  -> 勾选(Show quick documentation on mouse move)  
手动引入包(快捷键):Alt + Enter  
自动导包和优化多余的包: File | Settings | Editor | General | Auto Import -> 勾选(Add unambiguous … 和 Optimize imports …)  
同一包下,导入类或静态方法个数达到阈值,合并为 *:File | Settings | Editor | Code Style | Java -> Imports tab页 -> Class count… 和 Names count… 
显示行号、方法间分隔符、不可见字符:File | Settings | Editor | General | Appearance -> 勾选(Show line numbers、Show method separators、Show whitespaces)
忽略大小写显示提示信息: File | Settings | Editor | General | Code Completion -> 不选(Match case)
仅第一个字符区分大小写给提示信息: File | Settings | Editor | General | Code 
设置table键等于4个空格:File | Settings | Editor | Code Style | Java  -> Tabs and Indents -> 不选(User tab Character) 
设置git执行文件路径:File | Settings | Version Control | Git 
设置换行符Unix编码格式:File | Settings |  Editor | Code Style(原因:git使用的Unix编码,虽然会自动转换,但是转换也可能出问题) Completion  -> 勾选(Match case 和 First letter only)
多个类显示时,不隐藏tab标签:File | Settings | Editor | General | Editor Tabs -> Show tabs in one row(是否显示在一行)、Tab limit(最多可显示的tab数) 
自动编译:File | Settings | Build, Execution, Deployment | Compiler -> 勾选(Build project atto… 和 Compile independent …)
垂直或水平展示:打开文件,tab标签上右键可选(功能:可同时展示多个文件)
生成序列化版本号:File | Settings | Editor | Inspections -> 搜索serialVersionUID(选择序列号接口的选项): 鼠标悬浮在已实现序列号接口的类名上 Alt + Enter 
方法显示参数名称提示:File | Settings | Editor | General | Code Completion -> 勾选(show parameter name…)

注: 一些功能选择,有区分是对idea设置还是对当前project的设置:DefaultProject
eg:
idea的常用设置(从设置开始提高编程效率)_第1张图片

你可能感兴趣的:(笔记,IDE,idea,设置)