Intellij Shortcuts
ctrl+shift+F : search in whole project
ctrl+hover : check the field info in brief
ctrl+Q : check the field info in detail
ctrl+P: show the parameter information
ctrl+W : select the sentence incrementally
ctrl+H : check the hierarchy of a class
ctrl+B : go to the declaration of a method
ctrl+U: go to the super method/class
ctrl+H: type hierarchy
ctrl+shift+H: method hierarchy
ctrl|+alt+H: call hierarchy
ctrl+shift+N : search for and open a class
alt+enter : smart suggestions
ctrl+space : smart completion
ctrl+Y : delete the current line
ctrl+F4: close the current tab
alt+Q: show the current class name
double+shift: search everywhere
ctrl+shift+F: find in path
ctrl+F9: compile make project (compile modified and dependent)
ctrl+shift+F9: compile selected file, package or module
shift+F9: debug
shift+F10: run
ctrl+shift+F10: run context configuration from editor
shift+F6: refactor -> rename
ctrl+J: insert template
ctrl+shift+A: find any action inside the IDE
ctrl+shift+Enter: Complete the code block automatically
ctrl+J: suggestions of code blocks
ctrl+H: Display the hierarchy of the Class
ctrl+alt+H: Display the usage of the method
Intellij Shortcuts的更多相关文章
- 成吨提高开发效率:Intellij Shortcuts精简子集与思维模式
		
在线精简cheatsheet备查表:intellij.linesh.twGithub项目:intellij-mac-frequent-keymap Intellij的快捷键多而繁杂,从官方推荐的key ...
 - Java - 收藏集 -
		
Java - 收藏集 - Java 基础思维导图,让 Java 不再难懂 - 工具资源 - 掘金思维导图的好处 最近看了一些文章的思维导图,发现思维导图真是个强大的工具.了解了思维导图的作用之后, ...
 - IntelliJ Idea key shortcuts
		
>Default explaination Official IntelliJ Idea 常用快捷键列表 Shortcuts Ctrl+Shift + Enter,语句完成 "!&qu ...
 - (转)Eclipse Shortcuts
		
原文地址: http://javapapers.com/core-java/eclipse-shortcuts/ Editors are an integral part of a programme ...
 - Using IntelliJ IDEA as the Vim Editor
		
转载自https://www.jetbrains.com/help/idea/using-intellij-idea-as-the-vim-editor.html This feature is on ...
 - IntelliJ IDEA快捷键总结
		
原文: IntelliJ IDEA快捷键 下面只列出Windows系统下的快捷键,Mac下的快捷键参考上面的链接. Remember these Shortcuts 功能 快捷键 Smart code ...
 - How to make an IntelliJ IDEA plugin in less than 30 minutes
		
Sometimes it is a nice thing to extend an editor to have it do some new stuff, like being able to re ...
 - intellij idea 写 Helloworld
		
http://www.jetbrains.com/idea/webhelp/creating-and-running-your-first-java-application.html Creating ...
 - Flutter — IDE Shortcuts for Faster Development
		
https://medium.com/flutter-community/flutter-ide-shortcuts-for-faster-development-2ef45c51085b If yo ...
 
随机推荐
- 手机自动化测试:Appium源码分析之跟踪代码分析七
			
手机自动化测试:Appium源码分析之跟踪代码分析七 poptest是国内唯一一家培养测试开发工程师的培训机构,以学员能胜任自动化测试,性能测试,测试工具开发等工作为目标.poptest推出手机自 ...
 - iOS项目中常见的文件
			
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,bi ...
 - Java 基础知识总结
			
作者QQ:1095737364 QQ群:123300273 欢迎加入! 1.数据类型: 数据类型:1>.基本数据类型:1).数值型: 1}.整型类型(byte 8位 (by ...
 - CSS3-渐变背景色
			
线性渐变背景色: <style> .linear { width:130px; height:130px; border:2px solid black; padding: 10px; b ...
 - setTimeout 和 setInteval 的区别。
			
学习前端的可能都知道js有2个定时器setTimeOut和setinteval.用的时候可能不是很在意,但是2者还是有区别的 setTimeout方法是定时程序,也就是在什么时间以后干什么.干完就完了 ...
 - J2SE之基础语法总结一
			
1.标识符: (1)简单来说凡是可以起名字的地方都叫标识符,起标识符的时候要见名知意. (2)标识符由字母.数字.美元符$和下划线组成,标识符应以字母.下划线.$开头,注意不能以数字开头. (3)ja ...
 - Apache+mod_encoding解决URL中文编码问题
			
我们经常在论坛上看到这样的求救贴: 为什么我看不了网站上中文文件名的文件?这时一定会有好心的大侠告诉说,到IE6的工具,Internet选项, 高级里,把"总是以UTF-8发送URL&qu ...
 - clamav 杀毒软件安装及使用配置
			
安装clamav 之前还需要安装zlib 要不然安装过程中会报错的. tar -zxvf zlib-1.2.3.tar.gz cd zlib-1.2.3 ./configure make make ...
 - Json对象和Json字符串之间的转换
			
json字符串转json对象,调用parse方法: var b='{"name":"2323","sex":"afasdf&quo ...
 - 修改linux系统时间和同步
			
date 查看当前时间 date -s 15:14:13 修改时间 cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 修改时区 yes cront ...