-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathintellijActionlist
1735 lines (1735 loc) · 90.9 KB
/
intellijActionlist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--- Actions ---
$Copy <C-C> <C-Ins>
$Cut <C-X> <S-Del>
$Delete <Del>
$LRU
$Paste <C-V> <S-Ins>
$Redo <C-S-Z> <A-S-BS>
$SearchWeb
$SelectAll <C-A>
$Undo <C-Z> <A-BS>
About
Actions.ActionsPlugin.GenerateToString
ActivateAntBuildToolWindow
ActivateCaptureAnalysisToolWindow
ActivateCaptureToolToolWindow
ActivateDebugToolWindow <A-5>
ActivateDesignerToolWindow
ActivateEventLogToolWindow
ActivateFavoritesToolWindow <A-2>
ActivateImageLayersToolWindow
ActivateLearnToolWindow
ActivateMavenProjectsToolWindow
ActivateNavBar
ActivatePalette ToolWindow
ActivatePaletteToolWindow
ActivatePlantUMLToolWindow
ActivateProjectToolWindow <A-1>
ActivateRunToolWindow <A-4>
ActivateStatisticToolWindow
ActivateStructureToolWindow <A-7>
ActivateTerminalToolWindow <A-F12>
ActivateThemePreviewToolWindow
ActivateTODOToolWindow <A-6>
ActivateUIDesignerToolWindow
ActivateVersionControlToolWindow <A-9> <A-S-9>
ActiveToolwindowGroup
AddAllToFavorites
AddAntBuildFile
AddFrameworkSupport
AddGradleDslPluginAction
AddNewFavoritesList
AddNewPropertyFile
AddNewTabToTheEndMode
AddOptionDialogActionGroup
AddToFavorites
AddToFavoritesPopup <A-S-F>
AddToISuite
AddToTestNGSuite
AnalyzeActions
AnalyzeJavaMenu
AnalyzeMenu
nnotate
AnnotationHintsContextMenu
AnonymousToInner
AntBuildGroup
Arrangement.Alias.Rule.Add <A-Ins>
Arrangement.Alias.Rule.Context.Menu
Arrangement.Alias.Rule.Edit <F2>
Arrangement.Alias.Rule.Match.Condition.Move.Down <A-Down>
Arrangement.Alias.Rule.Match.Condition.Move.Up <A-Up>
Arrangement.Alias.Rule.Remove <Del>
Arrangement.Alias.Rule.ToolBar
Arrangement.Custom.Token.Rule.Edit
Arrangement.Rule.Add <A-Ins>
Arrangement.Rule.Edit <F2>
Arrangement.Rule.Group.Condition.Move.Down <A-Down>
Arrangement.Rule.Group.Condition.Move.Up <A-Up>
Arrangement.Rule.Group.Control.ToolBar
Arrangement.Rule.Match.Condition.Move.Down <A-Down>
Arrangement.Rule.Match.Condition.Move.Up <A-Up>
Arrangement.Rule.Match.Control.Context.Menu
Arrangement.Rule.Match.Control.ToolBar
Arrangement.Rule.Remove <Del>
Arrangement.Rule.Section.Add
AssociateWithFileType
AttachProject
AutoIndentLines <A-C-I>
AutoShowProcessWindow
Back <A-C-Left> button=4 clickCount=1 modifiers=0
BackgroundTasks
BasicEditorPopupMenu
Bookmarks
BuildArtifact
BuildMenu
ByteCodeDecompiler
ByteCodeViewer
CacheResetOnProcessCanceledToggleAction
CallHierarchy <A-C-H>
CallHierarchy.BaseOnThisType <A-C-H>
CallHierarchyPopupMenu
ChangeCodeStyleScheme
ChangeColorScheme
ChangeFileEncodingAction
ChangeInspectionProfile
ChangeKeymap
ChangeLaf
ChangeLineSeparators
ChangeScheme
ChangeSignature <C-F6>
ChangeSplitOrientation
ChangesView.AddUnversioned <A-C-A>
ChangesView.AddUnversioned.From.Dialog <A-C-A>
ChangesView.ApplyPatch
ChangesView.ApplyPatchFromClipboard
ChangesView.Browse
ChangesView.CreatePatch
ChangesView.CreatePatchFromChanges
ChangesView.CreatePatchToClipboard
ChangesView.DeleteUnversioned
ChangesView.DeleteUnversioned.From.Dialog
ChangesView.Diff <C-D>
ChangesView.Edit
ChangesView.GroupBy
ChangesView.GroupBy.Directory
ChangesView.GroupBy.Module
ChangesView.GroupBy.Repository
ChangesView.Ignore
ChangesView.Move
ChangesView.NewChangeList
ChangesView.Refresh
ChangesView.RemoveChangeList
ChangesView.RemoveDeleted
ChangesView.Rename
ChangesView.Revert <A-C-Z>
ChangesView.SetDefault
ChangesView.Shelve
ChangesView.ShelveSilently <A-C-H>
ChangesView.UnshelveSilently <A-C-U>
ChangesViewPopupMenu
ChangesViewToolbar
ChangeTemplateDataLanguage
ChangeTypeSignature <C-S-F6>
ChangeView
CheckComponentsUsageSearchAction
CheckForUpdate
CheckinFiles
CheckinProject <C-K>
CheckStatusForFiles
ChooseDebugConfiguration <A-S-F9>
ChooseNextSubsequentPropertyValueEditorAction <A-Down>
ChoosePrevSubsequentPropertyValueEditorAction <A-Up>
ChooseRunConfiguration <A-S-F10>
ClassNameCompletion <A-C- >
CleanGradleProject
CloseActiveTab <C-S-F4>
CloseAllEditors
CloseAllEditorsButActive
CloseAllNotifications
CloseAllUnmodifiedEditors
CloseAllUnpinnedEditors
CloseContent <C-F4>
CloseEditor
CloseEditorsGroup
CloseFirstNotification
CloseProject
CodeCleanup
CodeCompletion <C- >
CodeCompletionGroup
CodeEditorBaseGroup
CodeEditorViewGroup
CodeFormatGroup
CodeInsightEditorActions
CodeInspection.OnEditor <A-S-I>
CodeMenu
CollapseAll <C-m> <C-->
CollapseAllRegions <C-S-m> <C-S-->
CollapseBlock <C-S-.>
CollapseDocComments
CollapseExpandableComponent <S-CR> <C-m> <C-->
CollapseRegion <C-m> <C-->
CollapseRegionRecursively <A-C-m> <A-C-->
CollapseSelection <C-.>
CollapseTreeNode <m>
CollectSettings
CollectZippedLogs
com.intellij.spellchecker.actions.SpellingPopupActionGroup
CombinePropertiesFilesAction
CommanderPopupMenu
CommentByBlockComment <C-S-/> <C-S-o>
CommentByLineComment <C-/> <C-o>
CommentGroup
CommittedChanges.Clear
CommittedChanges.Details
CommittedChanges.Filter
CommittedChanges.Refresh
CommittedChanges.Revert
CommittedChangesToolbar
Compare.LastVersion
Compare.SameVersion
Compare.Selected
Compare.Specified
CompareActions
CompareClipboardWithSelection
CompareDirs <C-D>
CompareFileWithEditor
CompareTwoFiles <C-D>
Compile <C-S-F9>
CompileDirty <C-F9>
CompileProject
CompilerErrorViewPopupMenu
ConfigureCvsRoots
ConfigureIcs
ConfigureKotlinInProject
ConfigureKotlinJsInProject
ConfigureSubView
Console.Execute <CR>
Console.Execute.Multiline <C-CR>
Console.History.Browse <A-C-E>
Console.History.Next
Console.History.Previous
Console.HistoryActions
Console.Open <C-S-F10>
Console.SplitLine <C-CR>
ConsoleEditorPopupMenu
ConsoleView.ClearAll
ConsoleView.FoldLinesLikeThis
ConsoleView.PopupMenu
context.clear <A-S-X>
context.load <A-S-L>
context.save <A-S-S>
ContextHelp <F1>
ConvertFromWebp
ConvertGroovyToJava
ConvertIndentsGroup
ConvertIndentsToSpaces
ConvertIndentsToTabs
ConvertJavaToKotlin <A-C-S-K>
ConvertModuleGroupsToQualifiedNames
ConvertSchemaAction
ConvertToCompileStatic
ConvertToInstanceMethod
ConvertToMacLineSeparators
ConvertToUnixLineSeparators
ConvertToWebp
ConvertToWindowsLineSeparators
CopyAsDiagnosticTest <A-C-S-T>
CopyAsPlainText
CopyAsRichText
CopyElement <F5>
CopyPaths <C-S-C>
CopyReference <A-C-S-C>
CopyUrl
Coverage
CoverageMenu
CoveragePlatformMenu
CreateDesktopEntry
CreateIncrementalCompilationBackup
CreateLauncherScript
CreateLibraryFromFile
CreateResourceBundle
CreateRunConfiguration
CutCopyPasteGroup
Cvs.Add
Cvs.BrowseCVSRepository
Cvs.Checkout
Cvs.CreateBranch
Cvs.CreateTag
Cvs.DeleteTag
Cvs.Edit
Cvs.Editors
Cvs.GetFromRepository
Cvs.Ignore
Cvs.Import
Cvs.MergeAction
Cvs.ToggleOffline
Cvs.UndoAdd
Cvs.Unedit
Cvs.WatchAdd
Cvs.Watchers
Cvs.WatchOff
Cvs.WatchOn
Cvs.WatchRemove
CvsActions
CvsFilePopupGroup
CvsGlobalGroup
DataSharingOptions
Debug <S-F9>
DebugBuildProcess
DebugClass
Debugger.AddSteppingFilter
Debugger.AddToWatch
Debugger.AdjustArrayRange
Debugger.AsyncStacks
Debugger.AutoRenderer
Debugger.CopyStack
Debugger.CreateRenderer
Debugger.CustomizeContextView
Debugger.CustomizeThreadsView
Debugger.EditArrayFilter <F2>
Debugger.EditCustomField <F2>
Debugger.EditFrameSource <F4>
Debugger.EditNodeSource
Debugger.EditTypeSource <S-F4>
Debugger.EvaluateInConsole
Debugger.EvaluationDialogPopup
Debugger.FilterArray
Debugger.FocusOnBreakpoint
Debugger.ForceEarlyReturn
Debugger.FramePanelPopup
Debugger.FreezeThread
Debugger.InspectPanelPopup
Debugger.InterruptThread
Debugger.MarkObject <F11>
Debugger.MuteRenderers
Debugger.NewCustomField
Debugger.PopFrame
Debugger.RemoveArrayFilter <Del>
Debugger.RemoveCustomField <Del>
Debugger.Representation
Debugger.ResumeThread
Debugger.ShowLibraryFrames
Debugger.ShowReferring
Debugger.ShowRelatedStack
Debugger.ShowTypes
Debugger.SwitchToTheNextContext
Debugger.ThreadsPanelPopup
Debugger.ThrowException
Debugger.Tree.EvaluateInConsole
Debugger.ViewAsGroup
Debugger.ViewText
Debugger.WatchesPanelPopup
DebugMainMenu
DecompileKotlinToJava
DecrementWindowHeight <C-S-Up>
DecrementWindowWidth <C-S-Left>
defaultLombokData
defaultLombokEqualsAndHashcode
defaultLombokGetter
defaultLombokLogger
defaultLombokSetter
defaultLombokToString
DelegateMethods
DelombokActionGroup
delombokAny
delombokBuilder
delombokConstructor
delombokData
delombokDelegate
delombokEqualsAndHashCode
delombokGetter
delombokLogger
delombokSetter
delombokToString
delombokValue
delombokWither
DeveloperServices.ConnectionAssistant
DevkitNewActions
Diff.AppendLeftSide
Diff.AppendRightSide
Diff.ApplyLeftSide
Diff.ApplyNonConflicts
Diff.ApplyNonConflicts.Left
Diff.ApplyNonConflicts.Right
Diff.ApplyRightSide
Diff.ComparePartial.Base.Left
Diff.ComparePartial.Base.Right
Diff.ComparePartial.Left.Right
Diff.CompareWithBase.Left
Diff.CompareWithBase.Result
Diff.CompareWithBase.Right
Diff.EditorGutterPopupMenu
Diff.EditorGutterPopupMenu.EditorSettings
Diff.EditorPopupMenu
Diff.FocusOppositePane <C-Tab>
Diff.FocusOppositePaneAndScroll <C-S-Tab>
Diff.HighlightMode
Diff.IgnoreLeftSide
Diff.IgnoreRightSide
Diff.IgnoreWhitespace
Diff.KeymapGroup
Diff.MagicResolveConflicts
Diff.NextChange <A-Right>
Diff.NextConflict
Diff.PrevChange <A-Left>
Diff.PreviousConflict
Diff.ResolveConflict
Diff.ShowDiff <C-D>
Diff.ShowInExternalTool
Diff.ShowSettingsPopup <C-S-D>
Diff.ViewerPopupMenu
Diff.ViewerToolbar
DiffPanel.Toolbar
DirDiffMenu
DirDiffMenu.CancelComparingNewFilesWithEachOther
DirDiffMenu.CompareNewFilesWithEachOtherAction
DirDiffMenu.EnableEqual
DirDiffMenu.EnableLeft
DirDiffMenu.EnableNotEqual
DirDiffMenu.EnableRight
DirDiffMenu.MirrorToLeft
DirDiffMenu.MirrorToRight
DirDiffMenu.SetCopyToLeft
DirDiffMenu.SetCopyToRight
DirDiffMenu.SetDefault
DirDiffMenu.SetDelete
DirDiffMenu.SetNoOperation
DirDiffMenu.SynchronizeDiff <CR>
DirDiffMenu.SynchronizeDiff.All <C-CR>
DirDiffMenu.WarnOnDeletion
DirDiffOperationsMenu
DisableInspection
DissociateResourceBundleAction
Document2XSD
DomCollectionControl
DomCollectionControl.Add <Ins>
DomCollectionControl.Edit <F4>
DomCollectionControl.Remove <Del>
DomElementsTreeView.AddElement <Ins>
DomElementsTreeView.AddElementGroup
DomElementsTreeView.DeleteElement <Del>
DomElementsTreeView.GotoDomElementDeclarationAction <F4>
DomElementsTreeView.TreePopup
DumpLookupElementWeights <A-C-S-W>
DumpThreads
Dvcs.Log.ContextMenu
Dvcs.Log.Toolbar
EditAndWatch
EditBookmarksGroup
EditBreakpoint <C-S-F8>
EditBuildTypes
EditCommitMessage
EditCreateDeleteGroup
EditCustomProperties
EditCustomVmOptions
EditFavorites
EditFlavors
EditInspectionSettings
EditLibraryAndDependencies
EditMacros
EditMenu
EditorActions
EditorAddOrRemoveCaret button=1 clickCount=1 modifiers=576
EditorAddRectangularSelectionOnMouseDrag button=1 clickCount=1 modifiers=704
EditorBackSpace <BS> <S-BS>
EditorBackwardParagraph
EditorBidiTextDirection
EditorBreadcrumbsHideBoth
EditorBreadcrumbsSettings
EditorBreadcrumbsShowAbove
EditorBreadcrumbsShowBelow
EditorChooseLookupItem <CR>
EditorChooseLookupItemCompleteStatement <C-S-CR>
EditorChooseLookupItemDot <C-.>
EditorChooseLookupItemReplace <Tab>
EditorCloneCaretAbove
EditorCloneCaretBelow
EditorCodeBlockEnd <C-]>
EditorCodeBlockEndWithSelection <C-S-]>
EditorCodeBlockStart <C-[>
EditorCodeBlockStartWithSelection <C-S-[>
EditorCompleteStatement <C-S-CR>
EditorContextBarMenu
EditorContextInfo <A-Q>
EditorCopy <C-C> <C-Ins>
EditorCreateRectangularSelection button=2 clickCount=1 modifiers=576
EditorCut <C-X> <S-Del>
EditorCutLineBackward
EditorCutLineEnd
EditorDecreaseFontSize
EditorDelete <Del>
EditorDeleteLine <C-Y>
EditorDeleteToLineEnd
EditorDeleteToLineStart
EditorDeleteToWordEnd <C-Del>
EditorDeleteToWordEndInDifferentHumpsMode
EditorDeleteToWordStart <C-BS>
EditorDeleteToWordStartInDifferentHumpsMode
EditorDown <Down>
EditorDownWithSelection <S-Down>
EditorDuplicate <C-D>
EditorDuplicateLines
EditorEnter <CR>
EditorEscape <Esc>
EditorForwardParagraph
EditorGutterPopupMenu
EditorGutterToggleGlobalIndentLines
EditorGutterToggleGlobalLineNumbers
EditorGutterToggleGlobalSoftWraps
EditorGutterVcsPopupMenu
EditorHungryBackSpace
EditorIncreaseFontSize
EditorIndentLineOrSelection
EditorIndentSelection <Tab>
EditorJoinLines <C-S-J>
EditorKillRegion
EditorKillRingSave
EditorKillToWordEnd
EditorKillToWordStart
EditorLangPopupMenu
EditorLeft <Left>
EditorLeftWithSelection <S-Left>
EditorLineEnd <End>
EditorLineEndWithSelection <S-End>
EditorLineStart <Home>
EditorLineStartWithSelection <S-Home>
EditorLookupDown <C-Down>
EditorLookupUp <C-Up>
EditorMatchBrace <C-S-M>
EditorMoveDownAndScroll
EditorMoveDownAndScrollWithSelection
EditorMoveToPageBottom <C-Pagedown>
EditorMoveToPageBottomWithSelection <C-S-Pagedown>
EditorMoveToPageTop <C-Pageup>
EditorMoveToPageTopWithSelection <C-S-Pageup>
EditorMoveUpAndScroll
EditorMoveUpAndScrollWithSelection
EditorNextWord <C-Right>
EditorNextWordInDifferentHumpsMode
EditorNextWordInDifferentHumpsModeWithSelection
EditorNextWordWithSelection <C-S-Right>
EditorPageDown <Pagedown>
EditorPageDownWithSelection <S-Pagedown>
EditorPageUp <Pageup>
EditorPageUpWithSelection <S-Pageup>
EditorPaste <C-V> <S-Ins>
EditorPasteFromX11 button=2 clickCount=1 modifiers=0
EditorPasteSimple <A-C-S-V>
EditorPopupMenu
EditorPopupMenu.GoTo
EditorPopupMenu.Run
EditorPopupMenu1
EditorPopupMenu1.FindRefactor
EditorPopupMenu2
EditorPopupMenu3
EditorPopupMenuDebug
EditorPopupMenuDebugJava
EditorPreviousWord <C-Left>
EditorPreviousWordInDifferentHumpsMode
EditorPreviousWordInDifferentHumpsModeWithSelection
EditorPreviousWordWithSelection <C-S-Left>
EditorResetFontSize
EditorRight <Right>
EditorRightWithSelection <S-Right>
EditorScrollBottom
EditorScrollDown <C-Down>
EditorScrollDownAndMove
EditorScrollLeft
EditorScrollRight
EditorScrollToCenter <C-M>
EditorScrollTop
EditorScrollUp <C-Up>
EditorScrollUpAndMove
EditorSelectLine
EditorSelectWord <C-W>
EditorSetContentBasedBidiTextDirection
EditorSetLtrBidiTextDirection
EditorSetRtlBidiTextDirection
EditorSplitLine <C-CR>
EditorStartNewLine <S-CR>
EditorStartNewLineBefore <A-C-CR>
EditorSwapSelectionBoundaries
EditorTab <Tab>
EditorTabCompileGroup
EditorTabPopupMenu
EditorTabPopupMenuEx
EditorTabsGroup
EditorTextEnd <C-End>
EditorTextEndWithSelection <C-S-End>
EditorTextStart <C-Home>
EditorTextStartWithSelection <C-S-Home>
EditorToggleActions
EditorToggleCase <C-S-U>
EditorToggleColumnMode <A-S-Ins>
EditorToggleInsertState <Ins>
EditorToggleShowBreadcrumbs
EditorToggleShowGutterIcons
EditorToggleShowIndentLines
EditorToggleShowLineNumbers
EditorToggleShowWhitespaces
EditorToggleStickySelection
EditorToggleUseSoftWraps
EditorToggleUseSoftWrapsInPreview
EditorUnindentSelection <S-Tab>
EditorUnSelectWord <C-S-W>
EditorUp <Up>
EditorUpWithSelection <S-Up>
editRunConfigurations
EditSelectGroup
EditSelectWordGroup
EditSmartGroup
EditSource <F4>
EditSourceInNewWindow <S-F4>
EmacsStyleIndent
Emmet
EmmetNextEditPoint <A-S-]>
EmmetPreview
EmmetPreviousEditPoint <A-S-[>
EmmetUpdateTag
EmojiAndSymbols
EncapsulateFields
EscapeEntities
EvaluateExpression <A-F8>
ExcludeFromStubGeneration
excludeFromSuite
excludeFromTestNGSuite
ExcludeFromValidation
Exit
ExpandAll <C-k> <C-=>
ExpandAllRegions <C-S-k> <C-S-=>
ExpandAllToLevel
ExpandAllToLevel1 <C-S-j> <C-S-j>
ExpandAllToLevel2 <C-S-j> <C-S-j>
ExpandAllToLevel3 <C-S-j> <C-S-j>
ExpandAllToLevel4 <C-S-j> <C-S-j>
ExpandAllToLevel5 <C-S-j> <C-S-j>
ExpandDocComments
ExpandExpandableComponent <S-CR> <C-k> <C-=>
ExpandLiveTemplateByTab <Tab>
ExpandLiveTemplateCustom
ExpandRegion <C-k> <C-=>
ExpandRegionRecursively <A-C-k> <A-C-=>
ExpandToLevel
ExpandToLevel1 <C-j> <C-j>
ExpandToLevel2 <C-j> <C-j>
ExpandToLevel3 <C-j> <C-j>
ExpandToLevel4 <C-j> <C-j>
ExpandToLevel5 <C-j> <C-j>
ExpandTreeNode <k>
ExportImportGroup
ExportSettings
ExportTestResults
ExportThreads
ExportToEclipse
ExportToHTML
ExportToTextFile <A-O>
ExpressionTypeInfo <C-S-P>
ExternalCppProject
ExternalJavaDoc <S-F1>
ExternalSystem.Actions
ExternalSystem.AfterCompile
ExternalSystem.AfterRebuild
ExternalSystem.AfterSync
ExternalSystem.AssignRunConfigurationShortcut
ExternalSystem.AssignShortcut
ExternalSystem.AttachProject
ExternalSystem.BeforeCompile
ExternalSystem.BeforeRebuild
ExternalSystem.BeforeRun
ExternalSystem.BeforeSync
ExternalSystem.CollapseAll <C-m> <C-->
ExternalSystem.DetachProject <Del>
ExternalSystem.EditRunConfiguration
ExternalSystem.ExpandAll <C-k> <C-=>
ExternalSystem.GroupTasks
ExternalSystem.IgnoreProject
ExternalSystem.OpenConfig <F4>
ExternalSystem.OpenTasksActivationManager
ExternalSystem.RefreshAllProjects
ExternalSystem.RefreshProject
ExternalSystem.RemoveRunConfiguration
ExternalSystem.RunTask
ExternalSystem.SelectProjectDataToImport
ExternalSystem.ShowIgnored
ExternalSystem.ShowInheritedTasks
ExternalSystem.ShowSettings
ExternalSystem.ToggleAutoImport
ExternalSystemView.ActionsToolbar
ExternalSystemView.ActionsToolbar.CenterPanel
ExternalSystemView.ActionsToolbar.LeftPanel
ExternalSystemView.ActionsToolbar.RightPanel
ExternalSystemView.BaseProjectMenu
ExternalSystemView.ModuleMenu
ExternalSystemView.ProjectMenu
ExternalSystemView.RunConfigurationMenu
ExternalSystemView.TaskActivationGroup
ExternalSystemView.TaskMenu
ExternalToolsGroup
ExtractClass
ExtractFunction <A-C-M>
ExtractFunctionToScope <A-C-S-M>
ExtractInclude
ExtractInterface
ExtractMethod <A-C-M>
ExtractMethodToolWindow.TreePopup
ExtractModule
ExtractSuperclass
FavoritesViewPopupMenu
FileChooser
FileChooser.Delete <Del>
FileChooser.GotoDesktop <C-D>
FileChooser.GotoHome <C-1>
FileChooser.GotoJDK
FileChooser.GotoModule <C-3>
FileChooser.GotoProject <C-2>
FileChooser.NewFile
FileChooser.NewFolder <A-Ins> <C-N>
FileChooser.Refresh <A-C-Y>
FileChooser.ShowHiddens
FileChooser.TogglePathShowing <C-P>
FileChooserToolbar
FileHistory.AnnotateRevision
FileHistory.KeymapGroup
FileMainSettingsGroup
FileMenu
FileOpenGroup
FileOtherSettingsGroup
FileSettingsGroup
FileStructurePopup <C-F12>
FillParagraph
Find <C-F> <A-F3>
FindImplicitNothingAction
FindInPath <C-S-F>
FindMenuGroup
FindModal
FindNext <F3> <C-L>
FindPrevious <S-F3> <C-S-L>
FindUsages <A-F7>
FindUsagesInFile <C-F7>
FindWordAtCaret <C-F3>
FixDocComment
FoldingGroup
ForceRunToCursor <A-C-F9>
ForceStepInto <A-S-F7>
ForceStepOver <A-S-F8>
Forward <A-C-Right> button=5 clickCount=1 modifiers=0
FullyExpandTreeNode <j>
Gant.NewScript
Generate <A-Ins>
GenerateAntBuild
GenerateConstructor
GenerateCopyright
GenerateCoverageReport
GenerateCreateUI
GenerateDataMethod
GenerateDTD
GenerateEquals
GenerateExternalization
GenerateGetter
GenerateGetterAndSetter
GenerateGroup
GenerateJavadoc
GenerateModuleDescriptors
GeneratePattern
GenerateSetter
GenerateSetUpMethod
GenerateSuperMethodCall
GenerateTearDownMethod
GenerateTestMethod
GenerateXmlTag
Generify
Git.Add <A-C-A>
Git.Branches
Git.BranchOperationGroup
Git.CheckoutRevision
Git.Clone
Git.Commit.And.Push.Executor <A-C-K>
Git.CompareWithBranch
Git.Configure.Remotes
Git.ContextMenu
Git.CreateNewBranch
Git.CreateNewTag
Git.Fetch
Git.FileHistory.ContextMenu
Git.Init
Git.Interactive.Rebase
Git.Log
Git.Log.ContextMenu
Git.Log.DeepCompare
Git.Log.Toolbar
Git.LogContextMenu
Git.Menu
Git.Merge
Git.Pull
Git.Rebase
Git.Rebase.Abort
Git.Rebase.Continue
Git.Rebase.Skip
Git.RepositoryContextMenu
Git.Reset
Git.Reset.In.Log
Git.ResolveConflicts
Git.Revert.In.Log
Git.Reword.Commit <F2> <S-F6>
Git.SelectInGitLog
Git.Stash
Git.Tag
Git.Uncommit
Git.Unstash
GitFileActions
Github.Create.Gist
Github.Create.Pull.Request
Github.Open.In.Browser
Github.Rebase
Github.Share
GitRepositoryActions
GlobalSettings
GotoAction <C-S-A>
GotoBookmark0 <C-0>
GotoBookmark1 <C-1>
GotoBookmark2 <C-2>
GotoBookmark3 <C-3>
GotoBookmark4 <C-4>
GotoBookmark5 <C-5>
GotoBookmark6 <C-6>
GotoBookmark7 <C-7>
GotoBookmark8 <C-8>
GotoBookmark9 <C-9>
GotoChangedFile <C-N>
GoToChangeMarkerGroup
GotoClass <C-N>
GoToCodeGroup
GotoCustomRegion <A-C-.>
GotoDeclaration <C-B> button=1 clickCount=1 modifiers=128 button=2 clickCount=1 modifiers=0
GoToEditPointGroup
GoToErrorGroup
GotoFile <C-S-N>
GotoImplementation <A-C-B> button=1 clickCount=1 modifiers=640
GotoLine <C-G>
GoToLinkTarget
GoToMenu
GoToMenuEx
GotoNextBookmark
GotoNextElementUnderCaretUsage button=142 clickCount=1 modifiers=512
GotoNextError <F2>
GotoNextIncompletePropertyAction <F2>
GotoPrevElementUnderCaretUsage button=143 clickCount=1 modifiers=512
GotoPreviousBookmark
GotoPreviousError <S-F2>
GotoRelated <A-C-Home>
GotoSymbol <A-C-S-N>
GoToTargetEx
GotoTypeDeclaration <C-S-B> button=1 clickCount=1 modifiers=192
radleProjectStructureActions
Griffon.UpdateDependencies
roovyGenerateGroup1
Hg.Commit.And.Push.Executor <A-C-K>
Hg.Init
Hg.Log.ContextMenu
Hg.Mq
Hg.MQ.Unapplied
ideActiveWindow <S-Esc>
HideAllWindows <C-S-F12>
HideCoverage
HideSideWindows
HierarchyGroup
HighlightingBenchmarkAction
HighlightUsagesInFile <C-S-F7>
HippieBackwardCompletion <A-S-/>
HippieCompletion <A-/>
Hotswap
Hydra.EnableSettings
I18nize
IDEACoverageMenu
IdeScriptingConsole
IgnoreChoicesGroup
Images.ConvertSvgToPng
Images.EditExternally <A-C-F4>
Images.Editor.ActualSize <C-o> <C-/>
Images.Editor.FitZoomToWindow
Images.Editor.ToggleGrid <C-Þ>
Images.Editor.ZoomIn <C-k> <C-=>
Images.Editor.ZoomOut <C-m> <C-->
Images.EditorPopupMenu
Images.EditorToolbar
Images.SetBackgroundImage
Images.ShowThumbnails <C-S-T>
Images.Thumbnails.EnterAction <CR>
Images.Thumbnails.Hide <C-F4>
Images.Thumbnails.ToggleFileName
Images.Thumbnails.ToggleFileSize
Images.Thumbnails.ToggleRecursive <A-j>
Images.Thumbnails.ToggleTagsPanelName
Images.Thumbnails.UpFolder <BS>
Images.ThumbnailsPopupMenu
Images.ThumbnailsToolbar
Images.ToggleTransparencyChessboard
ImplementMethods <C-I>
ImportModule
ImportModuleFromImlFile
ImportProject
ImportSettings
ImportTests
IncludeModuleForFile
IncomingChanges.Refresh
IncomingChangesToolbar
IncrementalSearch
IncrementWindowHeight <C-S-Down>
IncrementWindowWidth <C-S-Right>
InferAnnotations
InferNullity
InheritanceToDelegation
Inline <A-C-N>
InsertLiveTemplate <C-J>
InspectCode
InspectCodeGroup
InspectionToolWindow.TreePopup
IntegrateChangeSetAction
IntegrateFiles
IntelliJ.HelpTopics
IntroduceActionsGroup
IntroduceConstant <A-C-C>
IntroduceField <A-C-F>
IntroduceFunctionalParameter <A-C-S-P>
IntroduceFunctionalVariable
IntroduceParameter <A-C-P>
IntroduceParameterObject
IntroduceProperty <A-C-F>
IntroduceTypeAlias <A-C-S-A>
IntroduceTypeParameter
IntroduceVariable <A-C-V>
InvalidateCaches
InvertBoolean
JavaCompileGroup
JavaDebuggerActions
JavaGenerateGroup1
JavaGenerateGroup2
JavaMethodHierarchyPopupMenu
JShell.Console
JumpToColorsAndFonts
JumpToLastChange <C-S-BS>
JumpToLastWindow <F12>
JumpToNextChange
angCodeInsightActions
LanguageSpecificFoldingGroup
LayoutEditor.AddSampleData
learn.next.lesson <A-S-Right>
learn.open.chooseLang
learn.open.lesson
Learn.WelcomeScreen.StartLearn
LegacyNewAndroidComponent
Library.Properties
LibraryProperties
LoadUnloadModules
LocalCompletionBenchmarkAction
LocalHistory
LocalHistory.PutLabel
LocalHistory.ShowHistory
LocalHistory.ShowSelectionHistory
Log.FileHistory.KeymapGroup
Log.KeymapGroup
LogDebugConfigure
LombokActionGroup
LookupActions
Macros
MacrosGroup
MainMenu
MaintenanceAction <A-C-S-/>
MaintenanceGroup
MainToolBar
MainToolBarSettings
MakeAllJarsAction
MakeGradleModule
MakeGradleProject <C-F9>
MakeJarAction
MakeModule
MakeStatic
ManageProjectTemplatesAction
ManageRecentProjects
MarkAsContentRoot
MarkAsOriginalTypeAction
MarkAsPlainTextAction
MarkExcludeRoot
MarkFileAs
MarkGeneratedSourceRoot
MarkGeneratedSourceRootGroup
MarkNotificationsAsRead
MarkRootGroup
MarkSourceRootGroup
Maven.AddFileAsMavenProject
Maven.AddManagedFiles
Maven.AfterCompile
Maven.AfterRebuild
Maven.AlwaysShowArtifactId
Maven.AssignShortcut
Maven.BaseProjectMenu
Maven.BeforeCompile
Maven.BeforeRebuild
Maven.BeforeRun
Maven.BuildMenu
Maven.CollapseAll <C-m> <C-->
Maven.DependencyMenu
Maven.DownloadAllDocs
Maven.DownloadAllGroup
Maven.DownloadAllGroupPopup
Maven.DownloadAllSources
Maven.DownloadAllSourcesAndDocs
Maven.DownloadSelectedDocs
Maven.DownloadSelectedSources
Maven.DownloadSelectedSourcesAndDocs
Maven.EditRunConfiguration
Maven.ExecuteGoal
Maven.ExpandAll <C-k> <C-=>
Maven.GenerateGroup
Maven.GlobalProjectMenu
Maven.GroupProjects
Maven.IgnoreProjects
Maven.NavigatorActionsToolbar
Maven.NavigatorProjectMenu
Maven.OpenProfilesXml
Maven.OpenSettingsXml
Maven.RefactoringGroup
Maven.Reimport
Maven.ReimportProject
Maven.RemoveManagedFiles
Maven.RemoveRunConfiguration
Maven.RunBuild
Maven.RunConfigurationMenu
Maven.ShowBasicPhasesOnly
Maven.ShowEffectivePom
Maven.ShowIgnored