解决办法:1、设置字体(本机使用的Fira Code)
2、在idea.vmoptions和idea64.vmoptions里面添加下面两句
-Duser.country=EN
-Duser.language=us
--------------------------华丽分割线-------------------------------------
IDEA 默认是开启单词拼写检查的
去掉框架的检查提示
---------------------------华丽分割线---------------------------------------------
---------------------------华丽分割线---------------------------------------------
设置idea的SVN忽略掉*.iml文件
在lgnore files and folesrs中输入.idea;注意要";"结尾。你就可以隐藏.idea文件夹了
Ignore files and folders增加*.iml;
----------------------华丽分割线-------------------------------------
----------------------华丽分割线-------------------------------------
查看jar包依赖 安装Maven Helper插件
一个IDEA插件,叫Maven Helper,在 File->Settings->Plugins里安装就好了,另外这个工具依赖maven intergration,在安装后一定也要把它打上勾,然后重启IDEA。重启后,你打开你的pom.xml,编辑器左下角会多出来个“Dependency Analyzer”,打开后会发现,丫把所有依赖包的版本和冲突全都列出来了,而且还会把冲突包的路径显示出来,这时候你只要把冲突包的所有低版本从pom中exclude掉就好了
----------------------华丽分割线-------------------------------------
svn 不能同步代码问题修正
File -> Settings ->Subversion ->General => Use command line client 选中
使用command line方式需要指定svn.exe的路径,例如:D:\tools\TortoiseSVN\bin\svn.exe
注意,安装TortoiseSVN时路径中不要带空格,例如:C:\Program Files\TortoiseSVN\bin\svn.exe就会报错,安装TortoiseSVN选择全部安装组件,否则可能没有svn.exe
-----------------------华丽分割线-----------------------------------
用*标识编辑过的文件 勾选
-------------------------------华丽分割线------------------------------------------
设置光标所在行的背景:
-------------------------------华丽分割线------------------------------------------
设置选中标识符高亮:
-------------------------------华丽分割线------------------------------------------
PHP?action=addblog&job=modify&tid=1906829");background-position:50% 50%;background-repeat:no-repeat;" src="http://xiaok007.blog.51cto.com/e/u261/themes/default/images/spacer.gif">
如何让光标不随意定位:
Settings->Editor中去掉Allow placement of caret after end of line。
显示虚拟空间:
File -> Settings -> Editor -> General -> Virtual Space标签项 -> 勾选 Show virtual space at file bottom
去除每行多余空格:
File -> Settings -> Editor -> General -> Other标签项 -> 设置Srip trailing spaces on Save,下拉选择 All
去除光滑滚动:
File -> Settings -> Editor -> General -> Scrolling标签项 ->去掉Smooth scrolling
File -> Settings -> Appearance & Behavior -> System Settings -> Usage Statistics -> 去掉 Allow sending
禁用插件:
File -> Settings -> Plugins -> 如:ASP、Cloud Foundry integration、CloudBees integration、CVS Integration、Flash/Flex Support、TFS Integration、Google App Engine Integration
-------------------------------华丽分割线------------------------------------------
--------------------------------------华丽分割线-------------------------------------------------
tabs个数设置
----------------------------------------华丽分割线--------------------------------
----------------------------------------华丽分割线--------------------------------
常用的一些快捷键:
1.双击shift
在项目的所有目录查找,就是你想看到你不想看到的和你没想过你能看到的都给你找出来
2.ctrl+f
3.ctrl+shift+f
4.ctrl+n
查找类
5.ctrl+shift+n
查找文件
6.ctrl+e
最近的文件
7.alt+F7
非常非常频繁使用的一个快捷键,可以帮你找到你的函数或者变量或者类的所有引用到的地方
8.alt+insert
非常非常以及相当方便的一个组合键,不信您往下看
9.alt+enter 导包
10.比如System.out.println(“”);,在IDEA中可以sout + TAB实现。
11.main方法 psvm
12.ctrl+x --删除行
13.ctrl+d --复制行
OK!
原文链接:https://www.f2er.com/idea/354032.html