-
Notifications
You must be signed in to change notification settings - Fork 0
/
ideavim-actionlist.txt
3181 lines (3180 loc) · 104 KB
/
ideavim-actionlist.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
IdeaVim version 2.11.0
--- 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>
<anonymous-group-0>
<anonymous-group-1>
About
Actions.ActionsPlugin.GenerateToString
ActivateAndroidProfilerToolWindow
ActivateAppInspectionToolWindow
ActivateAppLinksAssistantToolWindow
ActivateAppQualityInsightsToolWindow
ActivateBookmarksToolWindow <A-2>
ActivateBuildToolWindow
ActivateBuildVariantsToolWindow
ActivateclangdToolWindow
ActivateCommitToolWindow <A-0>
ActivateCoverageToolWindow
ActivateDebugToolWindow <A-5>
ActivateDeviceExplorerToolWindow
ActivateDeviceManager2ToolWindow
ActivateDFAToolWindow
ActivateFindToolWindow <A-3>
ActivateGradleToolWindow
ActivateHierarchyToolWindow
ActivateLayoutValidationToolWindow
ActivateLogcatToolWindow
ActivateMeetNewUIToolWindow
ActivateMergeRequestsToolWindow
ActivateNotificationsToolWindow
ActivateProblemsViewToolWindow <A-6>
ActivateProjectToolWindow <A-1>
ActivatePullRequestsToolWindow
ActivateResourcesExplorerToolWindow
ActivateRunningDevicesToolWindow
ActivateRunToolWindow <A-4>
ActivateServicesToolWindow <A-8>
ActivateStructureToolWindow <A-7>
ActivateStudioBotToolWindow
ActivateTerminalToolWindow <A-F12>
ActivateTODOToolWindow
ActivateToolWindowActions
ActivateVersionControlToolWindow <A-9>
ActiveToolwindowGroup
ActivityView.CreatePatch
ActivityView.Popup
ActivityView.Revert
ActivityView.Toolbar
AddAnotherBookmark
AddBom
AddBom.Group
AddBreakpoint
AddConditionalBreakpoint
AddFrameworkSupport
AddGradleDslPluginAction
AdditionalRunningOptionsGroup
AdditionalRunningOptionsGroupMain
AddNewPropertyFile
AddToISuite
addToTempGroup
AddToTestNGSuite
Adtui.ZoomActions
Adtui.ZoomInAction <C-k> <C-=>
Adtui.ZoomOutAction <C--> <C-m>
Adtui.ZoomResetAction
Adtui.ZoomToActualAction <C-.> <C-K0>
Adtui.ZoomToFitAction <C-/> <C-o>
AgpUpgrade
AllRunConfigurationsToggle
AnalyzeActions
AnalyzeActionsPopup
AnalyzeJavaMenu
AnalyzeMenu
AnalyzePlatformMenu
AnalyzePluginStartupPerformance
AnalyzeStacktraceToolbar
Android Profiler
Android Profiler Group
Android.AdbDevicePairing
Android.AddCppToModule
Android.AnalyzeApk
Android.BuildApk
Android.BuildApkOrBundle
Android.BuildBundle
Android.ChooseProfileConfiguration
Android.ConvertToNinePatch
Android.CreateResourceDirectory
Android.CreateResourcesActionGroup
Android.CreateSampleDataDirectory
android.deploy.ApplyChanges <C-F10>
android.deploy.CodeSwap <A-C-F10>
android.deploy.DebugWithoutBuild
android.deploy.RunWithoutBuild
Android.DeployActions
Android.Designer.AddAction <A>
Android.Designer.AddDeepLink <D>
Android.Designer.AssignStartDestination <H>
Android.Designer.AutoArrange <C-L>
Android.Designer.CommonActions
Android.Designer.CommonActions.ForceCompileAndRefreshActionForNotification <C-S-F5>
Android.Designer.ComposeIssueNotificationAction <E>
Android.Designer.ForceRefreshPreview <R>
Android.Designer.IssueNotificationAction <E>
Android.Designer.IssuePanel.CopyIssueDescription <C-C> <C-Ins>
Android.Designer.IssuePanel.QuickFixes <A-CR>
Android.Designer.IssuePanel.SeverityFilter
Android.Designer.IssuePanel.ToggleIssueDetailAction
Android.Designer.IssuePanel.ToolbarActions
Android.Designer.IssuePanel.TreePopup
Android.Designer.LayoutEditorActions
Android.Designer.NavEditorActions
Android.Designer.NextDevice <D>
Android.Designer.PreviousDevice <S-D>
Android.Designer.ReRunUiCheckModeAction
Android.Designer.SwitchDesignMode <B>
Android.Designer.SwitchLayoutQualifier
Android.Designer.ToggleDeviceNightMode <N>
Android.Designer.ToggleDeviceOrientation <O>
Android.Designer.ToolsActions
android.device.back.button <C-S-B>
android.device.home.button <C-S-H>
android.device.liveedit.status
android.device.overview.button <C-S-W>
Android.Device.Picker.Help
android.device.postures
android.device.power.and.volume.up.button <A-S-P>
android.device.power.button <C-S-P>
android.device.reservation.end
android.device.reservation.extend
android.device.reservation.extend.half.hour
android.device.reservation.extend.quarter.hour
android.device.reservation.extend.status
android.device.rotate.left <C-L>
android.device.rotate.right <C-R>
android.device.screen.record <C-S-V>
android.device.screenshot <C-S-S>
android.device.sleep <C-S-M>
android.device.volume.down.button <C-S-D>
android.device.volume.up.button <C-S-U>
android.device.wear.whs
android.device.wear1.button <C-S-1>
android.device.wear2.button <C-S-2>
Android.DeviceManager
Android.DeviceManager.TypeSpecificActions
Android.DeviceManager2
Android.Diagnostics
Android.DumpResourceTrace
android.emulator.display.mode
android.emulator.display.mode.foldable <A-S-1>
android.emulator.display.mode.phone <A-S-0>
android.emulator.display.mode.tablet <A-S-2>
android.emulator.extended.controls
android.emulator.snapshots
android.emulator.tilt <C-S-T>
android.emulator.virtual.sensors
android.emulator.wear.health.services
Android.ExportProjectZip
Android.GenerateSignedApk
Android.InstantRunActions
Android.LinkExternalCppProject
Android.MainToolBarActionGroup
Android.MainToolbarRight
Android.NavBarToolBar
Android.OpenStringResourceEditor
Android.Profile
Android.ProfilerSelectDevice
Android.ProfilerSelectProcess
Android.ProfileWithCompleteData
Android.ProfileWithLowOverhead
Android.RunAndroidSdkManager
Android.RunLayoutInspector
Android.SelectCallstackSampleTask
Android.SelectHeapDumpTask
Android.SelectLiveViewTask
Android.SelectNativeAllocationsTask
Android.SelectSystemTraceTask
Android.SetProfilingStartingPointToNow
Android.SetProfilingStartingPointToProcessStart
Android.ShowLicenses
Android.StartCallstackSample
Android.StartHeapDump
Android.StartNativeAllocations
Android.StartProfilerTask
Android.StartSystemTrace
Android.StopCpuCapture
Android.StopNativeAllocations
Android.StopProfilerTask
Android.StopProfilingSession
android.streaming.hardware.input
android.streaming.ui.settings
Android.SyncProject <C-S-O>
Android.ToggleResourceTrace
AndroidAddRTLSupport
AndroidConnectDebuggerAction
AndroidDeviceManagerPlaceholder
AndroidExtractAsIncludeAction
AndroidExtractStyleAction
AndroidFindStyleApplicationsAction
AndroidInlineIncludeAction
AndroidInlineStyleReferenceAction
AndroidMigrateBuildConfigFromGradlePropertiesToDsl
AndroidMigrateToNonTransitiveRClassesAction
AndroidMigrateToResourceNamespacesAction
AndroidModularizeAction
AndroidToolbarMakeGroup
AndroidToolsGroup
AndroidToolsGroupExtension
AndroidUnusedResourceAction
AndroidX.BaselineProfile.RunGenerate
Annotate
AnnotateStackTraceAction.show.files.modification.info
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
ArrangementRulesGroup
AssociateWithFileType
AttachProject
AutoIndentLines <A-C-I>
AutoShowProcessWindow
AvailableDevices
Back <A-C-Left> button=4 clickCount=1 modifiers=0
BackgroundTasks
BasicEditorPopupMenu
BlankDiffViewerEditorPopupMenu
BookmarkOpenTabs
BookmarkOpenTabsGroup
Bookmarks
Bookmarks.Goto
Bookmarks.Toggle
Bookmarks.ToolWindow.GearActions
Bookmarks.ToolWindow.PopupMenu
Bookmarks.ToolWindow.TitleActions
BookmarksView.AskBeforeDeletingLists
BookmarksView.AutoscrollFromSource
BookmarksView.AutoscrollToSource
BookmarksView.ChooseType <C-F11>
BookmarksView.Create <A-Ins>
BookmarksView.DefaultGroup
BookmarksView.Delete <Del>
BookmarksView.DeleteType
BookmarksView.GroupLineBookmarks
BookmarksView.MoveDown <A-C-Down>
BookmarksView.MoveUp <A-C-Up>
BookmarksView.OpenInPreviewTab
BookmarksView.Rename <F2>
BookmarksView.RewriteBookmarkType
BookmarksView.ShowPreview
BookmarksView.SortGroupBookmarks
BraceOrQuoteOut <Tab>
BreakpointActionsGroup
Build <C-F9>
BuildArtifact
BuildMenu
ByteCodeDecompiler
CacheRecovery
CallHierarchy <A-C-H>
CallHierarchy.BaseOnThisMethod <A-C-H>
CallHierarchyPopupMenu
CallInlineCompletionAction
CallSaul
ChangeCodeStyleScheme
ChangeColorScheme
ChangeFileEncodingAction
ChangeGradleJdkLocation
ChangeIdeScale
ChangeInspectionProfile
ChangeKeymap
ChangeLaf
ChangeLineSeparators
ChangeProjectColorActionGroup
ChangesBrowser.FiltererGroup
ChangeScheme
ChangeSignature <C-F6>
ChangeSplitOrientation
ChangesView.AddUnversioned <A-C-A>
ChangesView.ApplyPatch
ChangesView.ApplyPatchFromClipboard
ChangesView.Browse
ChangesView.Changelists
ChangesView.CommitToolbar
ChangesView.CreatePatch
ChangesView.CreatePatchFromChanges
ChangesView.CreatePatchToClipboard
ChangesView.Edit
ChangesView.GroupBy
ChangesView.GroupBy.Directory <A-C-P>
ChangesView.GroupBy.Module <A-C-M>
ChangesView.GroupBy.Repository
ChangesView.Move <A-S-M>
ChangesView.NewChangeList
ChangesView.Refresh
ChangesView.RemoveChangeList
ChangesView.RemoveDeleted
ChangesView.Rename <F2> <S-F6>
ChangesView.Revert <A-C-Z>
ChangesView.RevertFiles
ChangesView.SaveToShelve
ChangesView.SetDefault <C- >
ChangesView.Shelve
ChangesView.ShelveSilently <C-S-H>
ChangesView.ShowCommitOptions
ChangesView.SingleClickPreview
ChangesView.ToggleCommitUi <C-K>
ChangesView.UnshelveSilently <A-C-U>
ChangesView.ViewOptions
ChangesViewPopupMenu
ChangesViewToolbar
ChangeTemplateDataLanguage
ChangeToolWindowLayout
ChangeTypeSignature <C-S-F6>
ChangeView
CheckForUpdate
CheckIgnoredAndNotExcludedDirectories
CheckinFiles
CheckinProject <C-K>
CheckStatusForFiles
CheckSuggestedPlugins
CheckVfsSanity
ChooseDebugConfiguration <A-S-F9>
ChooseRunConfiguration <A-S-F10>
ChooseRuntime
CIDR.CreateTestScope
CIDR.DebugDumpBuildingSymbols
CIDR.Debugger.AddWatchPoint
CIDR.Debugger.CopyAddress <C-S-C>
CIDR.Debugger.DetachInferiorOnFork
CIDR.Debugger.DisableFilteringValues
CIDR.Debugger.DisableValueRenderers
CIDR.Debugger.DisassembleFrame <C-D>
CIDR.Debugger.EnableHexFormatting
CIDR.Debugger.FollowChildOnFork
CIDR.Debugger.ForkDebuggingActions.TopToolbar3.Extra
CIDR.Debugger.ForkGroup
CIDR.Debugger.ForkGroup.Popup
CIDR.Debugger.FramePresentation
CIDR.Debugger.FramePresentation.Popup
CIDR.Debugger.Frames.Tree.Popup
CIDR.Debugger.FreezeOtherThreads
CIDR.Debugger.FreezeThread
CIDR.Debugger.FreezeThreadDebuggingActions.TopToolbar3.Extra
CIDR.Debugger.FreezeThreadDebuggingActionsGroup
CIDR.Debugger.FreezeThreadGroup
CIDR.Debugger.FreezeThreadGroup.Popup
CIDR.Debugger.GdbIndexResetCaches
CIDR.Debugger.JumpToDebuggerConsole <C-S-F10>
CIDR.Debugger.JumpToLine
CIDR.Debugger.MemoryDocGutterActionGroup
CIDR.Debugger.MuteVariables
CIDR.Debugger.Registers.Group
CIDR.Debugger.Registers.Group.Wrapper
CIDR.Debugger.RegisterSets.Group
CIDR.Debugger.Settings.FramePresentation.Appender
CIDR.Debugger.ShowFrameFunctionParameterTypes
CIDR.Debugger.ShowFrameFunctionTemplateArguments
CIDR.Debugger.ShowFrameModuleName
CIDR.Debugger.ShowFunctionReturnValue
CIDR.Debugger.ShowInMemoryView <C-CR>
CIDR.Debugger.ShowMemoryViewInEditor
CIDR.Debugger.ShowRegisters
CIDR.Debugger.ShowTypes
CIDR.Debugger.ShowTypeTemplateArguments
CIDR.Debugger.StripAuxiliaryNamespaces
CIDR.Debugger.SugarizeCxxStlTypes
CIDR.Debugger.ToggleMemoryDocAddresses
CIDR.Debugger.UnfreezeAllThreads
CIDR.Debugger.UnfreezeThread
CIDR.Debugger.ValueGroup.DataViewSettings
CIDR.Debugger.ValueGroup.DataViewSettings.Popup
CIDR.Debugger.ValueGroup.DataViewSettings.Popup.Wrapper
CIDR.Debugger.ValueGroup.WatchExpressions
CIDR.Debugger.ViewAsArray
CIDR.Interactive.Cling
CIDR.Interactive.SendIncludesToCling
CIDR.Interactive.SendToCling
CIDR.Interactive.StartClingSession
CIDR.InvalidateTestCache
CIDR.Lang.Cpp.ExtractLambda
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.GenerateGetter
CIDR.Lang.Cpp.GenerateGetterAndSetter
CIDR.Lang.Cpp.GenerateGroup
CIDR.Lang.Cpp.GenerateRelationalOperators
CIDR.Lang.Cpp.GenerateSetter
CIDR.Lang.Cpp.GenerateStreamOutputOperator
CIDR.Lang.Cpp.NewClass
CIDR.Lang.ImportsHierarchy <A-S-H>
CIDR.Lang.ImportsHierarchyMenu
CIDR.Lang.IntroduceConstant <A-C-C>
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-F>
CIDR.Lang.ObjC.IntroduceProperty <A-C-E>
CIDR.Lang.ObjC.RefactoringMenu
CIDR.Lang.ObjC.Synthesize
CIDR.Lang.SwitchHeaderSource <F10>
CIDR.Lang.SwitchHeaderSourceGroup
CIDR.ResumeTestIndexing
CIDR.ShowCompilerInfo
CIDR.ShowTestList
CIDR.SuspendTestIndexing
CIDR.Util.Diagnostics
CidrBuildRunToolbar
ClangdCollectParseStats
ClangdCompleteFileAction
ClangdCrashServer
ClangdDumpStacktraces
ClangdPreprocessAction
ClangdPreprocessAndObfuscateAction
ClangdReportBugAction
ClangdReportIndexerBugAction
ClangdSetMessagesFiltersAction
ClangdXRefAction
ClangdXRefCurrentAction
ClangTidy.ShowInfoAction
ClassNameCompletion <A-C- >
Clazy.ShowInfoAction
Clean
CleanGradleProject
ClearAllNotifications
ClickLink <C-B> button=1 clickCount=1 modifiers=128 button=2 clickCount=1 modifiers=0
CloseActiveTab <C-S-F4>
CloseAllEditors
CloseAllEditorsButActive
CloseAllNotifications
CloseAllProjects
CloseAllReadonly
CloseAllToTheLeft
CloseAllToTheRight
CloseAllUnmodifiedEditors
CloseAllUnpinnedEditors
CloseContent <C-F4>
CloseEditor
CloseEditorsGroup
CloseFirstNotification
CloseGotItTooltip <Esc>
CloseOtherProjects
CloseProject
Code.Review.Editor.Show.Diff
CodeCleanup
CodeCompletion <C- >
CodeCompletionGroup
CodeEditorBaseGroup
CodeEditorViewGroup
CodeFloatingToolbar.GotoNextMenu <Tab>
CodeFloatingToolbar.GotoPrevMenu <S-Tab>
CodeFormatGroup
CodeInsightEditorActions
CodeInspection.OnEditor <A-S-I>
CodeMenu
CodeVision.ShowMore
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>
CollapsiblePanel-toggle < >
CollectZippedLogs
ColoredHeaderAction
com.android.build.attribution.ui.OpenBuildAnalyzerAction
com.android.build.attribution.ui.OpenBuildAnalyzerResultsAction
com.android.tools.idea.actions.HideAndroidBannerAction
com.android.tools.idea.layoutinspector.toggle.layout.inspector.action
com.intellij.openapi.projectRoots.impl.ParseSdkmanrcAction
com.jetbrains.cidr.util.events.impl.ToggleChromeTracingAction
com.mallowigi.idea.actions.accents.MTAbyssAccentAction
com.mallowigi.idea.actions.accents.MTAcidLimeAccentAction
com.mallowigi.idea.actions.accents.MTAmberAccentAction
com.mallowigi.idea.actions.accents.MTAmethystAccentAction
com.mallowigi.idea.actions.accents.MTAquamarineAccentAction
com.mallowigi.idea.actions.accents.MTAtomicPurpleAction
com.mallowigi.idea.actions.accents.MTBreakingBadAccentAction
com.mallowigi.idea.actions.accents.MTBrickAccentAction
com.mallowigi.idea.actions.accents.MTCarbonAccentAction
com.mallowigi.idea.actions.accents.MTCoffeeAccentAction
com.mallowigi.idea.actions.accents.MTCyanAccentAction
com.mallowigi.idea.actions.accents.MTDaisyAccentAction
com.mallowigi.idea.actions.accents.MTDodgerBlueAccentAction
com.mallowigi.idea.actions.accents.MTFuchsiaAccentAction
com.mallowigi.idea.actions.accents.MTGraphiteAccentAction
com.mallowigi.idea.actions.accents.MTIndigoAccentAction
com.mallowigi.idea.actions.accents.MTLavenderAccentAction
com.mallowigi.idea.actions.accents.MTLightAccentAction
com.mallowigi.idea.actions.accents.MTLimeAccentAction
com.mallowigi.idea.actions.accents.MTNeonAccentAction
com.mallowigi.idea.actions.accents.MTOceanicAccentAction
com.mallowigi.idea.actions.accents.MTOrangeAccentAction
com.mallowigi.idea.actions.accents.MTPalenightAccentAction
com.mallowigi.idea.actions.accents.MTPlantAccentAction
com.mallowigi.idea.actions.accents.MTPomegranateAccentAction
com.mallowigi.idea.actions.accents.MTSilverAccentAction
com.mallowigi.idea.actions.accents.MTSkyAccentAction
com.mallowigi.idea.actions.accents.MTSlateAccentAction
com.mallowigi.idea.actions.accents.MTStrawberryAccentAction
com.mallowigi.idea.actions.accents.MTTealAccentAction
com.mallowigi.idea.actions.accents.MTTomatoAccentAction
com.mallowigi.idea.actions.accents.MTTurquoiseAccentAction
com.mallowigi.idea.actions.accents.MTWaterAccentAction
CombinePropertiesFilesAction
CommanderPopupMenu
CommentByBlockComment <C-S-/> <C-S-o>
CommentByLineComment <C-/> <C-o>
CommentGroup
CommittedChanges.Clear
CommittedChanges.Details
CommittedChanges.Filter
CommittedChanges.Refresh
CommittedChanges.Revert
CommittedChangesToolbar
CommitView.GearActions
CommitView.ShowOnDoubleClick
CommitView.ShowOnDoubleClick.EditorPreview
CommitView.ShowOnDoubleClick.Source
CommitView.SwitchToCommitDialog
compare.contents
Compare.LastVersion
Compare.SameVersion
Compare.Selected
Compare.Specified
CompareActions
CompareClipboardWithSelection
CompareFileWithEditor
CompareTwoFiles <C-D>
Compile
CompileDirty <C-F9>
CompileFile
CompileProject
CompilerErrorViewPopupMenu
Compose.Live.Edit.ManualLiveEdit <C-\>
Compose.Live.Edit.Refresh
Compose.Live.Edit.ShowLogcat
compositeResumeGroup
ConfigurationXDebuggerResumeAction
ConfigureEditorTabs
ConfigureKotlinInProject
ConfigureSoftWraps
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
ConsoleView.ShowAsJsonAction
context.clear <A-S-X>
context.load <A-S-L>
context.save <A-S-S>
ContextHelp
ConvertFromWebp
ConvertGroovyToJava
ConvertIndentsGroup
ConvertIndentsToSpaces
ConvertIndentsToTabs
ConvertJavaToKotlin <A-C-S-K>
ConvertJavaToKotlinGroup
ConvertModuleGroupsToQualifiedNames
ConvertSchemaAction
ConvertToCompileStatic
ConvertToInstanceMethod
ConvertToMacLineSeparators
ConvertToUnixLineSeparators
ConvertToWebp
ConvertToWindowsLineSeparators
Copy.Paste.Special
CopyAbsolutePath <C-S-C>
CopyAsPlainText
CopyAsRichText
CopyContentRootPath
CopyElement <F5>
CopyExternalReferenceGroup
CopyFileName
CopyFileReference
CopyKotlinProjectInformation
CopyPathFromRepositoryRootProvider
CopyPaths <C-S-C>
CopyPathWithLineNumber
CopyReference <A-C-S-C>
CopyReferencePopupGroup
CopySettingsPath
CopySourceRootPath
CopyTBXReference
CopyUrl
Coverage
CoverageMenu
CoveragePlatformMenu
CPP.NewCMakeListsFile
CPP.NewCppFile
CPP.NewGroup.After
CPP.NewHeaderFile
CPP.ProjectView.After
CPP.ProjectView.ShowFilesUnknownToCMake
CreateDesktopEntry
CreateEditorConfigFile
CreateLauncherScript
CreateLibraryFromFile
CreateNewRunConfiguration
CreateResourceBundle
CreateRunConfiguration
CurrentSessionXDebuggerResumeAction
CustomizeModeWidget
CustomizeUI
CustomLayoutsGroup
CutCopyPasteGroup
Debug <S-F9>
Debug.PsiViewer
Debug.PsiViewer.Toggle.UI
DebugBuildProcess
DebugClass
Debugger.AddInlineWatch
Debugger.AddSteppingFilter
Debugger.AddToWatch
Debugger.AdjustArrayRange
Debugger.AsyncStacks
Debugger.AutoRenderer
Debugger.CallTracer
Debugger.CopyStack
Debugger.CreateRenderer
Debugger.CustomizeContextView
Debugger.CustomizeThreadsView
Debugger.EditArrayFilter <F2>
Debugger.EditCustomField <F2>
Debugger.EditFrameSource <F4>
Debugger.EvaluateInConsole
Debugger.FilterArray
Debugger.FocusOnBreakpoint
Debugger.FocusOnFinish
Debugger.ForceEarlyReturn
Debugger.FreezeThread
Debugger.InterruptThread
Debugger.LibraryFramesToggle
Debugger.MarkObject <F11>
Debugger.MuteRenderers
Debugger.NewCustomField
Debugger.PopFrame
Debugger.ReloadFile
Debugger.RemoveAllBreakpoints
Debugger.RemoveAllBreakpointsInFile
Debugger.RemoveArrayFilter <Del>
Debugger.RemoveCustomField <Del>
Debugger.Representation
Debugger.RestoreBreakpoint
Debugger.ResumeThread
Debugger.ShowCollectionHistory
Debugger.ShowLibraryFrames
Debugger.ShowReferring
Debugger.ShowRelatedStack
Debugger.ShowTypes
Debugger.StepOutOfBlock
Debugger.SwitchToTheNextContext
Debugger.ThreadsPanelPopup
Debugger.ThrowException
Debugger.Tree.EvaluateInConsole
Debugger.ViewAsGroup
Debugger.ViewText
DebuggingActionsGroup
DebugMainMenu
DebugReloadGroup
DecompileKotlinToJava
DecrementWindowHeight <A-C-S-Up>
DecrementWindowWidth <A-C-S-Left>
DelegateMethods
DeleteMnemonicFromBookmark
DeleteOldAppDirs
DeleteRecentFiles <Del>
Dev.PsiViewerActions
DeveloperServices.ConnectionAssistant
DeveloperServices.Firebase
DeveloperServices.TargetSDKVersionUpgradeAssistant
DeveloperServices.UrlAssistant
DeviceAndSnapshotComboBox <A-S-F11>
DevKit.ApplyTheme
DevKit.EditThemeEditorColorScheme
DevKit.NewMessageBundle
DevKit.NewTheme
DevKit.OpenThemeReferenceDocs
DevKit.RollbackTheme
DevKit.ThemeEditorToolbar
DevkitNewActions
Diff.AppendLeftSide
Diff.AppendRightSide
Diff.ApplyLeftSide <A-C-R>
Diff.ApplyNonConflicts
Diff.ApplyNonConflicts.Left
Diff.ApplyNonConflicts.Right
Diff.ApplyRightSide <A-C-A>
Diff.Binary.Settings
Diff.ComparePartial.Base.Left
Diff.ComparePartial.Base.Right
Diff.ComparePartial.Left.Right
Diff.CompareWith.KeymapGroup
Diff.CompareWithBase.Left
Diff.CompareWithBase.Result
Diff.CompareWithBase.Right
Diff.EditorGutterPopupMenu
Diff.EditorGutterPopupMenu.EditorSettings
Diff.EditorPopupMenu
Diff.FocusOppositePane <C-S-Tab>
Diff.FocusOppositePaneAndScroll
Diff.IgnoreLeftSide
Diff.IgnoreRightSide
Diff.KeymapGroup
Diff.MagicResolveConflicts
Diff.NextChange <A-S-Right>
Diff.NextConflict
Diff.PrevChange <A-S-Left>
Diff.PreviousConflict
Diff.ResolveConflict
Diff.ShowDiff <C-D>
Diff.ShowInExternalTool
Diff.ShowSettingsPopup <C-S-D>
Diff.ShowStandaloneDiff
Diff.ViewerPopupMenu
Diff.ViewerToolbar
DirDiffMenu
DirDiffMenu.CancelComparingNewFilesWithEachOther
DirDiffMenu.CompareNewFilesWithEachOtherAction
DirDiffMenu.EnableEqual
DirDiffMenu.EnableLeft
DirDiffMenu.EnableNotEqual
DirDiffMenu.EnableRight
DirDiffMenu.Exclude
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
DisableDeclarativeInlayAction
DisableInspection
DisableMinimap
DisableNewUi
DissociateResourceBundleAction
DocCommentGutterIconContextMenu
DockPinnedMode
DockToolWindow
DockUnpinnedMode
Documentation.Back <A-C-Left> button=4 clickCount=1 modifiers=0
Documentation.EditSource <F4>
Documentation.Forward <A-C-Right> button=5 clickCount=1 modifiers=0
Documentation.KeepTab
Documentation.Navigation
Documentation.PrimaryGroup
Documentation.ToggleAutoShow
Documentation.ToggleAutoUpdate
Documentation.ToggleShowInPopup
Documentation.ViewExternal <S-F1>
DomCollectionControl
DomCollectionControl.Add <Ins>
DomCollectionControl.Edit <F4>
DomCollectionControl.Remove <Del>
DumpFocusableComponentHierarchyAction
DumpLookupElementWeights <A-C-S-W>
DumpMLCompletionFeatures <A-C-S-9>
DumpThreads
Dvcs.FileHistory.ContextMenu
Dvcs.Log.ContextMenu
Dvcs.Log.Toolbar
EditBookmark
EditBookmarksGroup
EditBreakpoint <C-S-F8>
EditBuildTypes
EditCommitMessage
EditCreateDeleteGroup
EditCustomProperties
EditCustomVmOptions
EditFlavors
EditInspectionSettings
EditLibraryAndDependencies
EditMacros
EditMenu
Editor.Search.Filter.Results
EditorActions
EditorAddCaretPerSelectedLine <A-S-G>
EditorAddOrRemoveCaret button=1 clickCount=1 modifiers=576
EditorAddRectangularSelectionOnMouseDrag button=1 clickCount=1 modifiers=704
EditorBackSpace <BS> <S-BS>
EditorBackwardParagraph
EditorBackwardParagraphWithSelection
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
EditorCreateRectangularSelectionOnMouseDrag button=1 clickCount=1 modifiers=512 button=2 clickCount=1 modifiers=0
EditorCut <C-X> <S-Del>
EditorCutLineBackward
EditorCutLineEnd
EditorDecreaseFontSize
EditorDecreaseFontSizeGlobal <A-S-,>
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>
EditorFocusGutter <A-S-6>
EditorForwardParagraph
EditorForwardParagraphWithSelection
EditorGutterPopupMenu
EditorGutterPopupMenu.Appearance
EditorGutterToggleGlobalIndentLines
EditorGutterToggleGlobalLineNumbers
EditorGutterToggleGlobalStickyLines
EditorGutterVcsPopupMenu
EditorHungryBackSpace
EditorIncreaseFontSize
EditorIncreaseFontSizeGlobal <A-S-.>
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>
EditorLookupSelectionDown
EditorLookupSelectionUp
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
EditorPopupMenuAnalyze
EditorPopupMenuDebug
EditorPopupMenuDebugJava
EditorPreviousWord <C-Left>
EditorPreviousWordInDifferentHumpsMode
EditorPreviousWordInDifferentHumpsModeWithSelection
EditorPreviousWordWithSelection <C-S-Left>
EditorResetFontSize
EditorResetFontSizeGlobal
EditorReverseLines
EditorRight <Right>
EditorRightWithSelection <S-Right>
EditorScrollBottom
EditorScrollDown <C-Down>
EditorScrollDownAndMove
EditorScrollLeft
EditorScrollRight
EditorScrollToCenter <C-M>
EditorScrollTop
EditorScrollUp <C-Up>
EditorScrollUpAndMove
EditorSearchSession.NextOccurrenceAction
EditorSearchSession.PrevOccurrence
EditorSearchSession.ToggleMatchCase
EditorSearchSession.ToggleRegex
EditorSearchSession.ToggleWholeWordsOnlyAction
EditorSelectLine
EditorSelectSingleLineAtCaret
EditorSelectWord <C-W>
EditorSetContentBasedBidiTextDirection
EditorSetLtrBidiTextDirection
EditorSetRtlBidiTextDirection
EditorShowGutterIconTooltip <A-S-6>
EditorSortLines
EditorSplitLine <C-CR>
EditorStartNewLine <S-CR>
EditorStartNewLineBefore <A-C-CR>
EditorStickyLinesDisable
EditorStickyLinesSettings
EditorSwapSelectionBoundaries
EditorTab <Tab>
EditorTabActionGroup
EditorTabCompileGroup
EditorTabPopupMenu
EditorTabPopupMenuEx
EditorTabsEntryPoint
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