-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintellij_actions.txt
1995 lines (1995 loc) · 106 KB
/
intellij_actions.txt
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 list by ::actionlist
================================================================================
--- Actions ---
$Copy <C-C> <C-Ins>
$Cut <C-X> <S-Del>
$Delete <Del>
$LRU
$Paste <C-V> <S-Ins>
$Redo <A-S-BS>
$SearchWeb
$SelectAll <C-A>
$Undo <C-Z> <A-BS>
About
Actions.ActionsPlugin.GenerateToString
ActivateAndroidProfilerToolWindow
ActivateBuildVariantsToolWindow
ActivateCaptureAnalysisToolWindow
ActivateCapturesToolWindow
ActivateCaptureToolToolWindow
ActivateDesignerToolWindow
ActivateDeviceFileExplorerToolWindow
ActivateEventLogToolWindow
ActivateFavoritesToolWindow <A-2>
ActivateGradleConsoleToolWindow
ActivateGradleToolWindow
ActivateImageLayersToolWindow
ActivateLogcatToolWindow <A-D>
ActivateMessagesToolWindow <A-0>
ActivateMongoExplorerToolWindow
ActivateNavBar
ActivatePalette ToolWindow
ActivateProjectToolWindow <A-1>
ActivateStructureToolWindow <A-7>
ActivateTerminalToolWindow <A-F12> <A-T>
ActivateThemePreviewToolWindow
ActivateTODOToolWindow
ActivateVersionControlToolWindow <A-9> <A-S-9>
ActiveToolwindowGroup
AddAllToFavorites
AddFrameworkSupport
AddGradleDslPluginAction
AddInjectionsAction <C-S-B>
AddNewFavoritesList
AddNewPropertyFile
AddNewTabToTheEndMode
AddOptionDialogActionGroup
AddSnapshotLocation
AddToFavorites
AddToFavoritesPopup <A-S-F>
AddToISuite
AddToTestNGSuite
AlienCommitChangesDialog.AdditionalActions
AnalyzeActions
AnalyzeJavaMenu
AnalyzeMenu
Android Profiler
Android.AnalyzeApk
Android.BuildApk
Android.ChooseProfileConfiguration
Android.ConvertToNinePatch
Android.CreateResourceDirectory
Android.CreateResourcesActionGroup
Android.CreateSampleDataDirectory
Android.DeviceExplorer.ActionsToolbar
Android.DeviceExplorer.GotoDatabaseFolder
Android.DeviceExplorer.GotoSdcardFolder
Android.DeviceExplorer.GotoSharedPrefsFolder
Android.DeviceExplorer.Help
Android.EnableDdms
Android.ExportProjectZip
Android.GenerateSignedApk
Android.GenerateSourcesAction
Android.HotswapChanges <C-F10>
Android.InstantRunFeedback
Android.LinkExternalCppProject
Android.MainToolBarActionGroup
Android.MainToolBarSdkGroup
Android.NavBarToolBar
Android.OpenStringResourceEditor
Android.RestartActivity
Android.RunAndroidAvdManager
Android.RunAndroidSdkManager
Android.RunDdms
Android.RunLayoutInspector
Android.ShowLicenses
Android.ShowThemeEditor
Android.SyncProject
Android.TraceViewSearch <C-F> <A-F3>
AndroidAddRTLSupport
androidAddToISuite
AndroidConnectDebuggerAction
androidExcludeFromSuite
AndroidExtractAsIncludeAction
AndroidExtractStyleAction
AndroidFindStyleApplicationsAction
AndroidInlineIncludeAction
AndroidInlineStyleReferenceAction
AndroidModularizeAction
AndroidToolbarMakeGroup
AndroidToolsGroup
AndroidUnusedResourceAction
Annotate
AnnotateDiffViewer
AnonymousToInner
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
CacheResetOnProcessCanceledToggleAction
CallHierarchy
CallHierarchy.BaseOnThisType
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.Commit
ChangesView.CreatePatch
ChangesView.CreatePatchFromChanges
ChangesView.DeleteUnversioned
ChangesView.DeleteUnversioned.From.Dialog
ChangesView.Diff <C-D>
ChangesView.Edit
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
ChangesView.UnshelveSilently <A-C-U>
ChangesViewPopupMenu
ChangesViewToolbar
ChangeTemplateDataLanguage
ChangeTypeSignature <C-S-F6>
ChangeView
CheckComponentsUsageSearchAction
CheckForUpdate
CheckinFiles
CheckinProject
CheckStatusForFiles
ChooseDebugConfiguration <A-S-F9>
ChooseNextSubsequentPropertyValueEditorAction <A-Down>
ChoosePrevSubsequentPropertyValueEditorAction <A-Up>
ChooseRunConfiguration <A-S-F10>
CIDR.Debugger.AddWatchPoint
CIDR.Debugger.CopyAddress <C-S-C>
CIDR.Debugger.DisableFilteringValues
CIDR.Debugger.DisableValueRenderers
CIDR.Lang.Cpp.GenerateConstructor
CIDR.Lang.Cpp.GenerateDefinitions <C-S-D>
CIDR.Lang.Cpp.GenerateDefinitionsGroup
CIDR.Lang.Cpp.GenerateDestructor
CIDR.Lang.Cpp.GenerateEqualityOperators
CIDR.Lang.Cpp.GenerateFixtureSetUp
CIDR.Lang.Cpp.GenerateFixtureTearDown
CIDR.Lang.Cpp.GenerateGetter
CIDR.Lang.Cpp.GenerateGetterAndSetter
CIDR.Lang.Cpp.GenerateGroup
CIDR.Lang.Cpp.GenerateRelationalOperators
CIDR.Lang.Cpp.GenerateSetter
CIDR.Lang.Cpp.GenerateStreamOutputOperator
CIDR.Lang.Cpp.GenerateTest
CIDR.Lang.Cpp.GenerateTestFixture
CIDR.Lang.Cpp.NewClass
CIDR.Lang.ImportsHierarchy <A-S-H>
CIDR.Lang.ImportsHierarchyMenu
CIDR.Lang.IntroduceConstant
CIDR.Lang.IntroduceDefine <A-C-D>
CIDR.Lang.IntroduceGroup
CIDR.Lang.IntroduceParameter <A-C-P>
CIDR.Lang.IntroduceTypedef <A-C-K>
CIDR.Lang.IntroduceVariable <A-C-V>
CIDR.Lang.NewGroup
CIDR.Lang.ObjC.ConvertGroup
CIDR.Lang.ObjC.ConvertToBlock
CIDR.Lang.ObjC.ConvertToFunction
CIDR.Lang.ObjC.ConvertToIvar
CIDR.Lang.ObjC.ConvertToMethod
CIDR.Lang.ObjC.ConvertToProperty
CIDR.Lang.ObjC.DeclareGroup
CIDR.Lang.ObjC.DeclareMembers
CIDR.Lang.ObjC.ExtractBlock
CIDR.Lang.ObjC.ExtractCategory
CIDR.Lang.ObjC.ExtractClassMenu
CIDR.Lang.ObjC.ExtractProtocol
CIDR.Lang.ObjC.ExtractSubclass
CIDR.Lang.ObjC.GenerateCopy
CIDR.Lang.ObjC.GenerateDescription
CIDR.Lang.ObjC.GenerateEncode
CIDR.Lang.ObjC.GenerateGroup
CIDR.Lang.ObjC.GenerateInitWith
CIDR.Lang.ObjC.GenerateIsEqualAndHash
CIDR.Lang.ObjC.GenerateMethodsGroup
CIDR.Lang.ObjC.GenerateSharedInstance
CIDR.Lang.ObjC.IntroduceIvar <A-C-R>
CIDR.Lang.ObjC.IntroduceProperty <A-C-E>
CIDR.Lang.ObjC.RefactoringMenu
CIDR.Lang.ObjC.Synthesize
CIDR.ShowCompilerInfo
ClassNameCompletion <A-C- >
CleanGradleProject
CloseActiveTab <C-S-F4>
CloseAllEditors
CloseAllEditorsButActive
CloseAllNotifications
CloseAllUnmodifiedEditors
CloseAllUnpinnedEditors
CloseContent <C-F4> <A-C-W>
CloseEditor
CloseEditorsGroup
CloseFirstNotification
CloseProject
Cluestick.SearchMenu <A-F8>
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
CollapseRegion <C-m> <C-->
CollapseRegionRecursively <A-C-m> <A-C-->
CollapseSelection <C-.>
CollapseTreeNode <m>
CollectSettings
com.github.shiraji.permissionsdispatcherplugin.actions.AddDelegationMethod
com.github.shiraji.permissionsdispatcherplugin.actions.AddOnShowRationaleMethod
com.github.shiraji.permissionsdispatcherplugin.actions.AddPMDependencies
com.github.shiraji.permissionsdispatcherplugin.actions.GeneratePMCodeAction
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
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>
ConvertSchemaAction
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
CPP.NewCppFile
CPP.NewGroup.After
CPP.NewHeaderFile
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
de.mprengemann.intellij.plugin.androidicons.actions.AndroidBatchImportAction
de.mprengemann.intellij.plugin.androidicons.actions.IconsAction
de.mprengemann.intellij.plugin.androidicons.actions.VectorsAction
de.mprengemann.intellij.plugin.androidicons.AndroidMultiDrawableImporter
de.mprengemann.intellij.plugin.androidicons.group
Debug <S-F9>
DebugBuildProcess
DebugClass
Debugger.AddSteppingFilter
Debugger.AddToWatch
Debugger.AdjustArrayRange
Debugger.AutoRenderer
Debugger.CreateRenderer
Debugger.CustomizeContextView
Debugger.CustomizeThreadsView
Debugger.EditCustomField <F2>
Debugger.EditFrameSource <F4> <A-S>
Debugger.EditNodeSource
Debugger.EditTypeSource <S-F4>
Debugger.EvaluateInConsole
Debugger.EvaluationDialogPopup
Debugger.FocusOnBreakpoint
Debugger.ForceEarlyReturn
Debugger.FramePanelPopup
Debugger.FreezeThread
Debugger.InspectPanelPopup
Debugger.InterruptThread
Debugger.MarkObject <F11>
Debugger.NewCustomField
Debugger.PopFrame
Debugger.RemoveCustomField <Del>
Debugger.Representation
Debugger.ResumeThread
Debugger.ShowLibraryFrames
Debugger.ShowReferring
Debugger.ShowRelatedStack
Debugger.ShowTypes
Debugger.ThreadsPanelPopup
Debugger.Tree.AddToWatches
Debugger.Tree.EvaluateInConsole
Debugger.ViewAsGroup
Debugger.ViewText
Debugger.WatchesPanelPopup
DebugMainMenu
DecompileKotlinToJava
DecrementWindowHeight <C-S-Up>
DecrementWindowWidth <C-S-Left>
DelegateMethods
DeveloperServices.ConnectionAssistant
DeveloperServices.Firebase
DeveloperServices.UrlAssistant
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.EditorPopupMenu
Diff.FocusOppositePane <C-Tab>
Diff.FocusOppositePaneAndScroll <C-S-Tab>
Diff.HighlightMode
Diff.IgnoreLeftSide
Diff.IgnoreRightSide
Diff.IgnoreWhitespace
Diff.KeymapGroup
Diff.NextChange <A-Right> <A-C-L>
Diff.NextConflict
Diff.PrevChange <A-Left> <A-C-H>
Diff.PreviousConflict
Diff.ResolveConflict
Diff.SelectedChange
Diff.ShowDiff <C-D>
Diff.ShowInExternalTool
Diff.ShowSettingsPopup <C-S-D>
Diff.UpdatedFiles <C-D>
Diff.ViewerPopupMenu
Diff.ViewerToolbar
DiffPanel.Toolbar
DirDiffMenu
DirDiffMenu.EnableEqual
DirDiffMenu.EnableLeft
DirDiffMenu.EnableNotEqual
DirDiffMenu.EnableRight
DirDiffMenu.SetCopyToLeft
DirDiffMenu.SetCopyToRight
DirDiffMenu.SetDefault
DirDiffMenu.SetDelete
DirDiffMenu.SetNoOperation
DirDiffMenu.WarnOnDeletion
DisableInspection
DissociateResourceBundleAction
Document2XSD
DomCollectionControl
DomCollectionControl.Add <Ins>
DomCollectionControl.Edit <F4> <A-S>
DomCollectionControl.Remove <Del>
DomElementsTreeView.AddElement <Ins>
DomElementsTreeView.AddElementGroup
DomElementsTreeView.DeleteElement <Del>
DomElementsTreeView.GotoDomElementDeclarationAction <F4> <A-S>
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
EditorChooseLookupItem <CR>
EditorChooseLookupItemCompleteStatement <C-S-CR> <A-C-M>
EditorChooseLookupItemDot <C-.>
EditorChooseLookupItemReplace <Tab>
EditorCloneCaretAbove
EditorCloneCaretBelow
EditorCodeBlockEnd <C-]>
EditorCodeBlockEndWithSelection <C-S-]>
EditorCodeBlockStart <C-[>
EditorCodeBlockStartWithSelection <C-S-[>
EditorCompleteStatement <C-S-CR> <A-C-M>
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> <C-N>
EditorDownWithSelection <S-Down>
EditorDuplicate <C-D>
EditorDuplicateLines
EditorEnter <CR>
EditorEscape <Esc>
EditorForwardParagraph
EditorGutterCloudDebuggerMenu
EditorGutterPopupMenu
EditorGutterToggleGlobalIndentLines
EditorGutterToggleGlobalLineNumbers
EditorGutterToggleGlobalSoftWraps
EditorGutterVcsPopupMenu
EditorHungryBackSpace
EditorIncreaseFontSize
EditorIndentLineOrSelection
EditorIndentSelection <Tab>
EditorJoinLines <C-S-J>
EditorKillRegion
EditorKillRingSave
EditorKillToWordEnd
EditorKillToWordStart
EditorLangPopupMenu
EditorLeft <Left> <C-H>
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> <C-L>
EditorRightWithSelection <S-Right>
EditorScrollBottom
EditorScrollDown <C-Down>
EditorScrollDownAndMove
EditorScrollLeft
EditorScrollRight
EditorScrollToCenter
EditorScrollTop
EditorScrollUp <C-Up>
EditorScrollUpAndMove
EditorSelectLine
EditorSelectWord
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>
EditorToggleShowGutterIcons
EditorToggleShowIndentLines
EditorToggleShowLineNumbers
EditorToggleShowWhitespaces
EditorToggleStickySelection
EditorToggleUseSoftWraps
EditorToggleUseSoftWrapsInPreview
EditorUnindentSelection <S-Tab>
EditorUnSelectWord <C-S-W>
EditorUp <Up> <C-P>
EditorUpWithSelection <S-Up>
editRunConfigurations
EditSelectGroup
EditSelectWordGroup
EditSmartGroup
EditSource <F4> <A-S>
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
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
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> <A-S>
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
ExtractFunctionToScope <A-C-S-M>
ExtractInclude
ExtractInterface
ExtractMethod
ExtractModule
ExtractSuperclass
FavoritesViewPopupMenu
FileChooser
FileChooser.Delete <Del>
FileChooser.GotoDesktop <C-D>
FileChooser.GotoHome <C-1>
FileChooser.GotoJDK <A-;>
FileChooser.GotoModule <C-3>
FileChooser.GotoProject <C-2>
FileChooser.NewFile
FileChooser.NewFolder <A-Ins>
FileChooser.Refresh <A-C-Y>
FileChooser.ShowHiddens
FileChooser.TogglePathShowing
FileChooserToolbar
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>
FindPrevious <S-F3> <C-S-L>
FindUsages <A-F7>
FindUsagesInFile <C-F7>
FindWordAtCaret <C-F3>
FixDocComment <C-S-Z>
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
GenerateGetter
GenerateGetterAndSetter
GenerateGroup
GenerateJavadoc
GeneratePattern
GenerateSetter
GenerateSetUpMethod
GenerateSuperMethodCall
GenerateTearDownMethod
GenerateTestMethod
GenerateXmlTag
Generify
Git.Add <A-C-A>
Git.Branches
Git.BranchOperationGroup
Git.CheckoutRevision
Git.Clone
Git.CompareWithBranch
Git.Configure.Remotes
Git.ContextMenu
Git.CreateNewBranch
Git.CreateNewTag
Git.Fetch
Git.FileHistory.ContextMenu
Git.Init
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.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
GoogleCloudTesting.RoboScriptRecorder
GoogleCloudTesting.TestRecorder
GoogleCloudTools.BreakpointWatchContextMenu
GoogleCloudTools.DeployToAppEngine
GoogleCloudTools.SampleImport
GoogleCloudTools.UploadSourceToGCP
GoogleLogin.LoginService
GotoAction <C-S-A> <A-C-F>
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
GoToChangeMarkerGroup
GotoClass
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
GotoNextError <F2>
GotoNextIncompletePropertyAction <F2>
GotoPreviousBookmark
GotoPreviousError <S-F2>
GotoRelated <A-C-Home>
GotoSuperMethod <C-U>
GotoSymbol <A-C-S-N>
GoToTargetEx <A-C-N>
GotoTest <C-S-T>
GotoTypeDeclaration <C-S-B> button=1 clickCount=1 modifiers=192
Gradle.ExecuteTask
Gradle.GenerateGroup
Gradle.OpenProjectCompositeConfiguration
Gradle.ToggleOfflineAction
GradleProjectStructureActions
Griffon.UpdateDependencies
Groovy.CheckResources
Groovy.CheckResources.Make
Groovy.CheckResources.Rebuild
Groovy.Console
Groovy.Doc.Generating
Groovy.Dynamic.CollapseAll
Groovy.Dynamic.ExpandAll
Groovy.Dynamic.Remove
Groovy.Dynamic.Toolbar
Groovy.NewClass
Groovy.NewScript
groovy.scripting.shell
Groovy.Shell
Groovy.Shell.Execute <C-CR>
GroovyGenerateGroup1
Gsonformat
Help.JetBrainsTV
Help.KeymapReference
HelpMenu
HelpTopics
Hg.Init
Hg.Log.ContextMenu
Hg.Mq
Hg.MQ.Unapplied
hg4idea.branches
hg4idea.CompareWithBranch
hg4idea.CreateNewBranch
hg4idea.CreateNewTag
hg4idea.file.menu
hg4idea.Graft.Continue
hg4idea.merge.files
hg4idea.MergeWithRevision
hg4idea.mq.ShowUnAppliedPatches
hg4idea.pull
hg4idea.QDelete <Del>
hg4idea.QFinish
hg4idea.QFold <A-S-D>
hg4idea.QGoto
hg4idea.QGotoFromPatches <A-S-G>
hg4idea.QImport
hg4idea.QPushAction <A-S-P>
hg4idea.QRefresh <C-F5>
hg4idea.QRename
hg4idea.Rebase.Abort
hg4idea.Rebase.Continue
hg4idea.resolve.mark
hg4idea.run.conflict.resolver
hg4idea.tag
hg4idea.updateTo
hg4idea.UpdateToRevision
HideActiveWindow <S-Esc>
HideAllWindows <C-S-F12>
HideCoverage
HideSideWindows
HierarchyGroup
HighlightingBenchmarkAction
HighlightUsagesInFile <C-S-F7>
HippieBackwardCompletion <A-S-/>
HippieCompletion <A-/>
I18nize
IDEACoverageMenu
IdeScriptingConsole
IgnoreChoicesGroup
Images.EditExternally <A-C-F4>
Images.Editor.ActualSize <C-o> <C-/>
Images.Editor.ToggleGrid <C-Þ>
Images.Editor.ZoomIn <C-k> <C-=>
Images.Editor.ZoomOut <C-m> <C-->
Images.EditorPopupMenu
Images.EditorToolbar
Images.SetBackgroundImage <A-P>
Images.ShowThumbnails <C-S-T>
Images.Thumbnails.EnterAction <CR>
Images.Thumbnails.Hide <C-F4> <A-C-W>
Images.Thumbnails.ToggleFileName
Images.Thumbnails.ToggleFileSize
Images.Thumbnails.ToggleRecursive <A-j>
Images.Thumbnails.UpFolder <BS>
Images.ThumbnailsPopupMenu
Images.ThumbnailsToolbar
Images.ToggleTransparencyChessboard
ImplementMethods <C-I>
ImportApkAction
ImportModule
ImportModuleFromImlFile
ImportProject
ImportSettings
ImportTests
IncludeModuleForFile
IncomingChanges.Refresh
IncomingChangesToolbar
IncrementalSearch
IncrementWindowHeight <C-S-Down>
IncrementWindowWidth <C-S-Right>
InferAnnotations
InferNullity
InheritanceToDelegation
Inline
InsertLiveTemplate <C-J>
InspectCode
InspectCodeGroup
InspectionToolWindow.TreePopup
IntegrateChangeSetAction
IntegrateFiles
IntelliJ.HelpTopics