IntelliJ Idea 常用快捷键列表

来源:互联网 发布:主要的编程语言有哪些 编辑:程序博客网 时间:2024/06/17 11:06

Analyze

RunInspection command shift alt I Analyze->Run Inspection By Name 根据代码检查的例子,运行代码检查

Code菜单

AutoIndentLines control alt I Code->Auto-Indent Lines 自动缩进CommentByBlockComment command alt SLASH Code->Comment With Block Comment 整段用/* */注释CommentByLineComment command SLASH Code->Comment with Line Comment 注释CodeCompletion control SPACE Code->Completion 代码自动完成SmartTypeCompletion control shift SPACE Code->Completion->SmartType 智能类型完成,不太明白CollapseBlock command shift PERIOD Code->Folding 折叠区块代码CollapseSelection command PERIOD Code->Folding 选中某一段代码后,用这个快捷键来折叠CollapseRegion command SUBTRACT Code->Folding->Collapse 选中后,折叠某个方法或类CollapseAll command SUBTRACT Code->Folding->Collapse 选中后,折叠某个方法或类CollapseAllRegions command shift SUBTRACT Code->Folding->Collapse All 折叠所有 比如折叠某个类的某个方法CollapseRegionRecursively command alt SUBTRACT Code->Folding->Collapse Recursively 循环折叠ExpandAll command ADD|control EQUALS Code->Folding->Expand 折叠当前方法ExpandAllRegions command shift ADD Code->Folding->Expand All 展开所有被折叠的地方ExpandRegion command ADD Code->Folding->Expand All 如果某个方法被折叠了,可以展开ExpandRegionRecursively command alt ADD Code->Folding->Expand Recursively 迭代展开方法ImplementMethods control I Code->Implement Method... 实现某个方法InsertLiveTemplate command J Code->Insert Live Template 插入代码模板,比如sout等MoveLineDown alt shift DOWN Code->Move Line Down 移动当前行到上一行MoveLineUp alt shift UP Code->Move Line Up 移动当前行到下一行MoveStatementDown command shift DOWN Code->Move Statement Down 把当前代码块,比如一个方法往下移动MoveStatementUp command shift UP Code->Move Statement Up 把当前代码块,比如一个方法往上移动OptimizeImports control alt O Code->Optimize Imports import优化OverrideMethods control O Code->Override Method 重载当前类的方法ReformatCode command alt L Code->Reformat Code 格式化代码SurroundWith command alt T Code->Surround With 选中某一段,然后可以用if之类的包含这段Unwrap command shift DELETE Code->Unwrap 删除,但是没有尝试出来Generate command N Code->generate 代码生成,包括构造函数,getter setter NewElement command N Code->Generate 新建一个元素,比如getter setter方法,非常有用ContextHelp F1 显示方法的帮助信息,比如javadocSurroundWithLiveTemplate command alt J 选中一行或一端,然后用模版来包裹

Edit菜单

CopyPaths command shift C Edit->Copy Path 拷贝当前文件的路径CopyReference command alt shift C Edit->Copy Reference 拷贝引用$Cut command X Edit->Cut 剪切EditorDuplicate command D Edit->Duplicate Line 复制当前行到下一行FindNext F3|command G Edit->Find->Find Next 找到下一个SelectNextOccurrence control G Edit->Find->Find Next 选定某些个字符后,找到下一个出现的地方FindPrevious command shift G Edit->Find->Find Previous 查找某个变量后,找到上一个出现的位置ShowSettingsAndFindUsages command shift alt F7 Edit->Find->Find Usage Settings 打开find usages的设置 需要选中某个类,方法,变量才能执行FindUsages alt F7 Edit->Find->Find Usages 找到类,方法或变量被使用的地方,在hierarchy中显示出来FindUsagesInFile command F7 Edit->Find->Find Usages in File 给定一个方法或变量,在当前文件中找到用的地方FindWordAtCaret control F3 Edit->Find->Find Word at Caret FindInPath command shift F Edit->Find->Find in Path 在文件中查找HighlightUsagesInFile command shift F7 Edit->Find->Highlight Usages in File 选中某个变量,然后进行查找Replace command R Edit->Find->Replace 替换ReplaceInPath command shift R Edit->Find->Replace in Path 根据文件的路径,替换文件中的内容,可以做到全局替换SelectAllOccurrences command control G Edit->Find->Select All Occurrences 选定某些个字符后,在当前文件中,找到所有该字符 并高亮显示ShowUsages command alt F7 Edit->Find->Show Usages 在当前editor,显示类,方法或变量被使用的地方UnselectPreviousOccurrence control shift G Edit->Find->Unselect Occurrence 通过Select Next Occurrence找到一些内容后,不选定这些内容EditorIndentSelection TAB Edit->Indent Selection 把选中的内容进行缩进$Paste command V Edit->Paste 粘贴EditorPasteSimple command alt shift V Edit->Paste Simple 简单粘贴,不做分析$Redo command shift Z|alt shift BACK_SPACE Edit->Redo 重复上一个动作$Undo command Z Edit->Undo 撤销上一次修改 Find command F 查找

Editor Actions

EditorBackSpace BACK_SPACE Editor Actions->Backspace 删除EditorChooseLookupItem ENTER Editor Actions->Choose Lookup Item EditorCutLineEnd control K Editor Actions->Cut up to Line End 剪切光标之后的到行尾的内容$Delete DELETE Editor Actions->Delete 删除EditorDelete DELETE Editor Actions->Delete EditorDeleteLine command BACK_SPACE Editor Actions->Delete Line 删除本行EditorDeleteToWordEnd alt DELETE Editor Actions->Delete to Word End 删除光标后的字符到字符串的结尾EditorDeleteToWordStart alt BACK_SPACE Editor Actions->Delete to Word Start 删除到字母开始的地方EditorDown DOWN Editor Actions->Down 光标往下移动一行EditorDownWithSelection shift DOWN Editor Actions->Down with Selection 往下选择EditorLeft LEFT Editor Actions->Left 编辑器左移EditorLeftWithSelection shift LEFT Editor Actions->Left with Selection 选择光标左边的字符EditorCodeBlockEnd command alt CLOSE_BRACKET Editor Actions->Move Caret to Code Block End 移动光标到代码块的结尾,比如移动到方法的最后一个}处EditorCodeBlockEndWithSelection command alt shift CLOSE_BRACKET Editor Actions->Move Caret to Code Block End with Selection 移动鼠标到代码块的结束处,并全选EditorCodeBlockStartWithSelection command alt shift OPEN_BRACKET Editor Actions->Move Caret to Code Block End with Selection 移动光标到代码块的结尾,比如移动到方法的最后一个}处,并全选内容EditorLineEnd command RIGHT Editor Actions->Move Caret to Line End 光标移动到行尾EditorLineEndWithSelection shift END Editor Actions->Move Caret to Line End With Selection 光标移动到行尾,并全选EditorLineStart command LEFT Editor Actions->Move Caret to Line Start 移动光标到行开头,很有用EditorLineStartWithSelection command shift LEFT Editor Actions->Move Caret to Line Start with Selection 光标向左移动到行开始处,并全选EditorPreviousWord alt LEFT Editor Actions->Move Caret to Previous Word 移动光标到上一个单词EditorTextEnd command END Editor Actions->Move Caret to Text End 移动光标到文件的最后面EditorTextEndWithSelection command shift END Editor Actions->Move Caret to Text End with Selection 选中从光标开始之后的内容EditorTextStartWithSelection command shift HOME Editor Actions->Move Caret to Text Start with Selection 选中从光标之前的所有内容EditorMoveToPageBottom command PAGE_DOWN Editor Actions->Move caret to Page Bottom 移动光标到文件底部EditorMoveToPageBottomWithSelection command shift PAGE_DOWN Editor Actions->Move caret to Page Bottom With Selection 移动光标到文件底部,并选择EditorMoveToPageTop command PAGE_UP Editor Actions->Move caret to Page Top 移动光标到文件顶部EditorMoveToPageTopWithSelection command shift PAGE_UP Editor Actions->Move caret to Page Top With Selection 移动光标到文件顶部 并选择NextTemplateVariable TAB|ENTER Editor Actions->Next Template Variable 下一个模板EditorPageDown PAGE_DOWN Editor Actions->Page Down 往下翻一页EditorRight RIGHT Editor Actions->Right 向右移动EditorRightWithSelection shift RIGHT Editor Actions->Right With Selection 光标往右,并选中EditorUnSelectWord alt DOWN Editor Actions->Shrink Selection 缩小已经选中的EditorSplitLine command ENTER Editor Actions->Split Line 貌似和普通的回车没有太大区别EditorStartNewLine shift ENTER Editor Actions->Start New Line 在本行之后开始一个新行,很有用的键EditorStartNewLineBefore command alt ENTER Editor Actions->Start New Line Before Current 在本行之前开始一个新行EditorToggleCase command shift U Editor Actions->Toggle Case 不知道EditorUnindentSelection shift TAB Editor Actions->Unindent Line or Selection 取消行或选定内容的缩进EditorUpWithSelection shift UP Editor Actions->Up with Selection 选中光标向上的部分PrevParameter shift TAB Editor Actions->shift TAB EditorJoinLines control shift J Editor Join Lines 下一行与本行放在同一行中$SelectAll command A Editor->Select All 全选NextParameter TAB Editor->TAB EditorScrollDown control DOWN EditorToggleColumnMode shift meta 8|shift meta MULTIPLY|shift meta 8 EditorToggleInsertState INSERT ExpandAllToLevel1 command alt MULTIPLY|meta alt MULTIPLY ExpandAllToLevel2 command alt MULTIPLY|meta alt MULTIPLY ExpandAllToLevel3 command alt MULTIPLY|meta alt MULTIPLY ExpandAllToLevel4 command alt MULTIPLY|meta alt MULTIPLY ExpandAllToLevel5 command alt MULTIPLY|meta alt MULTIPLY ExpandLiveTemplateByTab TAB ExpandToLevel1 command MULTIPLY|control MULTIPLY ExpandToLevel2 command MULTIPLY|control MULTIPLY ExpandToLevel3 command MULTIPLY|control MULTIPLY ExpandToLevel4 command MULTIPLY|control MULTIPLY ExpandToLevel5 command MULTIPLY|control MULTIPLY EditorPreviousWordWithSelection alt shift LEFT 选中左边的word EditorTextStart command HOME 回到文件的第一行,非常有用 EditorPageDownWithSelection shift PAGE_DOWN 光标往下移动,并选中EditorPageUpWithSelection shift PAGE_UP 光标往上移动,并选中

File菜单

Exit command Q File->Exit 退出SaveAll command S File->Save All 保存全部FileChooser.TogglePathShowing command P GotoCustomRegion command alt PERIOD GotoAction command shift A Help->Find Action 可以根据快捷键,找到相应快捷键,比如输入refactorHippieBackwardCompletion alt shift SLASH HippieCompletion alt SLASH ShowSettings command COMMA Intellij IDEA->preferences 打开idea的设置JumpToLastChange command shift BACK_SPACE FullyExpandTreeNode MULTIPLY MULTIPLY MethodDown control DOWN 不知道MethodUp control UP EditorNextWord alt RIGHT Move Caret to Next Word 移动光标到下一个单词EditorNextWordWithSelection alt shift RIGHT Move caret to Next Word with Selection 移动到下一个词,并全选Synchronize command alt Y File->Synchronize 同步文件

Navigate菜单

Back command OPEN_BRACKET Navigate->Back 回退NextOccurence command alt DOWN Navigate->Bookmarks->Next Occurence 下一个书签ShowBookmarks command F3 Navigate->Bookmarks->Show Bookmarks 显示书签ToggleBookmark F3 Navigate->Bookmarks->Toggle Bookmark 加书签ToggleBookmarkWithMnemonic alt F3 Navigate->Bookmarks->Toggle Bookmark With Mnemoic 打有标示的标签CallHierarchy control alt H Navigate->Call Hierarchy 选中某个方法后,打开该方法的调用链GotoClass command O Navigate->Class 打开某个类GotoDeclaration command B Navigate->Declaration 调到变量或方法声明处GotoFile command shift O Navigate->File 打开一个文件ShowFilePath command alt F12 Navigate->File Path 显示文件路径FileStructurePopup command F12 Navigate->File Structure 打开文件的结构 如果是class文件,显示变量,方法;也可以xml文件的结构Forward command CLOSE_BRACKET|meta alt RIGHT Navigate->Forward 前进 不是太明白GotoImplementation command alt B Navigate->Implementations(s) 调到该方法的实现处ShowNavBar command UP|alt HOME Navigate->Jump to Navigation Bar 调到导航条GotoLine command L Navigate->Line 跳到某一行MethodHierarchy command shift H Navigate->Method Hierarchy 不知道 方法结构,貌似不起作用GotoNextError F2 Navigate->Next Highlighted Error 光标移到下一个错误GotoPreviousError shift F2 Navigate->Previous Highlighted Error 跳到上一个错误处PreviousOccurence command alt UP Navigate->Previous Occurence 不知道GotoRelated command meta UP Navigate->Related Symbol 不知道SelectIn alt F1 Navigate->Select In 可以进入Project View File StructureGotoSuperMethod control U Navigate->Super Method 跳到父类方法GotoSymbol command alt O Navigate->Symbol 根据符号名打开文件GotoTest command shift T Navigate->Test 跳到测试方法,或创建一个测试方法GotoTypeDeclaration command shift B|control shift B Navigate->Type Declaration 调到变量的声明处TypeHierarchy control H Navigate->Type Hierarchy 打开类型结构图NewElementSamePlace control alt N

其他

ActivateProjectToolWindow command 1 Other->Activate Project Tool Window 打开project window 常用ActivateFavoritesToolWindow command 2 Other->Activate Favorites Tool Window 打开favorites windowActivateFindToolWindow command 3 Other->Activate Find Tool Window 打开find windowActivateRunToolWindow command 4 Other->Activate Run Tool Window 打开运行window 如果此工程没有运行过,则打不开ActivateDebugToolWindow command 5 Other->Activate Debug Tool Window 打开debug windows 如果此工程没有调试过,则打不开ActivateTODOToolWindow command 6 Other->Activate TODO Tool Window 打开TODO windowsActivateStructureToolWindow command 7 Other->Activate structure Tool Window 打开structure windowActivateHierarchyToolWindow command 8 Other->Activate Hierarchy Tool Window 打开hierarchy windowActivateChangesToolWindow command 9|meta shift 9 Other->Activate changes Tool Window 打开change window 比如git的修改AddToFavoritesPopup alt shift F Other->Add to Favorites ExpandTreeNode ADD ADD ProjectViewChangeView alt F1 Other->Change View 切换viewClassNameCompletion control alt SPACE Other->Class Name Completion 类名自动完成FileChooser.GotoDesktop command D Other->Desktop Directory ExportToTextFile control O Other->Export to Text File 导出到文本文件中 不起作用EditBreakpoint command shift F8 Other->Edit 光标在断点所在行以后,可以编辑断点,比如加入条件GotoBookmark0 control 0 Other->Goto Bookmark 0 跳到第0个书签处GotoBookmark1 control 1 Other->Goto Bookmark 1 跳到第1个书签处GotoBookmark2 control 2 Other->Goto Bookmark 2 跳到第2个书签处GotoBookmark3 control 3 Other->Goto Bookmark 3 跳到第3个书签处GotoBookmark4 control 4 Other->Goto Bookmark 4 跳到第4个书签处GotoBookmark5 control 5 Other->Goto Bookmark 5 跳到第5个书签处GotoBookmark6 control 6 Other->Goto Bookmark 6 跳到第6个书签处GotoBookmark7 control 7 Other->Goto Bookmark 7 跳到第7个书签处GotoBookmark8 control 8 Other->Goto Bookmark 8 跳到第8个书签处GotoBookmark9 control 9 Other->Goto Bookmark 9 跳到第9个书签处 CodeInspection.OnEditor alt shift I Other->Inspect Code With Editor Settings EditorLookupDown control DOWN Other->Lookup down EditorLookupUp control UP Other->Lookup up MaintenanceAction command alt shift SLASH Other->Maintenance ActivateMessagesToolWindow command 0 Other->Messages 打开消息窗口FileChooser.GotoModule command 3 Other->Module Directory FileChooser.NewFolder command N Other->New Folder Console.Open command shift F10 Other->Open Console 打开consoleEditSourceInNewWindow shift F4 Other->Open Source in New Window 用新窗口打开文件PreviousEditorTab control shift LEFT Other->Previous Editor Tab 不知道 怎么用FileChooser.GotoProject command 2 Other->Project Directory Refresh command R Other->Refresh 这个键与替换快捷键重复了RemoveFromFavorites control DELETE Other->Remove From Favorites Rerun command R Other->Rerun 再次运行RerunTests control command R 再次运行测试 DuplicatesForm.SendToLeft command 1 Other->Send to Left DuplicatesForm.SendToRight command 2 Other->Send to Right ShowIntentionActions alt ENTER Other->Show Intention Actions 自动完成功能,比如引入一个变量,最常用的功能之一ShowReformatFileDialog command shift alt L Other->Show Reformat File Dialog 显示格式化代码的对话框Switcher ctrl TAB|ctrl shift TAB Other->Switcher 弹出列表,可以在打开的文件列表中切换EditorChooseLookupItemReplace TAB Other->TAB ActivateTerminalToolWindow alt F12 Other->Terminal 打开终端ToggleBookmark0 control shift 0 Other->Toggle Bookmark 0 在当前打上第0个书签ToggleBookmark1 control shift 1 Other->Toggle Bookmark 1 在当前打上第1个书签ToggleBookmark2 control shift 2 Other->Toggle Bookmark 2 在当前打上第2个书签ToggleBookmark3 control shift 3 Other->Toggle Bookmark 3 在当前打上第3个书签ToggleBookmark4 control shift 4 Other->Toggle Bookmark 4 在当前打上第4个书签ToggleBookmark5 control shift 5 Other->Toggle Bookmark 5 在当前打上第5个书签ToggleBookmark6 control shift 6 Other->Toggle Bookmark 6 在当前打上第6个书签ToggleBookmark7 control shift 7 Other->Toggle Bookmark 7 在当前打上第7个书签ToggleBookmark8 control shift 8 Other->Toggle Bookmark 8 在当前打上第8个书签ToggleBookmark9 control shift 9 Other->Toggle Bookmark 9 在当前打上第9个书签PasteMultiple command shift V|control shift INSERT 粘贴多行PopupHector command alt shift H QuickChangeScheme control BACK_QUOTE Console.History.Browse command alt E 展示console中的历史

Refactor菜单 重构部分

ChangeTypeSignature command shift F6 类型迁移ChangeSignature command F6 Refactor->Change Signature 修改方法CopyElement F5 Refactor->Copy 拷贝,比如拷贝一个类IntroduceConstant command alt C Refactor->Extract->Constant 重构,抽出一个constantIntroduceField command alt F Refactor->Extract->Field 把方法中的一个变量抽成一个类变量ExtractMethod command alt M Refactor->Extract->Method 重构,代码抽成方法IntroduceParameter command alt P Refactor->Extract->Parameter 重构,把某个值重构成方法的参数IntroduceVariable command alt V Refactor->Extract->Variable 自动引入变量Inline command alt N Refactor->Inline 内联,把方法的内容放入到调用者中 也就是减少一个方法Move F6 Refactor->Move 移动方法或者类RenameElement shift F6 Refactor->Rename 重构,命名元素(变量名,方法名)SafeDelete command DELETE Refactor->Safe Delete 重构,安全删除元素(变量,方法等)Refactorings.QuickListPopupAction control T

Build菜单

CompileDirty command F9 Build->Make Project 编译工程Compile command shift F9 Build->Compile 编译当前文件

Run菜单

Debug control D Run->Debug 调试上一次调试过的程序DebugClass control shift F9|control shift D 调试类ChooseDebugConfiguration control alt D Run->Debug... 选择哪一个程序或方法来调试EvaluateExpression alt F8 Run->Evaluate Expression 调试,表达式估值ForceRunToCursor command alt F9 Run->Force Run to Curosr 在调试中,强制让程序运行到光标所在处ForceStepInto alt shift F7 Run->Force Step Into debug时,强制进入ForceStepOver alt shift F8 Run->Force Step Over debug时,强制Step OverQuickEvaluateExpression command alt F8 Run->Quick Evaluate Expression 调试,快速表达式估值Resume command alt R Run->Resume 调试,继续,放过本断点直到下一个断点Run control R Run->Run 运行上一次运行的程序RunToCursor alt F9 Run->Run to Cursor 在调试中,让程序运行到光标所在处ChooseRunConfiguration control alt R Run->Run... 选择哪一个程序或方法来运行RunClass control shift F10|control shift R Run->Run... 运行某个方法ShowExecutionPoint alt F10 Run->Show Execution Point 回到断点处SmartStepInto shift F7 Run->Smart Step Into debug时,可以选择哪个方法step intoStepInto F7 Run->Step Into 调试 进入方法StepOut shift F8 Run->Step Out 跳过本方法StepOver F8 Run->Step Over 调试时,跳过某个方法Stop command F2 Run->Stop 停止程序运行ToggleLineBreakpoint command F8 Run->Toggle Line Breakpoint 打断点ViewBreakpoints command shift F8 Run->View Breakpoints 列出所有断点

Version Control System

Vcs.ShowMessageHistory command E Version Control System->Commit Message History GotoChangedFile command O Version Control System->Diff->Go To Changed File NextDiff F7 Version Control System->Diff->Next Difference 比较两个文件时,下一个不同的地方Diff.ShowDiff command D Version Control System->Diff->Show Diff Diff.ShowSettingsPopup command shift D Version Control System->Diff->Show Setting Popup VcsShowNextChangeMarker shift control alt DOWN Version Control System->Next Change VcsShowPrevChangeMarker shift control alt UP Version Control System->Previous Change VcsHistory.ShowAllAffected command ctrl A Version Control System->Show All Affected Files 貌似与qq的截屏键冲突了Vcs.QuickListPopupAction ctrl V Version Control System->Vcs Operations Popup 打开vcs的菜单PreviousDiff shift F7 Version Control Systems->Diff->Previous Difference 上一个不同的地方ShelveChanges.UnshelveWithDialog command shift U Version Control Systems->Shelve->Unshelve Changes ToggleTemporaryLineBreakpoint command shift alt F8 加一个临时的行断点

View菜单

CompareTwoFiles command D View->Compare With 选择一个文件与当前文件进行比较EditorContextInfo control shift Q View->Context Info 显示当前编辑文件的信息 也就是类信息ShowErrorDescription command F1 View->Error Description 显示错误信息ExternalJavaDoc shift F1 View->External Documentation 不知道ParameterInfo command P View->Parameter Info 显示某个方法的参数信息QuickJavaDoc F1 View->Quick Documentation 选中某个方法或变量后,打开文档RecentChangedFiles command shift E View->Recent Changed Files 最近修改过的文件列表RecentFiles command E View->Recent Files 最近打开的文件列表EditSource F4 View->Show source 进入源码,进入方法的定义ToggleFullScreen command control F View->Toggle Full Screen Mode 全屏或者退出全屏QuickImplementations command Y 查看方法的实现

Window菜单

CloseActiveTab control shift F4 Window->Active Tool Window->Close Active Tab 关闭活跃的TabHideActiveWindow shift ESCAPE Window->Active Tool Window->Hide Active Tool Window 隐藏打开的工具栏 也比较有用HideAllWindows command shift F12 Window->Active Tool Window->Hide All Tool Windows 隐藏所有工具栏JumpToLastWindow F12 Window->Active Tool Window->Jump to Last Tool Window 回到上一个工具窗MaximizeToolWindow command shift QUOTE Window->Active Tool Window->Maximize Tool Window 最大化工具栏,在看调试信息的时候,还是比较有用ResizeToolWindowDown command shift DOWN Window->Active Tool Window->Resize->Stretch to Down 工具栏下边框往下移动ResizeToolWindowLeft command shift LEFT Window->Active Tool Window->Resize->Stretch to Left 工具栏左边框往左移动ResizeToolWindowRight command shift RIGHT Window->Active Tool Window->Resize->Stretch to Right 工具栏右边框往右移动ResizeToolWindowUp command shift UP Window->Active Tool Window->Resize->Stretch to Up 工具栏上边框往上移动PreviousTab command shift OPEN_BRACKET Window->Editor Tab->Select Previous Tab editor 的前一个tab tab切换CloseContent command W Window->Editor Tabs->Close 关闭窗口PrevSplitter alt shift TAB Window->Editor Tabs->Goto Previous Splitter NextTab command shift CLOSE_BRACKET Window->Editor Tabs->Select Next Tab 在同一行中调到行尾NextEditorTab control shift RIGHT Window->Editor Tabs->Select Next Tab MinimizeCurrentWindow command M Window->Minimize 最小化窗口NextProjectWindow command BACK_QUOTE Window->Next Project Window 切换到上一个工程PreviousProjectWindow command shift BACK_QUOTE Window->Previous Project Window 切换到下一个工程RestoreDefaultLayout shift F12 Window->Restore Default Layout 恢复默认布局,这个还是比较常用ZoomCurrentWindow command control EQUALS Window->Zoom 放大或缩小当前窗口更多:http://www.itshouce.com.cn/manual/idea-mac-shouce.html
0 0
原创粉丝点击