Last active
          March 18, 2025 14:18 
        
      - 
      
- 
        Save PisecesPeng/9fabf2a1c1834bd35bf02c2bcb904708 to your computer and use it in GitHub Desktop. 
    here is my .vimrc with idea, and :actionlist (IdeaVim v2.1.0)
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | "" Source your .vimrc | |
| "source ~/.vimrc | |
| let mapleader = "\<space>" | |
| " 防止leader键移动 | |
| nnoremap <space> <nop> | |
| vnoremap <space> <nop> | |
| """ Plugins -------------------------------- | |
| " Plugins-marketplace : IdeaVim AceJump IdeaVim-EasyMotion IdeaVim-Quickscope IdeaVimExtension | |
| " 环绕插入符号 | |
| set surround | |
| " 快速跳转 | |
| set easymotion | |
| " 快速操作参数 | |
| set argtextobj | |
| " 快速调换位置 | |
| set exchange | |
| " 复制时高亮 | |
| set highlightedyank | |
| " 代码树 | |
| set NERDTree | |
| " 搜索时提示高亮 | |
| " set quickscope | |
| " 增强段落移动 | |
| set vim-paragraph-motion | |
| """ Plugins -------------------------------- | |
| """ Plugin settings ------------------------- | |
| " 高亮时间 | |
| let g:highlightedyank_highlight_duration = 1000 | |
| " 自定义颜色 | |
| " let g:highlightedyank_highlight_color = "rgba(210,240,244, 155)" | |
| let g:argtextobj_pairs="[:],(:),<:>" | |
| " Turn off this plugin when the length of line is longer than g:qs_max_chars. | |
| let g:qs_max_chars=20 | |
| """ Plugin settings ------------------------- | |
| """ Plugin mapping ------------------------ | |
| nmap ss <Plug>(easymotion-s2) | |
| nmap sl <Plug>(easymotion-sl) | |
| """ Plugin mapping ------------------------ | |
| """ Action list mapping ------------------------ | |
| " 定位到文件树 | |
| nmap <Leader>\ <Action>(SelectInProjectView) | |
| " 鼠标悬停 | |
| map <Leader>ed <Action>(ShowErrorDescription) | |
| " 鼠标右键 | |
| map <Leader>me <Action>(ShowPopupMenu) | |
| " 查看文档 | |
| nmap <Leader>jd <Action>(QuickJavaDoc) | |
| " 查看方法参数 | |
| map <Leader>pi <Action>(ParameterInfo) | |
| " 智能提示 | |
| nmap <Leader>ia <Action>(ShowIntentionActions) | |
| " 跳下/下一个错误 | |
| nmap <leader>ne <action>(GotoNextError) | |
| " 当前页面方法列表 | |
| nmap <Leader>fs <Action>(FileStructurePopup) | |
| " 选择模式扩大选择范围 | |
| vmap v <Action>(EditorSelectWord) | |
| " 选择模式缩小选择范围 | |
| vmap V <Action>(EditorUnSelectWord) | |
| " 上/下一个tab | |
| nmap <C-Tab> <Action>(NextTab) | |
| nmap <C-S-Tab> <Action>(PreviousTab) | |
| vmap <C-Tab> <Action>(NextTab) | |
| vmap <C-S-Tab> <Action>(PreviousTab) | |
| " 开启新一行 | |
| imap <S-CR> <Action>(EditorStartNewLine) | |
| imap <S-D-CR> <Action>(EditorStartNewLineBefore) | |
| nmap <S-CR> <Action>(EditorStartNewLine) | |
| nmap <S-D-CR> <Action>(EditorStartNewLineBefore) | |
| " 开启新一行 | |
| " 打开切换窗口 | |
| map <S-D-e> <Action>(Switcher) | |
| " navigate back/forward | |
| map <D-[> <Action>(Back) | |
| map <D-]> <Action>(Forward) | |
| " 多光标选中单词 | |
| nmap <Leader>va <Action>(SelectAllOccurrences) | |
| vmap <Leader>va <Action>(SelectAllOccurrences) | |
| nmap <C-g> <Action>(SelectNextOccurrence) | |
| nmap <C-S-g> <Action>(UnselectPreviousOccurrence) | |
| nmap <M-g> <Action>(FindNext) | |
| nmap <M-S-g> <Action>(FindPrevious) | |
| " 左右缩进 | |
| " vmap <Tab> <Action>(EditorIndentSelection) | |
| " vmap <S-Tab> <Action>(EditorUnindentSelection) | |
| " 合并行 | |
| " nmap <C-j> <Action>(EditorJoinLines) | |
| " 切换分割窗口 | |
| nmap <C-s> <Action>(NextSplitter) | |
| vmap <C-s> <Action>(NextSplitter) | |
| " 行上/下移 | |
| map <M-S-Up> <Action>(MoveStatementUp) | |
| map <M-S-Down> <Action>(MoveStatementDown) | |
| " 代码生成环绕模版 | |
| nmap <Leader>sw <Action>(SurroundWith) | |
| vmap <Leader>sw <Action>(SurroundWith) | |
| " 高亮选中 | |
| map <Leader>hl <Action>(HighlightUsagesInFile) | |
| """ Action list mapping ------------------------ | |
| " 重构动作更具确定性 | |
| " set idearefactormode=keep | |
| " 普通模式自动切换为英文输入法 | |
| set keep-english-in-normal | |
| " 取消vim操作声音 | |
| set visualbell | |
| set noerrorbells | |
| " 开启模式显示 | |
| set showmode | |
| " Do incremental searching | |
| set incsearch | |
| " Find more examples here: https://jb.gg/share-ideavimrc | |
| set ideajoin | |
| set clipboard+=ideaput | |
| " 不区分大小写 | |
| set ignorecase smartcase | |
| " 显示匹配括号 | |
| set showmatch | |
| " 设置行号样式 | |
| set number relativenumber | |
| " 将系统剪贴板与vim剪贴板合并 | |
| set clipboard=unnamed | |
| " 屏幕追随光标移动的距离 | |
| set scrolloff=8 | |
| " 突出显示行 | |
| set cursorline | |
| " 使用'<'&'>'进行缩进 | |
| set shiftround | |
| " 自动跟随上行缩进 | |
| set autoindent | |
| " 简化缩进 | |
| nnoremap > >> | |
| nnoremap < << | |
| vnoremap > >gv | |
| vnoremap < <gv | |
| " 突出搜索内容 ':noh'可取消突出 | |
| " set nohlsearch | |
| " ic 不区分大小写 | |
| " set hls ic | |
| " 视野移动 | |
| nnoremap zh 50zh | |
| nnoremap zl 50zl | |
| " 按'*'搜索光标选中的内容, 取消高亮`:noh` | |
| vnoremap * "ry/<C-R>r<CR> | |
| " 删除不剪切 | |
| nnoremp d "_d | |
| nnoremap dd "_dd | |
| nnoremap D "_D | |
| " nnoremap <leader>d ""d | |
| " nnoremap <leader>dd ""dd | |
| " nnoremap <leader>D ""D | |
| nnoremap c "_c | |
| nnoremap cc "_cc | |
| nnoremap C "_C | |
| " nnoremap <leader>c ""c | |
| " nnoremap <leader>cc ""cc | |
| " nnoremap <leader>C ""C | |
| vnoremap d "_d | |
| vnoremap dd "_dd | |
| vnoremap D "_D | |
| " vnoremap <leader>d ""d | |
| " vnoremap <leader>dd ""dd | |
| " vnoremap <leader>D ""D | |
| vnoremap c "_c | |
| vnoremap cc "_cc | |
| vnoremap C "_C | |
| " vnoremap <leader>c ""c | |
| " vnoremap <leader>cc ""cc | |
| " vnoremap <leader>C ""C | |
| vnoremap p "_dp | |
| vnoremap P "_dP | |
| " 删除不剪切 | |
| " 组合命令删除不剪切 | |
| nnoremap diw "_diw | |
| nnoremap di" "_di" | |
| nnoremap di' "_di' | |
| nnoremap di( "_di( | |
| nnoremap di[ "_di[ | |
| nnoremap di{ "_di{ | |
| nnoremap di< "_di< | |
| nnoremap daw "_daw | |
| nnoremap da" "_da" | |
| nnoremap da' "_da' | |
| nnoremap da( "_da( | |
| nnoremap da[ "_da[ | |
| nnoremap da{ "_da{ | |
| nnoremap da< "_da< | |
| nnoremap ciw "_ciw | |
| nnoremap ci" "_ci" | |
| nnoremap ci' "_ci' | |
| nnoremap ci( "_ci( | |
| nnoremap ci[ "_ci[ | |
| nnoremap ci{ "_ci{ | |
| nnoremap ci< "_ci< | |
| nnoremap caw "_caw | |
| nnoremap ca" "_ca" | |
| nnoremap ca' "_ca' | |
| nnoremap ca( "_ca( | |
| nnoremap ca[ "_ca[ | |
| nnoremap ca{ "_ca{ | |
| nnoremap ca< "_ca< | |
| " 组合命令删除不剪切 | |
| " 切换tab | |
| " noremap <Tab> gT | |
| " noremap <S-Tab> gt | |
| " 切换tab | |
| " 快速跳转行首与行尾 | |
| nnoremap <C-l> $ | |
| nnoremap <C-h> ^ | |
| vnoremap <C-l> $ | |
| vnoremap <C-h> ^ | |
| " 快速跳转行首与行尾 | |
| " 移动多行 | |
| noremap <C-j> 5j | |
| noremap <C-k> 5k | |
| " noremap <C-j> <C-d> | |
| " noremap <C-k> <C-u> | |
| " 移动多行 | |
| " 插入模式移动 | |
| inoremap <C-h> <Left> | |
| inoremap <C-j> <Down> | |
| inoremap <C-k> <Up> | |
| inoremap <C-l> <Right> | |
| inoremap <C-w> <Esc><Right>]wa | |
| inoremap <C-S-w> <Esc><Left>]ba | |
| " 插入模式移动 | |
| " 插入模式转换普通模式 | |
| inoremap jk <Esc> | |
| " 插入模式转换普通模式 | |
| " 切割窗口 | |
| nnoremap sx :split<Return> | |
| nnoremap sy :vsplit<Return> | |
| " 切割窗口 | |
| " 保存行(不含换行符) | |
| nnoremap yir ^v$y | |
| nnoremap yar ^v$y | |
| " 保存行(不含换行符) | |
| " 删除行(不含换行符) | |
| nnoremap dir ^v$"_d | |
| nnoremap dar ^v$"_d | |
| " 删除行(不含换行符) | |
| " 删除行(不含换行符) | |
| nnoremap cir ^v"_C | |
| nnoremap car ^v"_C | |
| " 删除行(不含换行符) | |
| " 删除&复制行(不含换行符) | |
| nnoremap yxr ^v$x | |
| " 删除&复制行(不含换行符) | |
| " 选中行(不含换行符) | |
| nnoremap vir ^v$ | |
| nnoremap var ^v$ | |
| " 选中行(不含换行符) | |
| " 框选指定符号结束的多行 | |
| nnoremap vs( ^V/(<CR>% | |
| nnoremap vs{ ^V/{<CR>% | |
| nnoremap vs[ ^V/[<CR>% | |
| nnoremap vs) ^V% | |
| nnoremap vs} ^V% | |
| nnoremap vs] ^V% | |
| nnoremap vs; ^V/;<CR> | |
| " 框选指定符号结束的多行 | |
| " 选中方法定义 | |
| nnoremap vsm va{<Esc>v%:action EditorSelectWord<CR> | |
| " 选中方法定义 | |
| " 选中方法调用 | |
| nnoremap vsf /\.<CR>Nv/(<CR>% | |
| " 选中方法调用 | |
| " 选中单词(按驼峰命名规则匹配) | |
| nnoremap <C-w> [w | |
| nnoremap <C-S-w> [b | |
| vnoremap <C-w> <Esc>[w]wv[b | |
| vnoremap <C-S-w> <Esc>]bv[b | |
| " 选中单词(t按驼峰命名规则匹配) | |
| " 复制 至行尾/行首 | |
| nnoremap <S-y> y$ | |
| nnoremap yH y^ | |
| nnoremap yL y$ | |
| " 复制 至行尾/行首 | |
| " 删除 至行尾/行首 | |
| nnoremap dH d^ | |
| nnoremap dL d$ | |
| nnoremap cH c^ | |
| nnoremap cL c$ | |
| " 删除 至行尾/行首 | |
| function! Fdemo() | |
| let code = "demo" | |
| return code | |
| endfunction | |
| """ IdeaVim development stuff | |
| " This is actually an undocumented option for internal use. | |
| " If there is a bug in IdeaVim code and after some command, | |
| " IdeaVim calculates that the caret should be located at 1000000 offset in a short file, | |
| " we have a protection that would put the caret just at the file end. | |
| " This way the actual error is hidden from the user. With this option enabled, | |
| " an exception will be thrown and IJ will show a notification that something is wrong. | |
| " Since I use IdeaVim for myself, I'd like to see such notifications and this option is enabled for me. | |
| set ideastrictmode | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | --- Actions --- | |
| $Copy <M-C> | |
| $Cut <M-X> <S-Del> | |
| $Delete <Del> <BS> <M-BS> | |
| $LRU | |
| $Paste <M-V> | |
| $Redo <M-S-Z> <A-S-BS> | |
| $SearchWeb | |
| $SelectAll <M-A> | |
| $Undo <M-Z> | |
| About | |
| AceAction <C-;> | |
| AceBackwardAction | |
| AceDeclarationAction | |
| AceForwardAction | |
| AceLineAction <C-S-;> | |
| AceLineEndsAction | |
| AceLineIndentsAction | |
| AceLineStartsAction | |
| AceReverseAction | |
| AceTargetAction <A-C-;> | |
| AceWordAction | |
| AceWordBackwardsAction | |
| AceWordEndAction | |
| AceWordForwardAction | |
| AceWordStartAction | |
| Actions.ActionsPlugin.GenerateToString | |
| ActivateAntToolWindow | |
| ActivateBookmarksToolWindow <M-2> | |
| ActivateBuildToolWindow | |
| ActivateCheckStyleToolWindow | |
| ActivateCommitToolWindow <M-0> | |
| ActivateDebugToolWindow <M-5> | |
| ActivateDependenciesToolWindow | |
| ActivateDependencyCheckerToolWindow | |
| Activatedocumentation.v2ToolWindow | |
| ActivateFindToolWindow <M-3> | |
| ActivateGradleToolWindow | |
| ActivateHierarchyToolWindow | |
| ActivatejclasslibToolWindow | |
| ActivateKeyPromoterXToolWindow | |
| ActivateLearnToolWindow | |
| ActivateMavenToolWindow | |
| ActivateMeetNewUIToolWindow | |
| ActivateNavBar | |
| ActivateNotificationsToolWindow | |
| ActivateProblemsViewToolWindow <M-6> | |
| ActivateProjectToolWindow <M-1> | |
| ActivatePullRequestsToolWindow | |
| ActivateRunToolWindow <M-4> | |
| ActivateSequenceDiagramToolWindow | |
| ActivateServicesToolWindow <M-8> | |
| ActivateSpaceCodeReviewsToolWindow | |
| ActivateStructureToolWindow <M-7> | |
| ActivateTerminalToolWindow <A-F12> | |
| ActivateTODOToolWindow | |
| ActivateToolWindowActions | |
| ActivateVersionControlToolWindow <M-9> | |
| ActiveToolwindowGroup | |
| AddAnotherBookmark | |
| AddAntBuildFile | |
| AddBom | |
| AddBom.Group | |
| AddBreakpoint | |
| AddConditionalBreakpoint | |
| AddFrameworkSupport | |
| AddGradleDslPluginAction | |
| AddNewPropertyFile | |
| AddToISuite | |
| addToTempGroup | |
| AddToTestNGSuite | |
| Adtui.ZoomActions | |
| Adtui.ZoomInAction <M-k> <M-=> | |
| Adtui.ZoomOutAction <M--> <M-m> | |
| Adtui.ZoomResetAction | |
| Adtui.ZoomToActualAction <M-0> <M-`> | |
| Adtui.ZoomToFitAction <M-/> <M-o> | |
| AgpUpgrade | |
| AliP3CInspectionAction <M-A-S-J> | |
| AnalyzeActions | |
| AnalyzeActionsPopup | |
| AnalyzeJavaMenu | |
| AnalyzeMenu | |
| AnalyzePlatformMenu | |
| AnalyzePluginStartupPerformance | |
| AnalyzeStacktraceToolbar | |
| Android Profiler | |
| Android Profiler Group | |
| Android.AdbDevicePairing | |
| Android.AnalyzeApk | |
| Android.BuildApk | |
| Android.BuildApkOrBundle | |
| Android.BuildBundle | |
| Android.ChooseProfileConfiguration | |
| Android.ConvertToNinePatch | |
| Android.CreateResourceDirectory | |
| Android.CreateResourcesActionGroup | |
| Android.CreateSampleDataDirectory | |
| android.deploy.ApplyChanges | |
| android.deploy.CodeSwap <M-A-F10> <M-C-S-E> | |
| android.deploy.DebugWithoutBuild | |
| android.deploy.RunWithoutBuild | |
| Android.DeployActions | |
| Android.Designer.AddAction <A> | |
| Android.Designer.AddDeepLink <D> | |
| Android.Designer.AssignStartDestination <H> | |
| Android.Designer.AutoArrange <M-L> | |
| Android.Designer.CommonActions | |
| Android.Designer.ComposeIssueNotificationAction <E> | |
| Android.Designer.ForceRefreshPreview <R> | |
| Android.Designer.IssueNotificationAction <E> | |
| Android.Designer.IssuePanel.CopyIssueDescription <M-C> | |
| Android.Designer.IssuePanel.QuickFixes <A-CR> | |
| Android.Designer.IssuePanel.SeverityFilter | |
| Android.Designer.IssuePanel.ToggleIssueDetailAction | |
| Android.Designer.IssuePanel.ToolbarActions | |
| Android.Designer.IssuePanel.TreePopup | |
| Android.Designer.IssuePanel.ViewOptions | |
| Android.Designer.LayoutEditorActions | |
| Android.Designer.NavEditorActions | |
| Android.Designer.NextDevice <D> | |
| Android.Designer.PreviousDevice <S-D> | |
| Android.Designer.SwitchDesignMode <B> | |
| Android.Designer.SwitchLayoutQualifier | |
| Android.Designer.ToggleDeviceNightMode <N> | |
| Android.Designer.ToggleDeviceOrientation <O> | |
| Android.Designer.ToolsActions | |
| android.device.back.button | |
| android.device.home.button | |
| android.device.overview.button | |
| Android.Device.Picker.Help | |
| android.device.power.button | |
| android.device.rotate.left | |
| android.device.rotate.right | |
| android.device.screen.record | |
| android.device.screenshot | |
| android.device.sleep | |
| android.device.volume.down.button | |
| android.device.volume.up.button | |
| android.device.wear1.button | |
| android.device.wear2.button | |
| Android.DeviceExplorer.ActionsToolbar | |
| Android.DeviceExplorer.GotoDatabaseFolder | |
| Android.DeviceExplorer.GotoSdcardFolder | |
| Android.DeviceExplorer.GotoSharedPrefsFolder | |
| Android.DeviceExplorer.Help | |
| Android.DeviceManager | |
| Android.Diagnostics | |
| android.emulator.back.button | |
| android.emulator.display.mode | |
| android.emulator.display.mode.foldable | |
| android.emulator.display.mode.phone | |
| android.emulator.display.mode.tablet | |
| android.emulator.extended.controls | |
| android.emulator.folding.controls | |
| android.emulator.home.button | |
| android.emulator.overview.button | |
| android.emulator.power.button | |
| android.emulator.rotate.left | |
| android.emulator.rotate.right | |
| android.emulator.screen.record | |
| android.emulator.screenshot | |
| android.emulator.sleep | |
| android.emulator.snapshots | |
| android.emulator.tilt | |
| android.emulator.volume.down.button | |
| android.emulator.volume.up.button | |
| android.emulator.wear1.button | |
| android.emulator.wear2.button | |
| Android.ExportProjectZip | |
| Android.GenerateSignedApk | |
| Android.InstantRunActions | |
| Android.MainToolBarActionGroup | |
| Android.MainToolBarSdkGroup | |
| Android.OpenStringResourceEditor | |
| Android.RunAndroidSdkManager | |
| Android.RunLayoutInspector | |
| android.testRetention.load | |
| Android.WearDevicePairing | |
| AndroidAddRTLSupport | |
| AndroidConnectDebuggerAction | |
| AndroidEnableInstantAppsSupport | |
| AndroidExtractAsIncludeAction | |
| AndroidExtractStyleAction | |
| AndroidFindStyleApplicationsAction | |
| AndroidInlineIncludeAction | |
| AndroidInlineStyleReferenceAction | |
| AndroidMigrateToAndroidxAction | |
| AndroidMigrateToAppCompatAction | |
| AndroidMigrateToNonTransitiveRClassesAction | |
| AndroidMigrateToResourceNamespacesAction | |
| AndroidModularizeAction | |
| AndroidToolsGroup | |
| AndroidToolsGroupExtension | |
| AndroidUnusedResourceAction | |
| Annotate | |
| AnnotateStackTraceAction.show.files.modification.info | |
| AnonymousToInner | |
| AntBuildGroup | |
| Arrangement.Alias.Rule.Add <M-N> <C-CR> | |
| 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> <BS> <M-BS> | |
| Arrangement.Alias.Rule.ToolBar | |
| Arrangement.Custom.Token.Rule.Edit | |
| Arrangement.Rule.Add <M-N> <C-CR> | |
| 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> <BS> <M-BS> | |
| Arrangement.Rule.Section.Add | |
| ArrangementRulesGroup | |
| AssociateWithFileType | |
| AttachProject | |
| AutoIndentLines <A-C-I> | |
| AutoShowProcessWindow | |
| AvailableDevices | |
| Back <M-[> <M-A-Left> button=4 clickCount=1 modifiers=0 <A-H> | |
| 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 <A-F3> | |
| BookmarksView.Create <M-N> <C-CR> | |
| BookmarksView.DefaultGroup | |
| BookmarksView.Delete <Del> <BS> <M-BS> | |
| BookmarksView.DeleteType | |
| BookmarksView.GroupLineBookmarks | |
| BookmarksView.MoveDown <M-A-Down> | |
| BookmarksView.MoveUp <M-A-Up> | |
| BookmarksView.OpenInPreviewTab | |
| BookmarksView.Rename <F2> | |
| BookmarksView.RewriteBookmarkType | |
| BookmarksView.ShowPreview | |
| BookmarksView.SortGroupBookmarks | |
| BraceOrQuoteOut <Tab> | |
| BreakpointActionsGroup | |
| BuildArtifact | |
| BuildMenu | |
| ByeCodeViewerGroup | |
| ByteCodeDecompiler | |
| ByteCodeViewer | |
| CacheRecovery | |
| CallHierarchy <A-C-H> | |
| CallHierarchy.BaseOnThisMethod <A-C-H> | |
| CallHierarchyPopupMenu | |
| CallLabelAction | |
| CallSaul | |
| ChangeCodeStyleScheme | |
| ChangeColorScheme | |
| ChangeFileEncodingAction | |
| ChangeIdeScale | |
| ChangeInspectionProfile | |
| ChangeKeymap | |
| ChangeLaf | |
| ChangeLineSeparators | |
| ChangesBrowser.FiltererGroup | |
| ChangeScheme | |
| ChangeSignature <M-F6> | |
| ChangeSplitOrientation | |
| ChangesView.AddUnversioned <M-A-A> | |
| ChangesView.ApplyPatch | |
| ChangesView.ApplyPatchFromClipboard | |
| ChangesView.Browse | |
| ChangesView.Changelists | |
| ChangesView.CommitToolbar | |
| ChangesView.CreatePatch | |
| ChangesView.CreatePatchFromChanges | |
| ChangesView.CreatePatchToClipboard | |
| ChangesView.Edit | |
| ChangesView.GroupBy | |
| ChangesView.GroupBy.Directory <C-P> | |
| ChangesView.GroupBy.Module <C-M> | |
| ChangesView.GroupBy.Repository | |
| ChangesView.Move <M-S-M> | |
| ChangesView.NewChangeList | |
| ChangesView.Refresh | |
| ChangesView.RemoveChangeList | |
| ChangesView.RemoveDeleted | |
| ChangesView.Rename <F2> <S-F6> | |
| ChangesView.Revert <M-A-Z> | |
| ChangesView.RevertFiles | |
| ChangesView.SaveToShelve | |
| ChangesView.SetDefault <C- > | |
| ChangesView.Shelve | |
| ChangesView.ShelveSilently <M-S-H> | |
| ChangesView.ShowCommitOptions | |
| ChangesView.SingleClickPreview | |
| ChangesView.ToggleCommitUi <M-K> | |
| ChangesView.UnshelveSilently <M-A-U> | |
| ChangesView.ViewOptions | |
| ChangesViewPopupMenu | |
| ChangesViewToolbar | |
| ChangeTemplateDataLanguage | |
| ChangeToolWindowLayout | |
| ChangeTypeSignature <M-S-F6> | |
| ChangeView | |
| CheckForUpdate | |
| CheckIgnoredAndNotExcludedDirectories | |
| CheckinFiles | |
| CheckinProject <M-K> | |
| CheckStatusForFiles | |
| CheckStyleClearCheckCacheAction | |
| CheckStyleCloseAction | |
| CheckStyleCollapseAllAction | |
| CheckStyleCurrentFileAction | |
| CheckStyleDefaultChangeListAction | |
| CheckStyleDisplayErrorsAction | |
| CheckStyleDisplayInfoAction | |
| CheckStyleDisplayWarningsAction | |
| CheckStyleExpandAllAction | |
| CheckStyleModifiedFilesAction | |
| CheckStyleModuleFilesAction | |
| CheckStylePluginActions | |
| CheckStylePluginTreeActions | |
| CheckStyleProjectFilesAction | |
| CheckStyleScrollToSourceAction | |
| CheckStyleStopCheck | |
| CheckSuggestedPlugins | |
| ChooseDebugConfiguration <A-C-D> | |
| ChooseRunConfiguration <A-C-R> | |
| ChooseRuntime | |
| ClassNameCompletion <A-C- > | |
| CleanGradleProject | |
| ClearAllNotifications | |
| ClickLink <M-B> button=1 clickCount=1 modifiers=256 Force touch button=2 clickCount=1 modifiers=0 | |
| CloseActiveTab <C-S-F4> | |
| CloseAllEditors | |
| CloseAllEditorsButActive | |
| CloseAllNotifications | |
| CloseAllProjects | |
| CloseAllReadonly | |
| CloseAllToTheLeft | |
| CloseAllToTheRight | |
| CloseAllUnmodifiedEditors | |
| CloseAllUnpinnedEditors | |
| CloseContent <M-W> | |
| CloseEditor | |
| CloseEditorsGroup | |
| CloseFirstNotification | |
| CloseGotItTooltip <Esc> | |
| CloseOtherProjects | |
| CloseProject | |
| CodeCleanup | |
| CodeCompletion <C- > | |
| CodeCompletionGroup | |
| CodeEditorBaseGroup | |
| CodeEditorViewGroup | |
| CodeFormatGroup | |
| CodeInsightEditorActions | |
| CodeInspection.OnEditor <A-S-I> | |
| CodeMenu | |
| CodeVision.ShowMore | |
| CodeWithMeBackendCollectZippedLogs | |
| CodeWithMeBackendReportIssue | |
| CodeWithMeGroup | |
| CodeWithMeHeaderMenuAdditionalGroup | |
| CodeWithMeHeaderMenuGroup | |
| CodeWithMeMainGroup | |
| CodeWithMeMainMenuGroup | |
| CodeWithMeNavbarGroup | |
| CodeWithMeTabActionGroup | |
| CodeWithMeToolbarGroup | |
| CodeWithMeToolbarGroupNewUi | |
| CodeWithMeUsersAction | |
| CodeWithMeUsersGroup | |
| CollapseAll <M-m> <M--> | |
| CollapseAllRegions <M-S-m> <M-S--> | |
| CollapseBlock <M-S-.> | |
| CollapseDocComments | |
| CollapseExpandableComponent <S-CR> <M-m> <M--> | |
| CollapseRegion <M-m> <M--> | |
| CollapseRegionRecursively <M-A-m> <M-A--> | |
| CollapseSelection <M-.> | |
| CollapseTreeNode <m> | |
| CollapsiblePanel-toggle < > | |
| CollectZippedLogs | |
| com.alibaba.p3c.analytics.action_group | |
| com.alibaba.p3c.idea.action.SwitchLanguageAction | |
| com.android.build.attribution.ui.OpenBuildAnalyzerAction | |
| com.intellij.ide.actions.searcheverywhere.ml.actions.OpenFeaturesInScratchFileAction <M-A-S-1> | |
| com.intellij.space.actions.SpaceLoginAction | |
| com.intellij.space.actions.SpaceLogoutAction | |
| com.intellij.space.vcs.actions.SpaceMainToolBarAction | |
| com.intellij.space.vcs.clone.SpaceCloneAction | |
| com.intellij.space.vcs.OpenChecklists | |
| com.intellij.space.vcs.OpenIssues | |
| com.intellij.space.vcs.review.create.SpaceCreateCommitSetReviewAction | |
| com.intellij.space.vcs.review.create.SpaceCreateMergeRequestAction | |
| com.intellij.space.vcs.review.details.SpaceReviewCheckoutBranchAction | |
| com.intellij.space.vcs.review.details.SpaceReviewUpdateBranchAction | |
| com.intellij.space.vcs.review.list.popup | |
| com.intellij.space.vcs.review.list.SpaceRefreshReviewsListAction | |
| com.intellij.space.vcs.review.list.SpaceReviewAuthorActionGroup | |
| com.intellij.space.vcs.review.list.SpaceReviewOpenInBrowserAction | |
| com.intellij.space.vcs.review.SpaceShowReviewsAction | |
| com.intellij.space.vcs.share.SpaceShareProjectAction | |
| com.intellij.space.vcs.SpaceCopyLinkActionGroup | |
| com.intellij.space.vcs.SpaceVcsOpenInBrowserActionGroup | |
| com.intellij.space.vcs.SpaceVcsRevealInActionGroup | |
| com.jetbrains.packagesearch.intellij.plugin.actions.AddDependencyAction | |
| com.jetbrains.packagesearch.intellij.plugin.actions.PkgsToDAAction | |
| CombinePropertiesFilesAction | |
| CommanderPopupMenu | |
| CommentByBlockComment <M-A-/> <M-A-o> <C-S-/> <C-S-o> <M-S-/> <M-S-o> <M-S-o> | |
| CommentByLineComment <M-/> <M-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 | |
| CompareDirs <M-D> | |
| CompareFileWithEditor | |
| CompareTwoFiles <M-D> | |
| Compile <M-S-F9> | |
| CompileDirty <M-F9> | |
| CompileFile <M-S-F9> | |
| CompileProject | |
| CompilerErrorViewPopupMenu | |
| Compose.Live.Literals.ToggleHighlight | |
| ConfigureEditorTabs | |
| ConfigureKotlinInProject | |
| ConfigureKotlinJsInProject | |
| ConfigureSoftWraps | |
| ConnectToRemoteFromHost | |
| Console.Execute <CR> | |
| Console.Execute.Multiline <M-CR> | |
| Console.History.Browse <M-A-E> | |
| Console.History.Next | |
| Console.History.Previous | |
| Console.HistoryActions | |
| Console.Open <M-S-F10> | |
| Console.SplitLine <M-CR> | |
| ConsoleEditorPopupMenu | |
| ConsoleView.ClearAll | |
| ConsoleView.FoldLinesLikeThis | |
| ConsoleView.PopupMenu | |
| ConsoleView.ShowAsJsonAction | |
| context.clear <A-S-X> | |
| context.load | |
| context.save | |
| ContextDebug | |
| ContextHelp <M-S-F1> | |
| ContextRun | |
| ContrastRunToolbarMainActionGroup | |
| ConvertFromWebp | |
| ConvertGroovyToJava | |
| ConvertIndentsGroup | |
| ConvertIndentsToSpaces | |
| ConvertIndentsToTabs | |
| ConvertJavaToKotlin <M-A-S-K> | |
| ConvertJavaToKotlinGroup | |
| ConvertModuleGroupsToQualifiedNames | |
| ConvertSchemaAction | |
| ConvertToCompileStatic | |
| ConvertToInstanceMethod | |
| ConvertToMacLineSeparators | |
| ConvertToUnixLineSeparators | |
| ConvertToWebp | |
| ConvertToWindowsLineSeparators | |
| Copy.Paste.Special | |
| CopyAbsolutePath <M-S-C> | |
| CopyAsPlainText | |
| CopyAsRichText | |
| CopyContentRootPath | |
| CopyElement <F5> | |
| CopyExternalReferenceGroup | |
| CopyFileName | |
| CopyFileReference | |
| CopyJoinLinkAction | |
| CopyKotlinProjectInformation | |
| CopyPathFromRepositoryRootProvider | |
| CopyPaths <M-S-C> | |
| CopyPathWithLineNumber | |
| CopyReference <M-A-S-C> | |
| CopyReferencePopupGroup | |
| CopySettingsPath | |
| CopySourceRootPath | |
| CopyTBXReference | |
| CopyUrl | |
| Coverage | |
| CoverageMenu | |
| CoveragePlatformMenu | |
| CreateDesktopEntry | |
| CreateEditorConfigFile | |
| CreateLauncherScript | |
| CreateLibraryFromFile | |
| CreateNewRunConfiguration | |
| CreateResourceBundle | |
| CreateRunConfiguration | |
| CurrentLeadUnfollowAction <A-C-S-Y> | |
| CustomizeUI | |
| CustomLayoutsGroup | |
| CutCopyPasteGroup | |
| CWMHostOpenSettingsAction | |
| CWMHostShowPopupAction <C-S-Y> | |
| CWMManageLicense | |
| CWMOpenSettingsAction | |
| CWMShowPopupActionGroup | |
| CWMTelephonyGroup | |
| Debug <C-D> | |
| DebugBuildProcess | |
| DebugClass <C-S-D> | |
| 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 <M-Down> <F4> | |
| Debugger.EvaluateInConsole | |
| Debugger.FilterArray | |
| Debugger.FocusOnBreakpoint | |
| Debugger.FocusOnFinish | |
| Debugger.ForceEarlyReturn | |
| Debugger.FreezeThread | |
| Debugger.InterruptThread | |
| Debugger.MarkObject <F3> | |
| Debugger.MuteRenderers | |
| Debugger.NewCustomField | |
| Debugger.PopFrame | |
| Debugger.ReloadFile | |
| Debugger.RemoveAllBreakpoints | |
| Debugger.RemoveAllBreakpointsInFile | |
| Debugger.RemoveArrayFilter <Del> <BS> <M-BS> | |
| Debugger.RemoveCustomField <Del> <BS> <M-BS> | |
| 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-Up> | |
| DecrementWindowWidth <A-C-Left> | |
| defaultLombokData | |
| defaultLombokEqualsAndHashcode | |
| defaultLombokGetter | |
| defaultLombokLogger | |
| defaultLombokSetter | |
| defaultLombokToString | |
| DelegateMethods | |
| DeleteMnemonicFromBookmark | |
| DeleteOldAppDirs | |
| DeleteRecentFiles <Del> <BS> <M-BS> | |
| DelombokActionGroup | |
| delombokAny | |
| delombokBuilder | |
| delombokConstructor | |
| delombokData | |
| delombokDelegate | |
| delombokEqualsAndHashCode | |
| delombokFieldNameCostants | |
| delombokGetter | |
| delombokLogger | |
| delombokSetter | |
| delombokStandardException | |
| delombokSuperBuilder | |
| delombokToString | |
| delombokUtilityClass | |
| delombokValue | |
| delombokWither | |
| Dev.PsiViewerActions | |
| DeviceAndSnapshotComboBox <A-S-F11> | |
| DeviceToolbar | |
| DevKit.ApplyTheme | |
| DevKit.EditThemeEditorColorScheme | |
| DevKit.NewMessageBundle | |
| DevKit.NewTheme | |
| DevKit.OpenThemeReferenceDocs | |
| DevKit.RollbackTheme | |
| DevKit.ThemeEditorToolbar | |
| DevkitNewActions | |
| DiagnosticGroup | |
| Diff.AppendLeftSide | |
| Diff.AppendRightSide | |
| Diff.ApplyLeftSide <M-C-Right> | |
| Diff.ApplyNonConflicts | |
| Diff.ApplyNonConflicts.Left | |
| Diff.ApplyNonConflicts.Right | |
| Diff.ApplyRightSide <M-C-Left> | |
| 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 <C-S-Right> | |
| Diff.NextConflict | |
| Diff.PrevChange <C-S-Left> | |
| Diff.PreviousConflict | |
| Diff.ResolveConflict | |
| Diff.ShowDiff <M-D> | |
| Diff.ShowInExternalTool | |
| Diff.ShowSettingsPopup <M-S-D> | |
| Diff.ShowStandaloneDiff | |
| Diff.ViewerPopupMenu | |
| Diff.ViewerToolbar | |
| 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 <M-CR> | |
| DirDiffMenu.WarnOnDeletion | |
| DirDiffOperationsMenu | |
| DisableDeclarativeInlayAction | |
| DisableInspection | |
| DisableMinimap | |
| DisableNewUi | |
| DissociateResourceBundleAction | |
| DocCommentGutterIconContextMenu | |
| DockPinnedMode | |
| DockToolWindow | |
| DockUnpinnedMode | |
| Document2XSD | |
| Documentation.Back <M-[> <M-A-Left> button=4 clickCount=1 modifiers=0 <A-H> | |
| Documentation.EditSource <M-Down> <F4> | |
| Documentation.Forward <M-]> <M-A-Right> button=5 clickCount=1 modifiers=0 <A-L> | |
| Documentation.KeepTab | |
| Documentation.Navigation | |
| Documentation.PrimaryGroup | |
| Documentation.ToggleAutoShow | |
| Documentation.ToggleAutoUpdate | |
| Documentation.ToggleShowInPopup | |
| Documentation.ViewExternal <S-F1> | |
| DomCollectionControl | |
| DomCollectionControl.Add <Ins> | |
| DomCollectionControl.Edit <M-Down> <F4> | |
| DomCollectionControl.Remove <Del> <BS> <M-BS> | |
| DumpFocusableComponentHierarchyAction | |
| DumpLookupElementWeights <M-A-S-W> | |
| DumpMLCompletionFeatures <M-A-S-9> | |
| DumpResourceTraceAction | |
| DumpThreads | |
| Dvcs.FileHistory.ContextMenu | |
| Dvcs.Log.ContextMenu | |
| Dvcs.Log.Toolbar | |
| EditBookmark | |
| EditBookmarksGroup | |
| EditBreakpoint <M-S-F8> | |
| EditBuildTypes | |
| EditCommitMessage | |
| EditCreateDeleteGroup | |
| EditCustomProperties | |
| EditCustomVmOptions | |
| EditFlavors | |
| EditInspectionSettings | |
| EditLibraryAndDependencies | |
| EditMacros | |
| EditMenu | |
| EditorActions | |
| EditorAddCaretPerSelectedLine <A-S-G> | |
| EditorAddOrRemoveCaret button=1 clickCount=1 modifiers=576 | |
| EditorAddRectangularSelectionOnMouseDrag button=1 clickCount=1 modifiers=832 | |
| EditorBackSpace <BS> <S-BS> | |
| EditorBackwardParagraph | |
| EditorBackwardParagraphWithSelection | |
| EditorBidiTextDirection | |
| EditorBreadcrumbsHideBoth | |
| EditorBreadcrumbsSettings | |
| EditorBreadcrumbsShowAbove | |
| EditorBreadcrumbsShowBelow | |
| EditorChooseLookupItem <CR> | |
| EditorChooseLookupItemCompleteStatement <M-S-CR> | |
| EditorChooseLookupItemDot <C-.> | |
| EditorChooseLookupItemReplace <Tab> | |
| EditorCloneCaretAbove | |
| EditorCloneCaretBelow | |
| EditorCodeBlockEnd <M-A-]> | |
| EditorCodeBlockEndWithSelection <M-A-S-]> | |
| EditorCodeBlockStart <M-A-[> | |
| EditorCodeBlockStartWithSelection <M-A-S-[> | |
| EditorCompleteStatement <M-S-CR> | |
| EditorContextBarMenu | |
| EditorContextInfo <C-S-Q> | |
| EditorCopy <M-C> | |
| EditorCreateRectangularSelection button=2 clickCount=1 modifiers=576 | |
| EditorCreateRectangularSelectionOnMouseDrag button=1 clickCount=1 modifiers=512 button=2 clickCount=1 modifiers=0 | |
| EditorCut <M-X> <S-Del> | |
| EditorCutLineBackward | |
| EditorCutLineEnd <C-K> | |
| EditorDecreaseFontSize | |
| EditorDecreaseFontSizeGlobal <C-S-,> | |
| EditorDelete <Del> | |
| EditorDeleteLine <M-BS> | |
| EditorDeleteToLineEnd | |
| EditorDeleteToLineStart | |
| EditorDeleteToWordEnd <A-Del> | |
| EditorDeleteToWordEndInDifferentHumpsMode | |
| EditorDeleteToWordStart <A-BS> | |
| EditorDeleteToWordStartInDifferentHumpsMode | |
| EditorDown <Down> <C-N> | |
| EditorDownWithSelection <S-Down> | |
| EditorDuplicate <M-D> | |
| EditorDuplicateLines | |
| EditorEnter <CR> | |
| EditorEscape <Esc> | |
| EditorFocusGutter <A-S-6> | |
| EditorForwardParagraph | |
| EditorForwardParagraphWithSelection | |
| EditorGutterPopupMenu | |
| EditorGutterPopupMenu.Appearance | |
| EditorGutterToggleGlobalIndentLines | |
| EditorGutterToggleGlobalLineNumbers | |
| EditorGutterVcsPopupMenu | |
| EditorHungryBackSpace | |
| EditorIncreaseFontSize | |
| EditorIncreaseFontSizeGlobal <C-S-.> | |
| EditorIndentLineOrSelection | |
| EditorIndentSelection <Tab> | |
| EditorJoinLines <C-S-J> | |
| EditorKillRegion | |
| EditorKillRingSave | |
| EditorKillToWordEnd | |
| EditorKillToWordStart | |
| EditorLangPopupMenu | |
| EditorLeft <Left> <C-B> | |
| EditorLeftWithSelection <S-Left> | |
| EditorLineEnd <End> <M-Right> <C-E> | |
| EditorLineEndWithSelection <S-End> <M-S-Right> | |
| EditorLineStart <Home> <M-Left> <C-A> | |
| EditorLineStartWithSelection <S-Home> <M-S-Left> | |
| EditorLookupDown | |
| EditorLookupSelectionDown | |
| EditorLookupSelectionUp | |
| EditorLookupUp | |
| EditorMatchBrace <C-M> | |
| EditorMoveDownAndScroll | |
| EditorMoveDownAndScrollWithSelection | |
| EditorMoveToPageBottom <M-Pagedown> | |
| EditorMoveToPageBottomWithSelection <M-S-Pagedown> | |
| EditorMoveToPageTop <M-Pageup> | |
| EditorMoveToPageTopWithSelection <M-S-Pageup> | |
| EditorMoveUpAndScroll | |
| EditorMoveUpAndScrollWithSelection | |
| EditorNextWord <A-Right> <A-C-F> | |
| EditorNextWordInDifferentHumpsMode | |
| EditorNextWordInDifferentHumpsModeWithSelection | |
| EditorNextWordWithSelection <A-S-Right> <A-C-S-F> | |
| EditorPageDown <Pagedown> | |
| EditorPageDownWithSelection <S-Pagedown> | |
| EditorPageUp <Pageup> | |
| EditorPageUpWithSelection <S-Pageup> | |
| EditorPaste <M-V> | |
| EditorPasteFromX11 button=2 clickCount=1 modifiers=0 | |
| EditorPasteSimple <M-A-S-V> | |
| EditorPopupMenu | |
| EditorPopupMenu.GoTo | |
| EditorPopupMenu.Run | |
| EditorPopupMenu1 | |
| EditorPopupMenu1.FindRefactor | |
| EditorPopupMenu2 | |
| EditorPopupMenu3 | |
| EditorPopupMenuAnalyze | |
| EditorPopupMenuDebug | |
| EditorPopupMenuDebugJava | |
| EditorPreviousWord <A-Left> <A-C-B> | |
| EditorPreviousWordInDifferentHumpsMode | |
| EditorPreviousWordInDifferentHumpsModeWithSelection | |
| EditorPreviousWordWithSelection <A-S-Left> <A-C-S-B> | |
| EditorResetFontSize | |
| EditorReverseLines | |
| EditorRight <Right> <C-F> | |
| EditorRightWithSelection <S-Right> | |
| EditorScrollBottom | |
| EditorScrollDown | |
| EditorScrollDownAndMove | |
| EditorScrollLeft | |
| EditorScrollRight | |
| EditorScrollToCenter <C-L> | |
| EditorScrollTop | |
| EditorScrollUp | |
| EditorScrollUpAndMove | |
| EditorSearchSession.NextOccurrenceAction | |
| EditorSearchSession.PrevOccurrence | |
| EditorSearchSession.ToggleMatchCase | |
| EditorSearchSession.ToggleRegex | |
| EditorSearchSession.ToggleWholeWordsOnlyAction | |
| EditorSelectLine | |
| EditorSelectSingleLineAtCaret | |
| EditorSelectWord <A-Up> | |
| EditorSetContentBasedBidiTextDirection | |
| EditorSetLtrBidiTextDirection | |
| EditorSetRtlBidiTextDirection | |
| EditorShowGutterIconTooltip <A-S-6> | |
| EditorSortLines | |
| EditorSplitLine <M-CR> | |
| EditorStartNewLine <S-CR> | |
| EditorStartNewLineBefore <M-A-CR> | |
| EditorSwapSelectionBoundaries | |
| EditorTab <Tab> | |
| EditorTabActionGroup | |
| EditorTabCompileGroup | |
| EditorTabPopupMenu | |
| EditorTabPopupMenuEx | |
| EditorTabsEntryPoint | |
| EditorTabsGroup | |
| EditorTextEnd <M-End> | |
| EditorTextEndWithSelection <M-S-End> | |
| EditorTextStart <M-Home> | |
| EditorTextStartWithSelection <M-S-Home> | |
| EditorToggleActions | |
| EditorToggleCase <M-S-U> | |
| EditorToggleColumnMode <M-S-8> | |
| EditorToggleInsertState | |
| EditorToggleShowBreadcrumbs | |
| EditorToggleShowGutterIcons | |
| EditorToggleShowIndentLines | |
| EditorToggleShowLineNumbers | |
| EditorToggleShowWhitespaces | |
| EditorToggleStickySelection | |
| EditorToggleUseSoftWraps | |
| EditorToggleUseSoftWrapsInPreview | |
| EditorTranspose | |
| EditorUnindentSelection <S-Tab> | |
| EditorUnSelectWord <A-Down> | |
| EditorUp <Up> <C-P> | |
| EditorUpWithSelection <S-Up> | |
| EditPropertyValue <A-F6> | |
| editRunConfigurations | |
| EditSelectGroup | |
| EditSelectWordGroup | |
| EditSmartGroup | |
| EditSource <M-Down> <F4> | |
| EditSourceInNewWindow <S-F4> | |
| EditSourceNotInEditor | |
| EmacsStyleIndent | |
| Emmet | |
| EmmetNextEditPoint <A-C-Right> | |
| EmmetPreview | |
| EmmetPreviousEditPoint <A-C-Left> | |
| EmmetUpdateTag | |
| EmojiAndSymbols <M-C- > | |
| EmulatorToolbar | |
| EnableCameraAction | |
| EnableMicrophoneAction | |
| EnableNewUi | |
| EnableScreenSharingAction | |
| EnableVoiceCallAction | |
| EncapsulateFields | |
| EncodingPanelActions | |
| EscapeEntities | |
| EscUnfollowUserAction <Esc> | |
| EvaluateExpression <A-F8> | |
| ExcludeFromStubGeneration | |
| excludeFromSuite | |
| excludeFromTestNGSuite | |
| ExcludeFromValidation | |
| excludeGroup | |
| ExecutionTargets | |
| ExecutionTargets.Additional | |
| ExecutionTargetsToolbarGroup | |
| Exit <M-Q> | |
| ExpandAll <M-k> <M-=> | |
| ExpandAllRegions <M-S-k> <M-S-=> | |
| ExpandAllToLevel | |
| ExpandAllToLevel1 <M-A-j> <M-A-j> | |
| ExpandAllToLevel2 <M-A-j> <M-A-j> | |
| ExpandAllToLevel3 <M-A-j> <M-A-j> | |
| ExpandAllToLevel4 <M-A-j> <M-A-j> | |
| ExpandAllToLevel5 <M-A-j> <M-A-j> | |
| ExpandCollapseToggleAction | |
| ExpandDocComments | |
| ExpandExpandableComponent <S-CR> <M-k> <M-=> | |
| ExpandLiveTemplateByTab <Tab> | |
| ExpandLiveTemplateCustom | |
| ExpandRegion <M-k> <M-=> | |
| ExpandRegionRecursively <M-A-k> <M-A-=> | |
| ExpandToLevel | |
| ExpandToLevel1 <M-j> <M-j> | |
| ExpandToLevel2 <M-j> <M-j> | |
| ExpandToLevel3 <M-j> <M-j> | |
| ExpandToLevel4 <M-j> <M-j> | |
| ExpandToLevel5 <M-j> <M-j> | |
| ExpandTreeNode <k> | |
| ExportImportGroup | |
| ExportSettings | |
| ExportTestResults | |
| ExportThreads | |
| ExportToEclipse | |
| ExportToHTML | |
| ExportToTextFile <C-O> | |
| ExpressionTypeInfo <C-S-P> | |
| 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 <M-m> <M--> | |
| ExternalSystem.CreateRunConfiguration | |
| ExternalSystem.DependencyAnalyzer.DependencyListGroup | |
| ExternalSystem.DependencyAnalyzer.DependencyTreeGroup | |
| ExternalSystem.DependencyAnalyzer.UsagesTreeGroup | |
| ExternalSystem.DetachProject <Del> <BS> <M-BS> | |
| ExternalSystem.EditRunConfiguration | |
| ExternalSystem.ExpandAll <M-k> <M-=> | |
| ExternalSystem.GroupModules | |
| ExternalSystem.GroupTasks | |
| ExternalSystem.HideProjectRefreshAction | |
| ExternalSystem.IgnoreProject | |
| ExternalSystem.OpenConfig <M-Down> <F4> | |
| ExternalSystem.OpenTasksActivationManager | |
| ExternalSystem.ProjectRefreshAction <M-S-I> | |
| ExternalSystem.ProjectRefreshActionGroup | |
| ExternalSystem.RefreshAllProjects | |
| ExternalSystem.RefreshProject | |
| ExternalSystem.RemoveRunConfiguration | |
| ExternalSystem.RunTask | |
| ExternalSystem.SelectProjectDataToImport | |
| ExternalSystem.ShowCommonSettings | |
| ExternalSystem.ShowIgnored | |
| ExternalSystem.ShowInheritedTasks | |
| ExternalSystem.ShowSettings | |
| ExternalSystem.ShowSettingsGroup | |
| ExternalSystemView.ActionsToolbar | |
| ExternalSystemView.ActionsToolbar.CenterPanel | |
| ExternalSystemView.ActionsToolbar.LeftPanel | |
| ExternalSystemView.ActionsToolbar.RightPanel | |
| ExternalSystemView.BaseProjectMenu | |
| ExternalSystemView.DependencyMenu | |
| ExternalSystemView.ModuleMenu | |
| ExternalSystemView.ProjectMenu | |
| ExternalSystemView.RunConfigurationMenu | |
| ExternalSystemView.TaskActivationGroup | |
| ExternalSystemView.TaskMenu | |
| ExternalToolsGroup | |
| ExtractClass | |
| ExtractFunction <M-A-M> | |
| ExtractFunctionToScope <M-A-S-M> | |
| ExtractInclude | |
| ExtractInterface | |
| ExtractMethod <M-A-M> | |
| ExtractMethodToolWindow.TreePopup | |
| ExtractModule | |
| ExtractSuperclass | |
| FileChooser.Delete <Del> <BS> <M-BS> | |
| FileChooser.GotoDesktop <M-D> | |
| FileChooser.GotoHome <M-1> | |
| FileChooser.GotoModule <M-3> | |
| FileChooser.GotoProject <M-2> | |
| FileChooser.GoToWslHome | |
| FileChooser.LightEditGotoOpenedFile | |
| FileChooser.NewFile | |
| FileChooser.NewFolder <M-N> | |
| FileChooser.Refresh <M-A-Y> | |
| FileChooser.ShowHidden | |
| FileChooser.TogglePathBar <M-P> | |
| FileChooserList | |
| FileChooserList.LevelUp <M-Up> | |
| FileChooserList.Root <M-/> | |
| FileChooserToolbar | |
| FileExportGroup | |
| FileHistory.AnnotateRevision | |
| FileHistory.KeymapGroup | |
| FileMainSettingsGroup | |
| FileMenu | |
| FileOpenGroup | |
| FileOtherSettingsGroup | |
| FilePropertiesGroup | |
| FileSettingsGroup | |
| FileStructurePopup <M-F12> | |
| FileTemplateSeparatorGroup | |
| FillParagraph | |
| Find <M-F> | |
| FindInFiles.Results.ContextMenu | |
| FindInPath <M-S-F> | |
| FindMenuGroup | |
| FindNext <M-G> | |
| FindPrevious <M-S-G> | |
| FindPrevWordAtCaret | |
| FindSelectionInPath | |
| FindUsages <A-F7> | |
| FindUsagesInFile <M-F7> | |
| FindUsagesMenuGroup | |
| FindWordAtCaret | |
| FixDocComment | |
| FixWSLFirewall | |
| FloatMode | |
| FocusEditor <Esc> | |
| FoldingGroup | |
| fontEditorPreview.ToggleBoldFont | |
| ForceOthersToFollowAction <C-S-O> | |
| ForceRefresh <M-A-S-R> | |
| ForceRunToCursor <M-A-F9> | |
| ForceStepInto <A-S-F7> | |
| ForceStepOver <A-S-F8> | |
| Forward <M-]> <M-A-Right> button=5 clickCount=1 modifiers=0 <A-L> | |
| ForwardPortAction | |
| ForwardPortAndNavigateInBrowser | |
| FullyExpandTreeNode <j> | |
| Gant.NewScript | |
| Generate <M-N> <C-CR> | |
| GenerateAfterClassMethod | |
| GenerateBeforeClassMethod | |
| GenerateBuilder | |
| GenerateConstructor | |
| GenerateCopyright | |
| GenerateCoverageReport | |
| GenerateCreateUI | |
| GenerateDataMethod | |
| GenerateDTD | |
| GenerateEquals | |
| GenerateExternalization | |
| GenerateFromTestCreatorsGroup | |
| GenerateGetter | |
| GenerateGetterAndSetter | |
| GenerateGradleDslGroup | |
| GenerateGroup | |
| GenerateJavadoc | |
| GenerateModuleDescriptors | |
| GenerateSetter | |
| GenerateSetUpMethod | |
| GenerateSuperMethodCall | |
| GenerateTearDownMethod | |
| GenerateTestDataPathFiles | |
| GenerateTestDataPathMethods | |
| GenerateTestMethod | |
| GenerateXmlTag | |
| Generify | |
| GetJoinLinkAction | |
| Git.Add <M-A-A> | |
| Git.Branch | |
| Git.Branches <M-S-\> | |
| Git.Branches.List | |
| Git.Branches.Popup.Settings | |
| Git.Branches.Popup.SpeedSearch | |
| Git.BranchOperationGroup | |
| Git.BrowseRepoAtRevision | |
| Git.ChangesView.AcceptTheirs | |
| Git.ChangesView.AcceptYours | |
| Git.ChangesView.Conflicts | |
| Git.ChangesView.Merge | |
| Git.Checkout.Branch | |
| Git.CheckoutGroup | |
| Git.CheckoutRevision | |
| Git.CherryPick.Abort | |
| Git.Clone | |
| Git.Commit.And.Push.Executor <M-A-K> | |
| Git.Commit.Stage <M-K> | |
| Git.CompareWithBranch | |
| Git.CompareWithTag | |
| Git.Configure.Remotes | |
| Git.ContextMenu | |
| Git.CreateNewBranch | |
| Git.CreateNewTag | |
| Git.Drop.Commits | |
| Git.Experimental.Branch.Popup.Actions | |
| Git.Fetch | |
| Git.FileActions | |
| Git.FileHistory.ContextMenu | |
| Git.Fixup.To.Commit | |
| Git.Ignore.File | |
| Git.Init | |
| Git.Interactive.Rebase | |
| Git.Log | |
| Git.Log.Branches.Change.Branch.Filter button=1 clickCount=2 modifiers=0 <CR> | |
| Git.Log.Branches.Change.Branch.Filter.On.Selection | |
| Git.Log.Branches.GroupBy.Directory | |
| Git.Log.Branches.GroupBy.Repository | |
| Git.Log.Branches.Grouping.Settings | |
| Git.Log.Branches.Navigate.Log.To.Branch.On.Selection | |
| Git.Log.Branches.Navigate.Log.To.Selected.Branch <A-F1> | |
| Git.Log.Branches.Settings | |
| Git.Log.ContextMenu | |
| Git.Log.ContextMenu.CheckoutBrowse | |
| Git.Log.DeepCompare | |
| Git.Log.Hide.Branches | |
| Git.Log.Toolbar | |
| Git.LogContextMenu | |
| Git.MainMenu | |
| Git.MainMenu.FileActions | |
| Git.MainMenu.LocalChanges | |
| Git.MainMenu.MergeActions | |
| Git.MainMenu.RebaseActions | |
| Git.Menu | |
| Git.Merge | |
| Git.Merge.Abort | |
| Git.New.Branch.In.Log <M-A-N> | |
| Git.Ongoing.Rebase.Actions | |
| Git.OpenExcludeFile | |
| Git.Pull <M-S-P> | |
| Git.PushUpToCommit | |
| Git.Rebase | |
| Git.Rebase.Abort | |
| Git.Rebase.Continue | |
| Git.Rebase.Skip | |
| Git.Rename.Local.Branch <F2> <S-F6> | |
| Git.Reset | |
| Git.Reset.In.Log | |
| Git.ResolveConflicts | |
| Git.Revert.Abort | |
| Git.Revert.In.Log | |
| Git.Reword.Commit <F2> <S-F6> | |
| Git.SelectInGitLog | |
| Git.Show.Stage | |
| Git.Show.Stash | |
| Git.ShowBranches <M-S-\> | |
| Git.Squash.Commits | |
| Git.Squash.Into.Commit | |
| Git.Stage.AcceptTheirs | |
| Git.Stage.AcceptYours | |
| Git.Stage.Add <M-A-A> | |
| Git.Stage.Add.All | |
| Git.Stage.Add.Tracked | |
| Git.Stage.Compare.Local.Staged | |
| Git.Stage.Compare.Staged.Head | |
| Git.Stage.Compare.Staged.Local | |
| Git.Stage.Compare.Three.Versions | |
| Git.Stage.Index.File.Menu | |
| Git.Stage.Local.File.Menu | |
| Git.Stage.Merge | |
| Git.Stage.Reset <M-A-Z> | |
| Git.Stage.Revert <M-A-Z> | |
| Git.Stage.Show.Local | |
| Git.Stage.Show.Staged | |
| Git.Stage.ThreeSideDiff | |
| Git.Stage.ToggleIgnored | |
| Git.Stage.Toolbar | |
| Git.Stage.Tree.Menu | |
| Git.Stage.Ui.Settings | |
| Git.Stash | |
| Git.Stash.Apply | |
| Git.Stash.ChangesBrowser.ContextMenu | |
| Git.Stash.Drop <Del> <BS> <M-BS> | |
| Git.Stash.Operations.ContextMenu | |
| Git.Stash.Pop | |
| Git.Stash.Refresh | |
| Git.Stash.Silently | |
| Git.Stash.UnstashAs | |
| Git.Tag | |
| Git.Toolbar.ShowMoreActions | |
| Git.Uncommit | |
| Git.Unstash | |
| GitBranchesTreePopupGroupByPrefixAction | |
| GitBranchesTreePopupResizeAction | |
| GitBranchesTreePopupTrackReposSynchronouslyAction | |
| GitCheckoutAction | |
| GitCheckoutAsNewBranch | |
| GitCheckoutFromInputAction | |
| GitCheckoutWithRebaseAction | |
| GitCompareWithBranchAction | |
| GitDeleteBranchAction | |
| Github.Copy.Link.To.GitHub | |
| Github.Create.Gist | |
| Github.Create.Pull.Request | |
| GitHub.MainMenu | |
| Github.Open.In.Browser | |
| Github.PullRequest.Changes.MarkNotViewed | |
| Github.PullRequest.Changes.MarkViewed | |
| Github.PullRequest.Changes.Popup | |
| Github.PullRequest.Changes.Toolbar | |
| Github.PullRequest.Comments.Reload <M-R> | |
| Github.PullRequest.Details.Commit.Tree.ViewOptions | |
| Github.PullRequest.Details.Popup | |
| Github.PullRequest.Details.Reload <M-R> | |
| Github.PullRequest.Diff.Comment.Create <M-S-X> | |
| Github.PullRequest.List.Reload <M-R> | |
| Github.PullRequest.Review.Submit | |
| Github.PullRequest.Show | |
| Github.PullRequest.Timeline.Popup | |
| Github.PullRequest.Timeline.Show | |
| Github.PullRequest.Timeline.Update <M-R> | |
| Github.PullRequest.ToolWindow.List.Popup | |
| Github.Share | |
| Github.Sync.Fork | |
| Github.View.Pull.Request | |
| GithubCopyPathProvider | |
| Gitlab.Create.Merge.Request | |
| Gitlab.Create.Merge.Request.List | |
| GitLabCoverageGroup | |
| GitMergeBranchAction | |
| GitNewBranchAction <M-A-N> | |
| GitPullBranchAction$WithMerge | |
| GitPullBranchAction$WithRebase | |
| GitPushBranchAction | |
| GitRebaseBranchAction | |
| GitRenameBranchAction | |
| GitRepositoryActions | |
| GitShowDiffWithBranchAction | |
| GitToolBox.BlameDetails <A-S-B> | |
| GitToolBox.CleanBranches | |
| GitToolBox.ContextMenu | |
| GitToolBox.CopyFileLink | |
| GitToolBox.DevelopmentGroup | |
| GitToolBox.Menu | |
| GitToolBox.OpenFileLink | |
| GitToolBox.OpenIssueLinks | |
| GitToolBox.PurchaseLicense | |
| GitToolBox.PushTags | |
| GitToolBox.RefreshBlame | |
| GitToolBox.ShowInlineBlame | |
| GitToolBox.SwitchRecentBranches | |
| GitUpdateSelectedBranchAction | |
| GotoAction <M-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> | |
| GotoBookmarkA | |
| GotoBookmarkB | |
| GotoBookmarkC | |
| GotoBookmarkD | |
| GotoBookmarkE | |
| GotoBookmarkF | |
| GotoBookmarkG | |
| GotoBookmarkH | |
| GotoBookmarkI | |
| GotoBookmarkJ | |
| GotoBookmarkK | |
| GotoBookmarkL | |
| GotoBookmarkM | |
| GotoBookmarkN | |
| GotoBookmarkO | |
| GotoBookmarkP | |
| GotoBookmarkQ | |
| GotoBookmarkR | |
| GotoBookmarkS | |
| GotoBookmarkT | |
| GotoBookmarkU | |
| GotoBookmarkV | |
| GotoBookmarkW | |
| GotoBookmarkX | |
| GotoBookmarkY | |
| GotoBookmarkZ | |
| GoToBuilder <A-S-B> | |
| GotoChangedFile | |
| GoToChangeMarkerGroup | |
| GotoClass <M-O> | |
| GoToCodeGroup | |
| GotoCustomRegion <M-A-.> | |
| GotoDeclaration <M-B> button=1 clickCount=1 modifiers=256 Force touch button=2 clickCount=1 modifiers=0 | |
| GotoDeclarationOnly | |
| GoToEditPointGroup | |
| GoToErrorGroup | |
| GotoFile <M-S-O> | |
| GotoImplementation <M-A-B> button=1 clickCount=1 modifiers=768 | |
| GoToLastTab | |
| GotoLine <M-L> | |
| GoToLinkTarget | |
| GoToMenu | |
| GotoNextBookmark | |
| GotoNextBookmarkInEditor | |
| GotoNextElementUnderCaretUsage <A-C-Down> | |
| GotoNextError <F2> | |
| GotoPrevElementUnderCaretUsage <A-C-Up> | |
| GotoPreviousBookmark | |
| GotoPreviousBookmarkInEditor | |
| GotoPreviousError <S-F2> | |
| GotoRelated <M-C-Up> | |
| GotoSuperMethod <M-U> | |
| GotoSymbol <M-A-O> | |
| GoToTab1 | |
| GoToTab2 | |
| GoToTab3 | |
| GoToTab4 | |
| GoToTab5 | |
| GoToTab6 | |
| GoToTab7 | |
| GoToTab8 | |
| GoToTab9 | |
| GoToTargetEx | |
| GotoTest <M-S-T> | |
| GotoTypeDeclaration <M-S-B> <C-S-B> button=1 clickCount=1 modifiers=320 | |
| Gradle.AddGradleDslDependencyAction | |
| Gradle.DependencyAnalyzer.GoTo | |
| Gradle.DependencyAnalyzer.OpenConfig | |
| Gradle.ExecuteTask | |
| Gradle.GenerateGroup | |
| Gradle.ImportExternalProject | |
| Gradle.OpenProjectCompositeConfiguration | |
| Gradle.ProjectViewDependencyAnalyzer | |
| Gradle.RefreshDependencies | |
| Gradle.ShowDaemons | |
| Gradle.ToggleOfflineAction | |
| Gradle.ToolbarDependencyAnalyzer | |
| Gradle.View.ActionsToolbar.CenterPanel | |
| Gradle.View.ActionsToolbar.LeftPanel | |
| Gradle.View.ActionsToolbar.RightPanel | |
| Gradle.View.DependencyMenu | |
| Gradle.View.ModuleMenu | |
| Gradle.View.ProjectMenu | |
| Gradle.ViewDependencyAnalyzer | |
| GradleProjectStructureActions | |
| Groovy.CheckResources | |
| Groovy.CheckResources.Make | |
| Groovy.CheckResources.Rebuild | |
| Groovy.Console | |
| Groovy.NewClass | |
| Groovy.NewScript | |
| GroovyGenerateGroup1 | |
| GuiDesigner.AddComponent | |
| GuiDesigner.AddGroup | |
| GuiDesigner.AddTab | |
| GuiDesigner.ChooseLocale | |
| GuiDesigner.ComponentTreePopupMenu | |
| GuiDesigner.CreateComponent <M-N> <C-CR> | |
| GuiDesigner.CreateListener <C-O> | |
| GuiDesigner.DecreaseIndent <S-Tab> | |
| GuiDesigner.DeleteComponent <Del> <BS> <M-BS> | |
| GuiDesigner.DeleteGroup <Del> <BS> <M-BS> | |
| GuiDesigner.Duplicate <M-D> | |
| GuiDesigner.EditComponent <F2> | |
| GuiDesigner.EditGroup <F2> | |
| GuiDesigner.EditorPopupMenu | |
| GuiDesigner.ExpandSelection <A-Up> | |
| GuiDesigner.Flatten | |
| GuiDesigner.FormSource | |
| GuiDesigner.GenerateMain | |
| GuiDesigner.GoToListener <M-A-B> button=1 clickCount=1 modifiers=768 | |
| GuiDesigner.GroupButtons | |
| GuiDesigner.IncreaseIndent <Tab> | |
| GuiDesigner.MainToolbarActions | |
| GuiDesigner.Morph | |
| GuiDesigner.NewActions | |
| GuiDesigner.Pack | |
| GuiDesigner.PaletteComponentPopupMenu | |
| GuiDesigner.PaletteGroupPopupMenu | |
| GuiDesigner.PreviewForm | |
| GuiDesigner.PropertyInspectorPopupMenu | |
| GuiDesigner.QuickJavadoc <F1> <C-J> button=2 clickCount=1 modifiers=128 | |
| GuiDesigner.ReloadCustomComponents | |
| GuiDesigner.ResetValue | |
| GuiDesigner.ShowComponentTags | |
| GuiDesigner.ShowGrid | |
| GuiDesigner.ShrinkSelection <A-Down> | |
| GuiDesigner.SurroundPopup <M-A-T> | |
| GuiDesigner.UngroupButtons | |
| Help.JetBrainsTV | |
| Help.KeymapReference | |
| HelpDiagnosticTools | |
| HelpMenu | |
| HelpTopics | |
| Hg.Commit.And.Push.Executor <M-A-K> | |
| Hg.Ignore.File | |
| Hg.Init | |
| Hg.Log.ContextMenu | |
| Hg.Mq | |
| Hg.MQ.Unapplied | |
| hg4idea.add <M-A-A> | |
| 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> <BS> <M-BS> | |
| hg4idea.QFinish | |
| hg4idea.QFold <A-S-D> | |
| hg4idea.QGoto | |
| hg4idea.QGotoFromPatches <A-S-G> | |
| hg4idea.QImport | |
| hg4idea.QPushAction <A-S-P> | |
| hg4idea.QRefresh <M-R> | |
| 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 <M-S-F12> | |
| HideCoverage | |
| HideSideWindows | |
| HidpiInfo | |
| HierarchyGroup | |
| HierarchyPopupMenu.Common | |
| HighlightUsagesInFile <M-S-F7> | |
| HippieBackwardCompletion <A-S-/> | |
| HippieCompletion <A-/> | |
| HostCodeWithMeMainGroup | |
| HostCodeWithMeSubMenuGroup | |
| HostCWMManageLicenseGroup | |
| Hotswap | |
| HtmlAddTableColumnAfter | |
| HtmlAddTableColumnBefore | |
| HtmlTableCellNavigateDown | |
| HtmlTableCellNavigateLeft | |
| HtmlTableCellNavigateRight | |
| HtmlTableCellNavigateUp | |
| I18nize | |
| idea.java.decompiler.action.group | |
| IdeaVim.ReloadVimRc.group | |
| IdeaVim.ReloadVimRc.reload <M-S-I> | |
| IdeScriptingConsole | |
| IgnoreChoicesGroup | |
| Images.ChangeBackground | |
| Images.ConvertSvgToPng | |
| Images.EditExternalEditorPath | |
| Images.EditExternally <M-A-F4> | |
| Images.Editor.ActualSize <M-o> <M-/> | |
| Images.Editor.FitZoomToWindow | |
| Images.Editor.ToggleGrid <M-Þ> | |
| Images.Editor.ZoomIn <M-k> <M-=> | |
| Images.Editor.ZoomOut <M-m> <M--> | |
| Images.EditorPopupMenu | |
| Images.EditorToolbar | |
| Images.ImageViewActions | |
| Images.SetBackgroundImage | |
| Images.ShowBorder | |
| Images.ShowThumbnails | |
| Images.Thumbnails.EnterAction <CR> | |
| Images.Thumbnails.Hide <M-W> | |
| Images.Thumbnails.ToggleFileName | |
| Images.Thumbnails.ToggleFileSize | |
| Images.Thumbnails.ToggleRecursive <A-j> | |
| Images.Thumbnails.ToggleTagsPanelName | |
| Images.Thumbnails.UpFolder <BS> | |
| Images.ThumbnailsPopupMenu | |
| Images.ThumbnailsToolbar | |
| Images.ThumbnailViewActions | |
| Images.ToggleTransparencyChessboard | |
| ImagesRootGroup | |
| ImplementMethods <C-I> | |
| ImportModule | |
| ImportModuleFromImlFile | |
| ImportProject | |
| ImportSettings | |
| ImportTests | |
| ImportTestsFromFile | |
| InactiveStopActionPlaceholder | |
| IncomingChanges.Refresh | |
| IncomingChangesToolbar | |
| IncrementalSearch | |
| IncrementWindowHeight <A-C-Down> | |
| IncrementWindowWidth <A-C-Right> | |
| IndexingDiagnosticGroup | |
| InferAnnotations | |
| InferNullity | |
| InheritanceToDelegation | |
| InlayMenu | |
| Inline <M-A-N> | |
| InsertLiveTemplate <M-J> | |
| InspectCode | |
| InspectCodeActionInPopupMenus | |
| InspectCodeGroup | |
| InspectCodeInCodeMenuGroup | |
| InspectionToolWindow.TreePopup | |
| IntegrateChangeSetAction | |
| IntegrateFiles | |
| IntroduceActionsGroup | |
| IntroduceConstant <M-A-C> | |
| IntroduceField <M-A-F> | |
| IntroduceFunctionalParameter <M-A-S-P> | |
| IntroduceFunctionalVariable | |
| IntroduceParameter <M-A-P> | |
| IntroduceParameterObject | |
| IntroduceProperty <M-A-F> | |
| IntroduceTypeAlias <M-A-S-A> | |
| IntroduceTypeParameter | |
| IntroduceVariable <M-A-V> | |
| InvalidateCaches | |
| InvertBoolean | |
| Java.BuildMenu | |
| Java.ImportFrom.Group | |
| Java.MarkRootGroup | |
| Java.ProjectTemplate.Group | |
| JavaCompileGroup | |
| JavaControlBreak | |
| JavaDebuggerActions | |
| JavaFxCreateActions | |
| JavaGenerateGroup1 | |
| JavaGenerateGroup2 | |
| JavaMethodHierarchyPopupMenu | |
| JavaNewProjectOrModuleGroup | |
| JavaSoftExit | |
| JoinCallAction | |
| JShell.Console | |
| JsonCopyPointer | |
| JsonPathEvaluateAction | |
| JsonPathExportEvaluateResultAction <C-O> | |
| JumpToColorsAndFonts | |
| JumpToLastChange <M-S-BS> | |
| JumpToLastWindow <F12> | |
| JumpToNextChange | |
| junit.add.to.pattern.group | |
| junit.exclude.group | |
| KeepTabOpen | |
| Kotlin.ClearScratch | |
| Kotlin.Gradle.ShowDslLogs | |
| Kotlin.NewFile | |
| Kotlin.NewScript | |
| Kotlin.RunScratch <M-A-W> | |
| Kotlin.StopScratch | |
| Kotlin.XDebugger.Actions | |
| Kotlin.XDebugger.CoroutinesDump | |
| Kotlin.XDebugger.ToggleKotlinVariableView | |
| KotlinCodeMigration | |
| KotlinCodeMigrationToggle | |
| KotlinConfigureUpdates | |
| KotlinConsoleREPL | |
| KotlinGenerateDataMethod | |
| KotlinGenerateEqualsAndHashCode | |
| KotlinGenerateGroup | |
| KotlinGenerateMavenCompileExecutionAction | |
| KotlinGenerateMavenPluginAction | |
| KotlinGenerateMavenTestCompileExecutionAction | |
| KotlinGenerateSecondaryConstructor | |
| KotlinGenerateSetUpMethod | |
| KotlinGenerateTearDownMethod | |
| KotlinGenerateTestMethod | |
| KotlinGenerateToString | |
| KotlinMavenGenerate | |
| KotlinRefactoringTesting | |
| KotlinShellExecute <M-CR> | |
| KotlinToolsGroup | |
| krasa.MavenHelper.DebugTestFileAction | |
| krasa.MavenHelper.RunTestFileAction | |
| LangCodeInsightActions | |
| LanguageSpecificFoldingGroup | |
| LayoutEditor.AddSampleData | |
| LayoutsGroup | |
| LearnGroup | |
| LearnMore | |
| LeftToolbarSideGroup | |
| LegacyNewAndroidComponent | |
| Library.Properties | |
| LibraryProperties | |
| LightEditModePopup | |
| LightEditOpenFileInProject | |
| List-scrollDown <Pagedown> | |
| List-scrollDownExtendSelection <S-Pagedown> | |
| List-scrollUp <Pageup> | |
| List-scrollUpExtendSelection <S-Pageup> | |
| List-selectFirstRow <A-Up> | |
| List-selectFirstRowExtendSelection <A-S-Up> | |
| List-selectLastRow <A-Down> | |
| List-selectLastRowExtendSelection <A-S-Down> | |
| List-selectNextColumn <Right> <C-F> | |
| List-selectNextColumnExtendSelection <S-Right> | |
| List-selectNextRow <Down> <C-N> | |
| List-selectNextRowExtendSelection <S-Down> | |
| List-selectPreviousColumn <Left> <C-B> | |
| List-selectPreviousColumnExtendSelection <S-Left> | |
| List-selectPreviousRow <Up> <C-P> | |
| List-selectPreviousRowExtendSelection <S-Up> | |
| ListActions | |
| LoadConfigurationAction | |
| LoadUnloadModules | |
| LocalChangesView.GearActions | |
| LocalChangesView.ShowOnDoubleClick | |
| LocalChangesView.ShowOnDoubleClick.EditorPreview | |
| LocalChangesView.ShowOnDoubleClick.Source | |
| LocalHistory | |
| LocalHistory.MainMenuGroup | |
| LocalHistory.PutLabel | |
| LocalHistory.ShowHistory | |
| LocalHistory.ShowSelectionHistory | |
| LocalHistory.Vcs.Operations.Popup.Group | |
| Log.FileHistory.KeymapGroup | |
| Log.KeymapGroup | |
| Log.Unsorted.KeymapGroup | |
| Logcat.LogcatActions | |
| Logcat.ToggleViewFormat | |
| LogDebugConfigure | |
| LogFocusRequests | |
| LombokActionGroup | |
| LookupActions | |
| Macros | |
| MacrosGroup | |
| main.toolbar.Filename | |
| main.toolbar.git.Branches | |
| main.toolbar.Project | |
| MainMenu | |
| MainMenuButton.ShowMenu | |
| MaintenanceAction <M-A-S-/> | |
| MaintenanceGroup | |
| MainToolBar | |
| MainToolbarCenter | |
| MainToolbarLeft | |
| MainToolbarPopupActions | |
| MainToolbarRight | |
| MainToolBarSettings | |
| MakeAllJarsAction | |
| MakeJarAction | |
| MakeModule | |
| MakeStatic | |
| ManageProjectTemplates | |
| ManageRecentProjects | |
| ManageTargets | |
| MarkAsContentRoot | |
| Markdown.ConfigurePandoc | |
| Markdown.EditorContextMenuGroup | |
| Markdown.Export | |
| Markdown.Extensions.CleanupExternalFiles | |
| Markdown.GenerateTableOfContents | |
| Markdown.GoogleDocsImport | |
| Markdown.ImportFromDocx | |
| Markdown.Insert <M-N> <C-CR> | |
| Markdown.InsertEmptyTable | |
| Markdown.InsertGroup | |
| Markdown.Layout.EditorAndPreview | |
| Markdown.Layout.EditorOnly | |
| Markdown.Layout.PreviewOnly | |
| Markdown.OpenDevtools | |
| Markdown.Styling.CreateLink <M-S-U> | |
| Markdown.Styling.CreateOrChangeList | |
| Markdown.Styling.SetHeaderLevel | |
| Markdown.Table.ColumnAlignmentActions | |
| Markdown.Table.InsertRow.InsertAbove | |
| Markdown.Table.InsertRow.InsertBelow | |
| Markdown.Table.InsertTableColumn.InsertAfter | |
| Markdown.Table.InsertTableColumn.InsertBefore | |
| Markdown.Table.RemoveCurrentColumn | |
| Markdown.Table.RemoveCurrentRow | |
| Markdown.Table.SelectCurrentColumn.SelectContentCells | |
| Markdown.Table.SelectRow | |
| Markdown.Table.SetColumnAlignment.Center | |
| Markdown.Table.SetColumnAlignment.Left | |
| Markdown.Table.SetColumnAlignment.Right | |
| Markdown.Table.SwapColumns.SwapWithLeftColumn | |
| Markdown.Table.SwapColumns.SwapWithRightColumn | |
| Markdown.Table.SwapRows.SwapWithAbove | |
| Markdown.Table.SwapRows.SwapWithBelow | |
| Markdown.TableActions | |
| Markdown.TableColumnActions | |
| Markdown.TableColumnActions.ColumnAlignmentActions.Popup | |
| Markdown.TableContextMenuGroup | |
| Markdown.TableRowActions | |
| Markdown.Toolbar.Floating | |
| Markdown.Toolbar.Left | |
| Markdown.Toolbar.Right | |
| Markdown.Tools | |
| 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 <M-m> <M--> | |
| Maven.CreateRunConfiguration | |
| Maven.DependencyAnalyzer.GoTo | |
| Maven.DependencyAnalyzer.OpenConfig | |
| Maven.DependencyMenu | |
| Maven.DownloadAllDocs | |
| Maven.DownloadAllGroup | |
| Maven.DownloadAllGroupPopup | |
| Maven.DownloadAllSources | |
| Maven.DownloadAllSourcesAndDocs | |
| Maven.DownloadSelectedDocs | |
| Maven.DownloadSelectedSources | |
| Maven.DownloadSelectedSourcesAndDocs | |
| Maven.EditRunConfiguration | |
| Maven.ExecuteGoal | |
| Maven.ExpandAll <M-k> <M-=> | |
| Maven.GenerateGroup | |
| Maven.GlobalProjectMenu | |
| Maven.GroupProjects | |
| Maven.IgnoreProjects | |
| Maven.NavigatorActionsToolbar | |
| Maven.NavigatorDependencyAnalyzer | |
| Maven.NavigatorProjectMenu | |
| Maven.OpenProfilesXml | |
| Maven.OpenSettingsXml | |
| Maven.ProjectViewDependencyAnalyzer | |
| Maven.RefactoringGroup | |
| Maven.Reimport | |
| Maven.ReimportProject | |
| Maven.RemoveManagedFiles | |
| Maven.RemoveRunConfiguration | |
| Maven.RunBuild | |
| Maven.RunConfigurationMenu | |
| Maven.ShowBasicPhasesOnly | |
| Maven.ShowConnectors | |
| Maven.ShowEffectivePom | |
| Maven.ShowIgnored | |
| Maven.ShowSettings | |
| Maven.ShowSettingsGroup | |
| Maven.ShowVersions | |
| Maven.TasksGroup | |
| Maven.ToggleLookNested | |
| Maven.ToggleOffline | |
| Maven.ToggleProfile | |
| Maven.ToggleSkipTests | |
| Maven.UpdateFolders | |
| Maven.UpdateFoldersForProject | |
| Maven.ViewDependencyAnalyzer | |
| MavenHelper.BaseProjectMenu | |
| MavenHelper.CreateCustomGoalAction | |
| MavenHelper.OpenTerminalAction | |
| MavenHelper.QuickRunMavenGoal <M-A-R> | |
| MavenHelper.QuickRunRootMavenGoal <M-A-S-R> | |
| MavenRunHelperClean | |
| MavenRunHelperCleanInstall | |
| MavenRunHelperCompile | |
| MavenRunHelperDebugClean | |
| MavenRunHelperDebugCleanInstall | |
| MavenRunHelperDebugCompile | |
| MavenRunHelperDebugDeploy | |
| MavenRunHelperDebugInstall | |
| MavenRunHelperDebugJetty:run | |
| MavenRunHelperDebugPackage | |
| MavenRunHelperDebugSite | |
| MavenRunHelperDebugTest | |
| MavenRunHelperDebugTomcat5:run | |
| MavenRunHelperDebugTomcat6:run | |
| MavenRunHelperDebugTomcat7:run | |
| MavenRunHelperDebugTomcat:run | |
| MavenRunHelperDebugValidate | |
| MavenRunHelperDebugVerify | |
| MavenRunHelperDeploy | |
| MavenRunHelperInstall | |
| MavenRunHelperJetty:run | |
| MavenRunHelperPackage | |
| MavenRunHelperSite | |
| MavenRunHelperTest | |
| MavenRunHelperTomcat5:run | |
| MavenRunHelperTomcat6:run | |
| MavenRunHelperTomcat7:run | |
| MavenRunHelperTomcat:run | |
| MavenRunHelperValidate | |
| MavenRunHelperVerify | |
| MaximizeActiveDialog | |
| MaximizeEditorInSplit | |
| MaximizeToolWindow <M-S-Þ> | |
| MemberPushDown | |
| MembersPullUp | |
| Memory.CalculateRetainedSize | |
| MemoryView.ClassesPopupActionGroup | |
| MemoryView.EnableTrackingWithClosedWindow | |
| MemoryView.JumpToTypeSource | |
| MemoryView.SettingsPopupActionGroup | |
| MemoryView.ShowAllocationStackTrace | |
| MemoryView.ShowInstances | |
| MemoryView.ShowInstancesFromDebuggerTree | |
| MemoryView.ShowNewInstances | |
| MemoryView.ShowOnlyTracked | |
| MemoryView.ShowOnlyWithDiff | |
| MemoryView.ShowOnlyWithInstances | |
| MemoryView.SwitchUpdateMode | |
| MemoryView.TrackingAction.NewInstancesTracking | |
| MergeAllWindowsAction | |
| MethodDown <C-S-Down> | |
| MethodDuplicates | |
| MethodHierarchy <M-S-H> | |
| MethodHierarchy.BaseOnThisMethod <M-S-H> | |
| MethodHierarchy.ImplementMethodAction <C-I> | |
| MethodHierarchy.OverrideMethodAction <C-O> | |
| MethodHierarchyPopupMenu | |
| MethodOverloadSwitchDown <A-Down> | |
| MethodOverloadSwitchUp <A-Up> | |
| MethodUp <C-S-Up> | |
| MigrationMenu | |
| MigrationMenu1 | |
| MinimizeCurrentWindow <M-M> | |
| ModuleSettings | |
| MoreRunToolbarActions | |
| Move <F6> | |
| MoveEditorToOppositeTabGroup | |
| MoveElementLeft <M-A-S-Left> | |
| MoveElementRight <M-A-S-Right> | |
| MoveLineDown <A-S-Down> | |
| MoveLineUp <A-S-Up> | |
| MoveMinimap | |
| MoveModuleToGroup | |
| MoveStatementDown <M-S-Down> | |
| MoveStatementUp <M-S-Up> | |
| MoveTabDown | |
| MoveTabRight | |
| Mq.Patches.ContextMenu | |
| Mq.Patches.Toolbar | |
| NavBar-cancel <Esc> | |
| NavBar-navigate <M-Down> <F4> | |
| NavBar-return <CR> | |
| NavBar-selectDown <Down> <C-N> | |
| NavBar-selectEnd <End> <M-Right> <C-E> | |
| NavBar-selectHome <Home> <M-Left> <C-A> | |
| NavBar-selectLeft <Left> <C-B> | |
| NavBar-selectRight <Right> <C-F> | |
| NavBar-selectUp <Up> <C-P> | |
| NavBarActions | |
| NavBarLocationBottom | |
| NavbarLocationGroup | |
| NavBarLocationHide | |
| NavBarLocationTop | |
| NavbarPopupMenu | |
| NavBarToolBar | |
| NavBarToolBarOthers | |
| NavBarVcsGroup | |
| NavEditor.HelpAssistant | |
| NavigateInBrowser | |
| NavigateInFileGroup | |
| NewAction | |
| NewAndroidImageAsset | |
| NewAndroidVectorAsset | |
| NewClass | |
| newConfigurationDebugClass | |
| newConfigurationProfileGroupRunClass | |
| newConfigurationProfileRunClass | |
| newConfigurationRunClass | |
| newConfigurationRunCoverage | |
| NewDialog | |
| NewDir | |
| NewEditorConfigFile | |
| NewElement <M-N> <C-CR> | |
| NewElementInMenuGroup | |
| NewElementSamePlace <A-C-N> | |
| NewFile | |
| NewForm | |
| NewFromTemplate | |
| NewFxmlFile | |
| NewGroup | |
| NewGroup1 | |
| NewHtmlFile | |
| NewJavaFXApplication | |
| NewJavaSpecialFile | |
| NewMigration | |
| NewModule | |
| NewModuleInfo | |
| NewModuleInGroup | |
| NewPackageInfo | |
| NewProject | |
| NewProjectOrModuleGroup | |
| NewScratchBuffer | |
| NewScratchFile <M-S-N> | |
| NewToolbarActions | |
| NewUiRunWidget | |
| NewWebDevelopment | |
| NewXml | |
| NewXmlDescriptor | |
| NextDiff <F7> | |
| NextEditorTab <C-S-Right> | |
| NextLessonAction | |
| NextOccurence <M-A-Down> | |
| NextParameter <Tab> | |
| NextProjectWindow <M-A-À> | |
| NextSplitter <A-Tab> | |
| NextTab <M-S-]> <C-Right> | |
| NextTemplateParameter | |
| NextTemplateVariable <Tab> <CR> | |
| NextWindow <M-À> | |
| NotebookOutputCollapseActions | |
| NotebookOutputCollapseAllAction | |
| NotebookOutputCollapseAllInCellAction | |
| NotebookOutputCollapseAllInSelectedCellsAction | |
| NotebookOutputCollapseSingleInCellAction | |
| Notifications | |
| OnlineDocAction | |
| openAssertEqualsDiff <M-D> | |
| OpenBlankEditorInBlankDiffWindow | |
| OpenBookmarkGroup <M-Down> <F4> | |
| OpenCallToolwindowAction | |
| OpenEditorInOppositeTabGroup | |
| OpenElementInNewWindow | |
| OpenFile | |
| OpenFileEditorInBlankDiffWindow | |
| OpenInBrowser | |
| OpenInBrowserEditorContextBarGroupAction | |
| OpenInBrowserGroup | |
| OpenInRightSplit <S-CR> button=1 clickCount=2 modifiers=512 | |
| OpenInSceneBuilder | |
| OpenMinimapSettings | |
| OpenModuleSettings <M-Down> <F4> | |
| OpenMouseWheelSmoothScrollSettings | |
| OpenPortForwardingToolwindowAction | |
| OpenProjectGroup | |
| OpenProjectWindows | |
| OpenRecentEditorInBlankDiffWindow | |
| OptimizeImports <A-C-O> | |
| org.editorconfig.configmanagement.generate.EditorConfigGenerateLanguagePropertiesAction | |
| org.intellij.plugins.markdown.ui.actions.scrolling.AutoScrollAction | |
| org.intellij.plugins.markdown.ui.actions.styling.HeaderDownAction | |
| org.intellij.plugins.markdown.ui.actions.styling.HeaderUpAction | |
| org.intellij.plugins.markdown.ui.actions.styling.InsertImageAction <M-U> | |
| org.intellij.plugins.markdown.ui.actions.styling.MarkdownIntroduceLinkReferenceAction | |
| org.intellij.plugins.markdown.ui.actions.styling.ToggleBoldAction <M-B> | |
| org.intellij.plugins.markdown.ui.actions.styling.ToggleCodeSpanAction <M-S-C> | |
| org.intellij.plugins.markdown.ui.actions.styling.ToggleItalicAction <M-I> | |
| org.intellij.plugins.markdown.ui.actions.styling.ToggleStrikethroughAction <M-S-S> | |
| org.jetbrains.plugins.groovy.actions.generate.accessors.GroovyGenerateGetterAction | |
| org.jetbrains.plugins.groovy.actions.generate.accessors.GroovyGenerateGetterSetterAction | |
| org.jetbrains.plugins.groovy.actions.generate.accessors.GroovyGenerateSetterAction | |
| org.jetbrains.plugins.groovy.actions.generate.constructors.GroovyGenerateConstructorAction | |
| org.jetbrains.plugins.groovy.actions.generate.equals.GroovyGenerateEqualsAction | |
| org.jetbrains.plugins.groovy.actions.generate.missing.GroovyGenerateMethodMissingAction | |
| org.jetbrains.plugins.groovy.actions.generate.missing.GroovyGeneratePropertyMissingAction | |
| org.jetbrains.plugins.groovy.actions.generate.tostring.GroovyGenerateToStringAction | |
| org.jetbrains.plugins.notebooks.visualization.r.inlays.components.ClearOutputAction | |
| org.jetbrains.plugins.notebooks.visualization.r.inlays.components.CopyImageToClipboardAction | |
| org.jetbrains.plugins.notebooks.visualization.r.inlays.components.InlayOutputToolbarActions | |
| org.jetbrains.plugins.notebooks.visualization.r.inlays.components.SaveOutputAction | |
| org.jetbrains.security.actions.AnalyzeVulnerableDependencies | |
| org.jetbrains.security.toolwindow.tree.actions.FindUsagesAction <A-F7> | |
| org.jetbrains.security.toolwindow.tree.actions.NavigateToSource <M-Down> <F4> | |
| org.jetbrains.security.toolwindow.tree.actions.OnlyVulnerableToggleAction | |
| org.jetbrains.security.toolwindow.tree.actions.RefreshAction | |
| Other.KeymapGroup | |
| OtherMenu | |
| OverrideFileTypeAction | |
| OverrideMethods <C-O> | |
| PackageChecker.Toolwindow.ToolBar | |
| PackageChecker.Toolwindow.Tree.Popup | |
| PackageFile <M-S-F9> | |
| PackageSearch.Gradle.DependencyAnalyzer.GoTo | |
| PackageSearch.Maven.DependencyAnalyzer.GoTo | |
| PairFileActions | |
| ParameterInfo <M-P> | |
| ParameterNameHints | |
| PasteGroup | |
| PasteMultiple <M-S-V> | |
| Patch.MainMenu | |
| Pause | |
| PauseOutput | |
| Perforce.Force.Refresh | |
| Perforce.Shelve | |
| Perforce.SyncToRevision | |
| Perforce.Toolbar.PerforceToolbarWidgetAction | |
| Perforce.Toolbar.ShowMoreActions | |
| Perforce.Toolbar.WorkspaceAction | |
| Perforce.Unshelve | |
| Perforce.Unshelve.And.Delete | |
| PerforceDirect.Edit <M-A-E> | |
| PerforceDirect.Menu | |
| PerforceEnableIntegration | |
| Performance.ActivityMonitor | |
| Performance.DumpThreads | |
| Performance.MemTester | |
| performancePlugin.ExecuteScriptAction | |
| performancePlugin.OpenIndexingDiagnosticsAction | |
| performancePlugin.ShowMemoryDialogAction | |
| PinActiveEditorTab | |
| PinActiveTab | |
| PinActiveTabToggle | |
| PinToolwindowTab | |
| PlaybackLastMacro | |
| PlaySavedMacrosAction | |
| plugin.InstallFromDiskAction | |
| PluginDeployActions | |
| popup@BookmarkContextMenu | |
| popup@ExpandableBookmarkContextMenu | |
| PopupHector <M-A-S-H> | |
| PopupMenu-cancel <Esc> | |
| PopupMenu-return <CR> | |
| PopupMenu-selectChild <Right> <C-F> | |
| PopupMenu-selectNext <Down> <C-N> | |
| PopupMenu-selectParent <Left> <C-B> | |
| PopupMenu-selectPrevious <Up> <C-P> | |
| PopupMenuActions | |
| PortForwardingPortGroup | |
| PortForwardingSuggestionGroup | |
| PowerSaveGroup | |
| PreviousDiff <S-F7> | |
| PreviousEditorTab <C-S-Left> | |
| PreviousLessonAction | |
| PreviousOccurence <M-A-Up> | |
| PreviousProjectWindow <M-A-S-À> | |
| PreviousTab <M-S-[> <C-Left> | |
| PreviousTemplateVariable <S-Tab> | |
| PreviousWindow <M-S-À> | |
| PrevParameter <S-Tab> | |
| PrevSplitter <A-S-Tab> | |
| PrevTemplateParameter | |
| PrintExportGroup | |
| ProblemsView.AutoscrollToSource | |
| ProblemsView.CopyProblemDescription <M-C> | |
| ProblemsView.GroupByToolId | |
| ProblemsView.OpenInPreviewTab | |
| ProblemsView.Options | |
| ProblemsView.QuickFixes <A-CR> | |
| ProblemsView.SeverityFilters | |
| ProblemsView.ShowPreview | |
| ProblemsView.SortByName | |
| ProblemsView.SortBySeverity | |
| ProblemsView.SortFoldersFirst | |
| ProblemsView.ToolWindow.SecondaryActions | |
| ProblemsView.ToolWindow.Toolbar | |
| ProblemsView.ToolWindow.TreePopup | |
| ProductivityFeatures | |
| ProductivityGuide | |
| ProfileGroupRunClass | |
| ProfileRunClass | |
| ProjectFromVersionControl | |
| ProjectView.AbbreviatePackageNames | |
| ProjectView.AutoscrollFromSource | |
| ProjectView.AutoscrollToSource | |
| ProjectView.CompactDirectories | |
| ProjectView.FileNesting | |
| ProjectView.FlattenModules | |
| ProjectView.FlattenPackages | |
| ProjectView.FoldersAlwaysOnTop | |
| ProjectView.HideEmptyMiddlePackages | |
| ProjectView.ManualOrder | |
| ProjectView.OpenInPreviewTab | |
| ProjectView.ShowExcludedFiles | |
| ProjectView.ShowLibraryContents | |
| ProjectView.ShowMembers | |
| ProjectView.ShowModules | |
| ProjectView.ShowScratchesAndConsoles | |
| ProjectView.ShowVisibilityIcons | |
| ProjectView.SortByType | |
| ProjectView.ToolWindow.Appearance.Actions | |
| ProjectView.ToolWindow.SecondaryActions | |
| ProjectViewAnalysisGroup | |
| ProjectViewCompileGroup | |
| ProjectViewEditSource <M-Down> <F4> | |
| ProjectViewPopupMenu | |
| ProjectViewPopupMenuModifyGroup | |
| ProjectViewPopupMenuRefactoringGroup | |
| ProjectViewPopupMenuRunGroup | |
| ProjectViewPopupMenuSettingsGroup | |
| ProjectViewTabToolbar | |
| ProjectViewToolbar | |
| ProjectWidget.Actions | |
| PsdProjectStructureActions | |
| PsiViewer | |
| PsiViewerForContext | |
| Qodana.OpenQodanaCloudReportAction | |
| Qodana.OpenQodanaCloudSettingsAction | |
| Qodana.OpenReportAction | |
| Qodana.ProblemsView | |
| Qodana.ProblemsView.Link | |
| Qodana.ProblemsView.Login | |
| Qodana.ProblemsView.Options | |
| Qodana.ProblemsView.SeverityFilters | |
| Qodana.ProblemsView.SortByName | |
| Qodana.ProblemsView.SortBySeverity | |
| Qodana.SarifFileReportAction | |
| Qodana.ShowReportGroup | |
| QuickActionPopup <M-A-CR> | |
| QuickActions | |
| QuickChangeScheme <C-À> | |
| QuickDocCopy <M-C> | |
| QuickEvaluateExpression <M-A-F8> button=1 clickCount=1 modifiers=512 | |
| QuickFixes | |
| QuickImplementations <A- > <M-Y> | |
| QuickJavaDoc <F1> <C-J> button=2 clickCount=1 modifiers=128 | |
| QuickPreview < > | |
| QuickTypeDefinition | |
| Rainbow.ScopeHighlightingAction button=3 clickCount=1 modifiers=256 | |
| Rainbow.ScopeOutsideHighlightingRestrainAction button=3 clickCount=1 modifiers=512 | |
| RearrangeCode | |
| RecentChangedFiles | |
| RecentChanges <A-S-C> | |
| RecentFiles <M-E> | |
| RecentLocations <M-S-E> | |
| RecentProjectListGroup | |
| RedesignedRunConfigurationSelector | |
| refactoring.extract.dependency <M-A-M> | |
| refactoring.introduce.property <M-A-V> | |
| RefactoringMenu | |
| RefactoringMenu1 | |
| RefactoringMenu2 | |
| RefactoringMenu4 | |
| RefactoringMenuRenameFile | |
| Refactorings.QuickListPopupAction <C-T> | |
| ReformatCode <M-A-L> | |
| Refresh <M-R> | |
| RefreshLinkedCppProjects | |
| RegisterPlugins | |
| RemoteServers.AddCloudConnectionGroup | |
| RemoteServers.ChooseServerDeployment | |
| RemoteServers.ChooseServerDeploymentWithDebug | |
| RemoteServers.ConnectServer | |
| RemoteServers.DisconnectServer | |
| RemoteServers.EditDeploymentConfig | |
| RemoteServers.EditServerConfig <S-F4> | |
| RemoteServersViewPopup | |
| RemoteServersViewToolbar | |
| RemoteServersViewToolbar.Top | |
| RemoveBom | |
| RemoveBom.Group | |
| RenameElement <S-F6> | |
| RenameFile | |
| ReopenClosedTab | |
| Replace <M-R> | |
| ReplaceInPath <M-S-R> | |
| ReplaceMethodWithMethodObject | |
| ReportProblem | |
| RepositoryChangesBrowserToolbar | |
| Rerun <M-R> | |
| RerunFailedTests | |
| RerunTests <M-C-R> <A-S-R> | |
| ResetIdeScaleAction <A-C-0> | |
| ResetLearningProgressAction | |
| ResetWindowsDefenderNotification | |
| ResizeToolWindowDown <A-C-Down> | |
| ResizeToolWindowGroup | |
| ResizeToolWindowLeft <A-C-Left> | |
| ResizeToolWindowRight <A-C-Right> | |
| ResizeToolWindowUp <A-C-Up> | |
| Resolve | |
| ResolveAll | |
| ResourceExplorer | |
| ResourceExplorer.CopyValue | |
| ResourceExplorer.open | |
| ResourceExplorer.show <M-S-T> | |
| ResourceExplorer.webp | |
| RestartIde | |
| RestartLessonAction | |
| RestoreDefaultExtensionScripts | |
| RestoreDefaultLayout <S-F12> | |
| RestoreDefaultSettings | |
| RestoreFontPreviewTextAction | |
| Resume <M-A-R> <F9> | |
| RevealGroup | |
| RevealIn | |
| ReverteOverrideFileTypeAction | |
| RevertUnchanged | |
| RevisionGraph | |
| RightToolbarSideGroup | |
| Run <C-R> | |
| RunAnything | |
| RunClass <C-S-R> | |
| RunConfiguration | |
| RunConfigurationTemplatesForNewProjects | |
| RunContextGroup | |
| RunContextGroupInner | |
| RunContextGroupMore | |
| RunContextPopupGroup | |
| RunCoverage | |
| RunDashboard.AddType | |
| RunDashboard.ClearContent | |
| RunDashboard.CopyConfiguration <M-D> | |
| RunDashboard.Debug <C-S-D> | |
| RunDashboard.EditConfiguration <S-F4> | |
| RunDashboard.Filter | |
| RunDashboard.GroupBy | |
| RunDashboard.GroupByStatus | |
| RunDashboard.GroupByType | |
| RunDashboard.GroupConfigurations | |
| RunDashboard.HideConfiguration | |
| RunDashboard.OpenRunningConfigInNewTab | |
| RunDashboard.RemoveType | |
| RunDashboard.RestoreConfiguration | |
| RunDashboard.RestoreHiddenConfigurations | |
| RunDashboard.Run <C-S-R> | |
| RunDashboard.Stop <M-F2> | |
| RunDashboard.UngroupConfigurations <Del> <BS> <M-BS> | |
| RunDashboardContentToolbar | |
| RunDashboardPopup | |
| RunInspection <M-A-S-I> | |
| RunInspectionOn | |
| RunMenu | |
| Runner.CloseAllUnpinnedViews | |
| Runner.CloseAllViews | |
| Runner.CloseOtherViews | |
| Runner.CloseView | |
| Runner.Focus | |
| Runner.FocusOnStartup | |
| Runner.Layout | |
| Runner.RestoreLayout | |
| Runner.ToggleTabLabels | |
| Runner.View.Close.Group | |
| Runner.View.Popup | |
| Runner.View.Toolbar | |
| RunnerActions | |
| RunnerActionsTouchbar | |
| RunnerLayoutActions | |
| RunningDevices | |
| runShellFileAction <C-S-R> | |
| RunTab.TopToolbar | |
| RunTab.TopToolbar.More | |
| RunTab.TopToolbar.Old | |
| RunTargetAction <M-S-F10> | |
| RunTestGroup | |
| RunToCursor <A-F9> Force touch | |
| RunToolbarActionsGroup | |
| RunToolbarAdditionalProcessActions | |
| RunToolbarDebuggerAdditionalActions | |
| RunToolbarDebugMoreActionGroupName | |
| RunToolbarDebugMoreActionSubGroupName | |
| RunToolbarEditConfigurationAction | |
| RunToolbarHotSwapAction | |
| RunToolbarMainActionGroup | |
| RunToolbarMainActionsGroup | |
| RunToolbarMainMoreActionGroup | |
| RunToolbarMainMultipleStopAction | |
| RunToolbarMainRunConfigurationsAction | |
| RunToolbarMainSlotActive | |
| RunToolbarMainSlotInfoAction | |
| RunToolbarMoreActionGroup | |
| RunToolbarMoveToTopAction | |
| RunToolbarPauseAction | |
| RunToolbarProcessActionGroup | |
| RunToolbarProcessMainActionGroup | |
| RunToolbarProcessStartedAction | |
| RunToolbarRemoveSlotAction | |
| RunToolbarRerunAction | |
| RunToolbarResumeAction | |
| RunToolbarRollbackToPrevious | |
| RunToolbarRunConfigurationsAction | |
| RunToolbarShowHidePopupAction | |
| RunToolbarShowToolWindowTab | |
| RunToolbarSlotContextMenuGroup | |
| RunToolbarStopAction | |
| RunToolbarTopLevelExecutorActionGroup | |
| SafeDelete <M-Del> | |
| SaveAll <M-S> | |
| SaveAsNewFormat | |
| SaveAsTemplate | |
| SaveDocument | |
| SaveFileAsTemplate | |
| SaveProjectAsTemplate | |
| ScopeView.EditScopes | |
| ScopeViewPopupMenu | |
| Scratch.ChangeLanguage | |
| Scratch.ExportToScratch | |
| Scratch.ShowFilesPopup | |
| ScrollPane-scrollDown | |
| ScrollPane-scrollEnd | |
| ScrollPane-scrollHome | |
| ScrollPane-scrollLeft | |
| ScrollPane-scrollRight | |
| ScrollPane-scrollUp | |
| ScrollPane-unitScrollDown | |
| ScrollPane-unitScrollLeft | |
| ScrollPane-unitScrollRight | |
| ScrollPane-unitScrollUp | |
| ScrollPaneActions | |
| ScrollTreeToCenter <C-L> | |
| SearchEverywhere | |
| SearchEverywhere.CompleteCommand <Tab> | |
| SearchEverywhere.NavigateToNextGroup <Pagedown> <M-Down> | |
| SearchEverywhere.NavigateToPrevGroup <Pageup> <M-Up> | |
| SearchEverywhere.NextTab <Tab> | |
| SearchEverywhere.PrevTab <S-Tab> | |
| SearchEverywhere.SelectItem <CR> | |
| SearchEverywhereActions | |
| SearchEverywhereNewToolbarAction | |
| SegmentedButton-left <Left> <C-B> | |
| SegmentedButton-right <Right> <C-F> | |
| SegmentedVcsActionsBarGroup | |
| SegmentedVcsControlAction | |
| SelectAllOccurrences <M-C-G> | |
| SelectBuildVariant | |
| SelectIn <A-F1> | |
| SelectInProjectView | |
| SelectMultipleDevices | |
| SelectNextOccurrence <C-G> | |
| SelectVirtualTemplateElement <A-S-O> | |
| SendEOF <M-D> | |
| SendFeedback | |
| SequencePlugin.ShowSequenceDiagram <A-S> | |
| Servers.Deploy | |
| Servers.DeployWithDebug | |
| Servers.Undeploy | |
| ServiceView.ActivateDefaultRemoteServersServiceViewContributor | |
| ServiceView.ActivateRunDashboardServiceViewContributor | |
| ServiceView.AddService <M-N> <C-CR> | |
| ServiceView.Filter | |
| ServiceView.GroupBy | |
| ServiceView.GroupByContributor <C-T> | |
| ServiceView.GroupByServiceGroups <C-P> | |
| ServiceView.JumpToServices <M-Up> <A-Home> | |
| ServiceView.OpenEachInNewTab | |
| ServiceView.OpenInNewTab | |
| ServiceView.OpenInNewTabGroup | |
| ServiceView.ShowServices <M-S-T> | |
| ServiceView.SplitByType | |
| ServiceViewItemPopup | |
| ServiceViewItemPopupGroup | |
| ServiceViewItemToolbar | |
| ServiceViewItemToolbarGroup | |
| ServiceViewTreeToolbar | |
| SetJobsForChangeList | |
| SetShortcutAction <A-CR> | |
| SettingsEntryPoint | |
| SettingsEntryPointGroup | |
| SettingsSync | |
| settingsSync.history | |
| settingsSync.troubleShoot | |
| SettingsSyncOpenSettingsAction | |
| SettingsSyncSeparator | |
| SettingsSyncStatusAction | |
| SeverityEditorDialog | |
| Shelve.KeymapGroup | |
| ShelveChanges.UnshelveWithDialog <M-S-U> | |
| ShelvedChanges.ImportPatches | |
| ShelvedChanges.Rename <F2> <S-F6> | |
| ShelvedChanges.Restore | |
| ShelvedChanges.ShowHideDeleted | |
| ShelvedChangesPopupMenu | |
| ShelvedChangesToolbar | |
| ShelvedChangesToolbar.ViewOptions | |
| ShGenerateForLoop | |
| ShGenerateGroup | |
| ShGenerateUntilLoop | |
| ShGenerateWhileLoop | |
| Show.Current.Revision | |
| ShowAnnotateOperationsPopupGroup | |
| ShowBackwardPackageDeps | |
| ShowBlankDiffWindow | |
| ShowBookmarks <M-F3> | |
| ShowByteCodeJclasslib | |
| ShowColorPicker | |
| ShowContent <C-S-Down> | |
| ShowDependenciesOnTarget | |
| ShowDiscoveredTests | |
| ShowErrorDescription <M-F1> | |
| ShowExecutionPoint <A-F10> | |
| ShowExperiments | |
| ShowFilePath <M-A-F12> | |
| ShowFilterPopup <A-C-F> | |
| ShowFontsUsedByEditor | |
| ShowGutterIconsSettings | |
| ShowIntentionActions <A-CR> | |
| ShowIntentionsGroup | |
| ShowKotlinBytecode | |
| ShowLearnPanel | |
| ShowLiveRunConfigurations | |
| ShowLog | |
| ShowMembersInNavigationBar | |
| ShowModulesDependencies | |
| ShowNavBar <M-Up> <A-Home> | |
| ShowPackageCycles | |
| ShowPackageDeps | |
| ShowPackageDepsGroup | |
| ShowParameterHintsSettings | |
| ShowPermissionsAction | |
| ShowPopupMenu | |
| ShowProcessWindow | |
| ShowProjectStructureSettings <M-;> | |
| ShowRecentFindUsagesGroup | |
| ShowRecentTests <M-S-;> | |
| ShowReformatFileDialog <M-A-S-L> | |
| ShowRegistry | |
| ShowSearchHistory <A-Down> | |
| ShowSettings <M-,> | |
| ShowSettingsAndFindUsages <M-A-S-F7> | |
| ShowSettingsWithAddedPattern | |
| ShowSiblings | |
| ShowTips | |
| ShowTypeBookmarks <M-A-F3> | |
| ShowUsages <M-A-F7> | |
| ShutdownCodeWithMe | |
| SilentCodeCleanup | |
| SingleJumpToCursorAction | |
| SingleUserFollowAction <A-C-S-Y> | |
| SliceBackward | |
| SliceForward | |
| smart.update | |
| SmartSelect <A-Up> | |
| SmartStepInto <S-F7> | |
| SmartTypeCompletion <C-S- > | |
| SmartUnSelect <A-Down> | |
| SmRunTestGroup | |
| space.actions.MainToolbarActionGroup | |
| space.review.changes.popup | |
| space.review.changes.toolbar | |
| space.review.commits.popup | |
| Space.Review.CreateDiffComment <M-S-X> | |
| space.review.diff.settings.discussions.visibility | |
| Space.Review.MarkChangesRead | |
| Space.Review.MarkChangesUnread | |
| SpaceGroup | |
| SpaceVcsHistoryContextMenu | |
| SpaceVcsHistoryToolbar | |
| SpaceVcsLogContextMenu | |
| SplitHorizontally | |
| SplittingTabsToolWindow.MoveTabLeft | |
| SplittingTabsToolWindow.MoveTabRight | |
| SplittingTabsToolWindow.RenameTab | |
| SplittingTabsToolWindow.SplitHorizontal | |
| SplittingTabsToolWindow.SplitVertical | |
| SplitVertically | |
| StandardMacroActions | |
| Start.Use.Vcs | |
| StartProfileGroup | |
| StartStopMacroRecording | |
| StatusTextModeAction | |
| StepInto <F7> | |
| StepOut <S-F8> | |
| StepOver <F8> | |
| Stop <M-F2> | |
| StopBackgroundProcesses <M-S-F2> | |
| StopForwardingAction | |
| StopWithDropDown | |
| StoreDefaultLayout | |
| StoreNewLayout | |
| StreamTracerAction | |
| StretchSplitToBottom | |
| StretchSplitToLeft | |
| StretchSplitToRight | |
| StretchSplitToTop | |
| StructuralSearchActions | |
| StructuralSearchPlugin.StructuralReplaceAction | |
| StructuralSearchPlugin.StructuralSearchAction | |
| StructureViewCompileGroup | |
| StructureViewPopupMenu | |
| Subversion.BrowseSVNRepository | |
| Subversion.CleanupProject | |
| Subversion.Clenaup | |
| Subversion.CompareWithBranch | |
| Subversion.Copy | |
| Subversion.Create.External | |
| Subversion.ImportToSVNRepository | |
| Subversion.Lock | |
| Subversion.MarkResolved | |
| Subversion.MarkTreeResolved | |
| Subversion.Relocate | |
| Subversion.Resolve | |
| Subversion.SetProperty | |
| Subversion.Share | |
| Subversion.ShareWholeProject | |
| Subversion.ShowProperties | |
| Subversion.TogglePropertiesDiff | |
| Subversion.Unlock | |
| SubversionFilePopupGroup | |
| SubversionGroup | |
| SubversionUpdateActionGroup | |
| SuppressFixes | |
| SurroundWith <M-A-T> | |
| SurroundWithEmmet | |
| SurroundWithLiveTemplate <M-A-J> | |
| Svn.RefreshWorkingCopies <M-R> | |
| Svn.Show.Working.Copies | |
| Svn.WorkingCopiesView.Toolbar | |
| SwapSidesInDiffWindow | |
| SwapThreeWayColorModeInDiffWindow | |
| SwitchCoverage <M-A-F6> | |
| Switcher <C-Tab> <C-S-Tab> | |
| SwitcherAndRecentFiles | |
| SwitcherBackward | |
| SwitcherForward | |
| SwitcherIterateItems <M-E> | |
| SwitcherNextProblem <F2> | |
| SwitcherPreviousProblem <S-F2> | |
| SwitcherRecentEditedChangedToggleCheckBox <M-E> | |
| SwitchFileBasedIndexStorageAction | |
| SwitchIdeScaleAction | |
| Synchronize <M-A-Y> | |
| SynchronizeCurrentFile | |
| Table-scrollDownChangeSelection <Pagedown> | |
| Table-scrollDownExtendSelection <S-Pagedown> | |
| Table-scrollUpChangeSelection <Pageup> | |
| Table-scrollUpExtendSelection <S-Pageup> | |
| Table-selectFirstRow <M-Home> | |
| Table-selectFirstRowExtendSelection <M-S-Home> | |
| Table-selectLastRow <M-End> | |
| Table-selectLastRowExtendSelection <M-S-End> | |
| Table-selectNextColumn <Right> <C-F> | |
| Table-selectNextColumnExtendSelection <S-Right> | |
| Table-selectNextRow <Down> <C-N> | |
| Table-selectNextRowExtendSelection <S-Down> | |
| Table-selectPreviousColumn <Left> <C-B> | |
| Table-selectPreviousColumnExtendSelection <S-Left> | |
| Table-selectPreviousRow <Up> <C-P> | |
| Table-selectPreviousRowExtendSelection <S-Up> | |
| Table-startEditing <F2> | |
| TableActions | |
| TabList | |
| TabsActions | |
| task.actions | |
| tasks.analyze.stacktrace | |
| tasks.and.contexts | |
| tasks.close <A-S-W> | |
| tasks.configure.servers | |
| tasks.create.changelist | |
| tasks.edit | |
| tasks.goto <A-S-N> | |
| tasks.group | |
| tasks.open.in.browser <A-S-B> | |
| tasks.show.task.description | |
| tasks.switch <A-S-T> | |
| tasks.toolbar | |
| TechnicalSupport | |
| TemplateParametersNavigation | |
| TemplateProjectProperties | |
| TemplateProjectStructure | |
| Terminal.ClearBuffer <M-L> <M-K> | |
| Terminal.CloseTab <M-W> | |
| Terminal.CopySelectedText <M-C> <M-Ins> | |
| Terminal.Find <M-F> | |
| Terminal.MoveToEditor | |
| Terminal.MoveToolWindowTabLeft | |
| Terminal.MoveToolWindowTabRight | |
| Terminal.NewTab <M-T> | |
| Terminal.NextSplitter <A-Tab> | |
| Terminal.OpenInTerminal | |
| Terminal.Paste <M-V> <S-Ins> | |
| Terminal.PrevSplitter <A-S-Tab> | |
| Terminal.RenameSession | |
| Terminal.SelectAll <M-A> | |
| Terminal.Share | |
| Terminal.SmartCommandExecution.Debug <M-S-CR> | |
| Terminal.SmartCommandExecution.Run <M-CR> | |
| Terminal.SplitHorizontally | |
| Terminal.SplitVertically | |
| Terminal.StopSharing | |
| Terminal.SwitchFocusToEditor <Esc> | |
| TerminalDecreaseFontSize | |
| TerminalIncreaseFontSize | |
| TerminalNewPredefinedSession | |
| TerminalResetFontSize | |
| TerminalShareGroup | |
| TerminalToolwindowActionGroup | |
| TestData.Navigate <M-C-Up> | |
| TestMoveRefactiringAction | |
| TestTreePopupMenu | |
| TextComponent.ClearAction | |
| TextEditorWithPreview.SplitGroup | |
| TextEditorWithPreview.SplitHorizontally | |
| TextEditorWithPreview.SplitVertically | |
| TextSearchAction <M-A-S-E> | |
| TextViewerEditorPopupMenu | |
| TimeLapseView | |
| TodoMainGroup | |
| TodoViewGroupByFlattenPackage <C-F> | |
| TodoViewGroupByGroup | |
| TodoViewGroupByShowModules <C-M> | |
| TodoViewGroupByShowPackages <C-P> | |
| ToggleBookmark <F3> | |
| ToggleBookmark0 <C-S-0> | |
| ToggleBookmark1 <C-S-1> | |
| ToggleBookmark2 <C-S-2> | |
| ToggleBookmark3 <C-S-3> | |
| ToggleBookmark4 <C-S-4> | |
| ToggleBookmark5 <C-S-5> | |
| ToggleBookmark6 <C-S-6> | |
| ToggleBookmark7 <C-S-7> | |
| ToggleBookmark8 <C-S-8> | |
| ToggleBookmark9 <C-S-9> | |
| ToggleBookmarkA | |
| ToggleBookmarkB | |
| ToggleBookmarkC | |
| ToggleBookmarkD | |
| ToggleBookmarkE | |
| ToggleBookmarkF | |
| ToggleBookmarkG | |
| ToggleBookmarkH | |
| ToggleBookmarkI | |
| ToggleBookmarkJ | |
| ToggleBookmarkK | |
| ToggleBookmarkL | |
| ToggleBookmarkM | |
| ToggleBookmarkN | |
| ToggleBookmarkO | |
| ToggleBookmarkP | |
| ToggleBookmarkQ | |
| ToggleBookmarkR | |
| ToggleBookmarkS | |
| ToggleBookmarkT | |
| ToggleBookmarkU | |
| ToggleBookmarkV | |
| ToggleBookmarkW | |
| ToggleBookmarkWithMnemonic <A-F3> | |
| ToggleBookmarkX | |
| ToggleBookmarkY | |
| ToggleBookmarkZ | |
| ToggleBreakpointAction | |
| ToggleBreakpointEnabled | |
| ToggleCompactMode | |
| ToggleCompletionHintsAction | |
| ToggleContentUiTypeMode | |
| ToggleDistractionFreeMode | |
| ToggleDockMode | |
| ToggleFieldBreakpoint | |
| ToggleFindInSelection <A-C-E> | |
| ToggleFloatingMode | |
| ToggleFullScreen <M-C-F> | |
| ToggleFullScreenGroup | |
| ToggleInlayHintsGloballyAction | |
| ToggleInlineHintsAction | |
| ToggleLineBreakpoint <M-F8> | |
| ToggleMethodBreakpoint | |
| ToggleMinimap | |
| TogglePinnedMode | |
| TogglePopupHints | |
| TogglePowerSave | |
| TogglePresentationMode | |
| ToggleProjectInspectionAction | |
| ToggleReadOnlyAttribute | |
| ToggleRenderedDocPresentation <A-C-Q> | |
| ToggleRenderedDocPresentationForAll | |
| ToggleResourceTraceAction | |
| ToggleSideMode | |
| ToggleTemporaryLineBreakpoint <M-A-S-F8> | |
| ToggleThreeSideInBlankDiffWindow | |
| ToggleWindowedMode | |
| ToggleZenMode | |
| ToolbarFindGroup | |
| ToolbarMakeGroup | |
| ToolbarRunGroup | |
| ToolsBasicGroup | |
| ToolsMenu | |
| ToolsXmlGroup | |
| ToolWindowContextMenu | |
| ToolWindowsGroup | |
| TouchBar | |
| TouchBarDebug | |
| TouchBarDebug.ForceStepButtons | |
| TouchBarDebug.StepButtons | |
| TouchBarDebug_alt | |
| TouchBarDefault | |
| TouchBarDefault_alt | |
| TouchBarDefault_cmd | |
| TouchBarDefault_cmd.alt | |
| TouchBarDefault_ctrl | |
| TouchBarDefault_shift | |
| TouchBarDefaultOptionalGroup | |
| TouchBarEditorSearch | |
| TouchBarEditorSearch_ctrl | |
| Tree-scrollDownChangeSelection <Pagedown> | |
| Tree-scrollDownExtendSelection <S-Pagedown> | |
| Tree-scrollUpChangeSelection <Pageup> | |
| Tree-scrollUpExtendSelection <S-Pageup> | |
| Tree-selectChild <Right> <C-F> | |
| Tree-selectChildExtendSelection <S-Right> | |
| Tree-selectFirst <M-Home> | |
| Tree-selectFirstExtendSelection <M-S-Home> | |
| Tree-selectLast <M-End> | |
| Tree-selectLastExtendSelection <M-S-End> | |
| Tree-selectNext <Down> <C-N> | |
| Tree-selectNextExtendSelection <S-Down> | |
| Tree-selectNextSibling | |
| Tree-selectParent <Left> <C-B> | |
| Tree-selectParentExtendSelection <S-Left> | |
| Tree-selectParentNoCollapse | |
| Tree-selectPrevious <Up> <C-P> | |
| Tree-selectPreviousExtendSelection <S-Up> | |
| Tree-selectPreviousSibling | |
| Tree-startEditing <F2> | |
| TreeActions | |
| TreeNodeExclusion | |
| TurnRefsToSuper | |
| TW.MoveToGroup | |
| TW.ViewModeGroup | |
| TWViewModes | |
| TWViewModesLegacy | |
| TypeHierarchy <C-H> | |
| TypeHierarchy.Class | |
| TypeHierarchy.Subtypes | |
| TypeHierarchy.Supertypes | |
| TypeHierarchyBase.BaseOnThisType <C-H> | |
| TypeHierarchyPopupMenu | |
| UiDebugger | |
| UIToggleActions | |
| UnattendedHostDropdownGroup | |
| UnattendedHostImportantActionsGroup | |
| UndockMode | |
| UnmarkGeneratedSourceRoot | |
| UnmarkRoot | |
| Unscramble | |
| UnselectPreviousOccurrence <C-S-G> | |
| Unsplit | |
| UnsplitAll | |
| Unversioned.Files.Dialog | |
| Unversioned.Files.Dialog.Popup | |
| Unwrap <M-S-Del> | |
| UpdateActionGroup | |
| UpdateCopyright | |
| UpdateFiles | |
| UpdateIdeFromSources | |
| UpdateIdeFromSourcesSettings | |
| UpdateRunningApplication <M-F10> | |
| UsageFiltering.GeneratedCode | |
| UsageFiltering.Imports <C-I> | |
| UsageFiltering.ReadAccess <C-R> | |
| UsageFiltering.WriteAccess <C-W> | |
| UsageFilteringActionGroup | |
| UsageGrouping.Directory <C-P> | |
| UsageGrouping.DirectoryStructure <C-D> | |
| UsageGrouping.FileStructure <C-S> | |
| UsageGrouping.FlattenModules <C-O> | |
| UsageGrouping.Module <C-M> | |
| UsageGrouping.Package <C-P> | |
| UsageGrouping.Scope | |
| UsageGrouping.UsageType <C-T> | |
| UsageGroupingActionGroup | |
| UsageView.Exclude <Del> <BS> <M-BS> | |
| UsageView.Include <S-BS> | |
| UsageView.Popup | |
| UsageView.Remove <M-X> <S-Del> | |
| UsageView.Rerun <M-R> | |
| UsageView.ShowRecentFindUsages <A-Down> | |
| ValidateXml | |
| Vcs.ApplySelectedChanges | |
| Vcs.Browse | |
| Vcs.CheckinProjectMenu | |
| Vcs.CheckinProjectToolbar | |
| Vcs.CherryPick | |
| Vcs.CherryPick.KeymapGroup | |
| Vcs.Commit.PrimaryCommitActions | |
| Vcs.CommitExecutor.Actions | |
| Vcs.CopyCommitSubjectAction | |
| Vcs.CopyRevisionNumberAction <M-A-S-C> | |
| Vcs.Diff.Commit.KeymapGroup | |
| Vcs.Diff.EditorTabs.Group | |
| Vcs.Diff.ExcludeChangedLinesFromCommit | |
| Vcs.Diff.IncludeOnlyChangedLinesIntoCommit | |
| Vcs.Diff.KeymapGroup | |
| Vcs.Diff.ShowDiffInEditorTab | |
| Vcs.Diff.ShowDiffInNewWindow | |
| Vcs.Diff.ToggleDiffAligningMode | |
| Vcs.EditSource <M-Down> <F4> | |
| Vcs.FileHistory.ContextMenu | |
| Vcs.FileHistory.PresentationSettings | |
| Vcs.FileHistory.Toolbar | |
| Vcs.GetVersion | |
| Vcs.History | |
| Vcs.Import | |
| Vcs.IntegrateProject | |
| Vcs.KeymapGroup | |
| Vcs.Log.AlignLabels | |
| Vcs.Log.AnnotateRevisionAction | |
| Vcs.Log.ChangesBrowser.Popup | |
| Vcs.Log.ChangesBrowser.PresentationSettings | |
| Vcs.Log.ChangesBrowser.Toolbar | |
| Vcs.Log.CollapseAll | |
| Vcs.Log.CompactReferencesView | |
| Vcs.Log.CompareRevisions | |
| Vcs.Log.ContextMenu | |
| Vcs.Log.Diff.Preview.Location | |
| Vcs.Log.EnableFilterByRegexAction | |
| Vcs.Log.ExpandAll | |
| Vcs.Log.FocusTextFilter <M-L> | |
| Vcs.Log.GoToChild <Left> | |
| Vcs.Log.GoToParent <Right> | |
| Vcs.Log.GoToRef <M-F> | |
| Vcs.Log.HighlightersActionGroup | |
| Vcs.Log.IntelliSortChooser | |
| Vcs.Log.LayoutConfiguration | |
| Vcs.Log.MatchCaseAction | |
| Vcs.Log.MoveDiffPreviewToBottom | |
| Vcs.Log.MoveDiffPreviewToRight | |
| Vcs.Log.OpenAnotherTab | |
| Vcs.Log.OpenRepositoryVersion | |
| Vcs.Log.PreferCommitDate | |
| Vcs.Log.PresentationSettings | |
| Vcs.Log.Refresh <M-R> | |
| Vcs.Log.ResumeIndexing | |
| Vcs.Log.ShowAllAffected <M-C-A> | |
| Vcs.Log.ShowChangesFromParents | |
| Vcs.Log.ShowDetailsAction | |
| Vcs.Log.ShowDiffPreview | |
| Vcs.Log.ShowLongEdges | |
| Vcs.Log.ShowOnlyAffectedChanges | |
| Vcs.Log.ShowOtherBranches | |
| Vcs.Log.ShowRootsColumnAction | |
| Vcs.Log.ShowTagNames | |
| Vcs.Log.ShowTooltip <F1> <C-J> button=2 clickCount=1 modifiers=128 | |
| Vcs.Log.TextFilterSettings | |
| Vcs.Log.ToggleColumns | |
| Vcs.Log.Toolbar | |
| Vcs.Log.Toolbar.Internal | |
| Vcs.Log.Toolbar.RightCorner | |
| Vcs.MainMenu | |
| Vcs.MessageActionGroup | |
| Vcs.MoveChangedLinesToChangelist <M-S-M> | |
| Vcs.OpenRepositoryVersion | |
| Vcs.Operations.Popup | |
| Vcs.Operations.Popup.Annotate | |
| Vcs.Operations.Popup.NonVcsAware | |
| Vcs.Operations.Popup.Vcs.Providers | |
| Vcs.Operations.Popup.VcsAware | |
| Vcs.Operations.Popup.VcsNameSeparator | |
| Vcs.Push <M-S-K> | |
| Vcs.Push.Actions | |
| Vcs.Push.Force | |
| Vcs.Push.Simple | |
| Vcs.QuickListPopupAction <C-V> | |
| Vcs.ReformatCommitMessage <M-A-L> | |
| Vcs.RefreshFileHistory <M-R> | |
| Vcs.RepositoryChangesBrowserMenu | |
| Vcs.RepositoryChangesBrowserToolbar | |
| Vcs.RevertSelectedChanges | |
| Vcs.RollbackChangedLines <M-A-Z> | |
| Vcs.RunCommitChecks | |
| Vcs.SavedPatches.ChangesBrowser.ContextMenu | |
| Vcs.SavedPatches.ContextMenu | |
| Vcs.Shelf.Apply | |
| Vcs.Shelf.ChangesBrowser.ContextMenu | |
| Vcs.Shelf.Drop <Del> <BS> <M-BS> | |
| Vcs.Shelf.Operations.ContextMenu | |
| Vcs.Shelf.Pop | |
| Vcs.Shelf.UnshelveChanges | |
| Vcs.Shelf.UnshelveChangesAndRemove | |
| Vcs.Show.Local.Changes | |
| Vcs.Show.Log | |
| Vcs.Show.Shelf | |
| Vcs.Show.Toolwindow.Tab | |
| Vcs.ShowDiffChangedLines | |
| Vcs.ShowDiffWithLocal | |
| Vcs.ShowDiffWithLocal.Before | |
| Vcs.ShowHistoryForBlock | |
| Vcs.ShowHistoryForRevision | |
| Vcs.ShowMessageHistory <C-M> | |
| Vcs.ShowTabbedFileHistory | |
| Vcs.Specific | |
| Vcs.ToggleAmendCommitMode <A-C-M> | |
| Vcs.Toolbar.ShowMoreActions | |
| Vcs.ToolbarWidget.CreateRepository | |
| Vcs.ToolbarWidget.ShareProject | |
| Vcs.ToolWindow.CreateRepository | |
| Vcs.UmlDiff | |
| Vcs.UpdateProject <M-T> | |
| Vcs.VcsClone | |
| VcsActions.KeymapGroup | |
| VcsFileGroupPopup | |
| VcsGeneral.KeymapGroup | |
| VcsGlobalGroup | |
| VcsGroup | |
| VcsGroups | |
| VcsHistory.ShowAllAffected <M-C-A> | |
| VcsHistoryActionsGroup | |
| VcsHistoryActionsGroup.Toolbar | |
| VcsHistoryInternalGroup.Popup | |
| VcsHistoryInternalGroup.Toolbar | |
| VcsNavBarToolbarActions | |
| VcsSelectionHistoryDialog.Popup | |
| VcsShowCurrentChangeMarker | |
| VcsShowNextChangeMarker <A-C-S-Down> | |
| VcsShowPrevChangeMarker <A-C-S-Up> | |
| VcsToolbarActions | |
| VcsToolbarLabelAction | |
| VcsTouchBarGroup | |
| VersionControlsGroup | |
| ViewAppearanceGroup | |
| ViewBreakpoints <M-S-F8> | |
| ViewImportPopups | |
| ViewInplaceComments | |
| ViewMainMenu | |
| ViewMembersInNavigationBar | |
| ViewMenu | |
| ViewNavigationBar | |
| ViewNewToolbarAction | |
| ViewObsoleteNavBarAction | |
| ViewObsoleteToolbarAction | |
| ViewOfflineInspection | |
| ViewRecentActions | |
| ViewSource <M-CR> | |
| ViewStatusBar | |
| ViewStatusBarWidgetsGroup | |
| ViewToolBar | |
| ViewToolbarActionsGroup | |
| ViewToolButtons | |
| VimActions | |
| VimFindActionIdAction | |
| VimPluginToggle | |
| VimShortcutKeyAction | |
| WebOpenInAction <A-F2> | |
| WeighingNewGroup | |
| WelcomeScreen.ChangeProjectIcon | |
| WelcomeScreen.Configure | |
| WelcomeScreen.Configure.Export | |
| WelcomeScreen.Configure.Import | |
| WelcomeScreen.Configure.ProjectStructure | |
| WelcomeScreen.Configure.RestoreDefault | |
| WelcomeScreen.CopyProjectPath <M-S-C> | |
| WelcomeScreen.CreateNewProject | |
| WelcomeScreen.DevelopPlugins | |
| WelcomeScreen.Documentation | |
| WelcomeScreen.Documentation.IDEA | |
| WelcomeScreen.EditGroup | |
| WelcomeScreen.KeymapGroup | |
| WelcomeScreen.LearnIdeHelp | |
| WelcomeScreen.MoveToGroup | |
| WelcomeScreen.NewGroup | |
| WelcomeScreen.OpenDirectoryProject | |
| WelcomeScreen.OpenProject | |
| WelcomeScreen.OpenSelected | |
| WelcomeScreen.Options | |
| WelcomeScreen.Plugins | |
| WelcomeScreen.QuickStart | |
| WelcomeScreen.QuickStart.EmptyState | |
| WelcomeScreen.QuickStart.IDEA | |
| WelcomeScreen.QuickStart.Platform | |
| WelcomeScreen.QuickStart.ProjectsState | |
| WelcomeScreen.RemoveSelected <Del> <BS> <M-BS> | |
| WelcomeScreen.RevealIn | |
| WelcomeScreen.Settings | |
| WelcomeScreenRecentProjectActionGroup | |
| WhatsNewAction | |
| WindowMenu | |
| WindowMode | |
| working.context | |
| WorkspaceModelGeneration | |
| XDebugger.Actions | |
| XDebugger.Attach.Dialog.Settings | |
| XDebugger.Attach.Dialog.ShowOnlyMyProcessesToggleAction | |
| XDebugger.AttachGroup | |
| XDebugger.AttachToProcess <A-S-F5> | |
| XDebugger.CompareValueWithClipboard | |
| XDebugger.CopyName | |
| XDebugger.CopyValue <M-C> | |
| XDebugger.CopyWatch <M-D> | |
| XDebugger.EditWatch <F2> | |
| XDebugger.Evaluate.Code.Fragment.Editor.Popup | |
| XDebugger.Evaluation.Dialog.Tree.Popup | |
| XDebugger.Frames.TopToolbar | |
| XDebugger.Frames.Tree.Popup | |
| XDebugger.Hover.Breakpoint.Context.Menu | |
| XDebugger.Inline | |
| XDebugger.Inspect | |
| XDebugger.Inspect.Tree.Popup | |
| XDebugger.JumpToSource <M-Down> <F4> | |
| XDebugger.JumpToTypeSource <S-F4> | |
| XDebugger.MoveWatchDown <A-S-Down> | |
| XDebugger.MoveWatchUp <A-S-Up> | |
| XDebugger.MuteBreakpoints | |
| XDebugger.NewWatch | |
| XDebugger.PinToTop | |
| XDebugger.PreviewTab | |
| XDebugger.RemoveAllWatches | |
| XDebugger.RemoveWatch <Del> <BS> <M-BS> | |
| XDebugger.Settings | |
| XDebugger.SetValue <F2> | |
| XDebugger.Show.Breakpoints.Over.Line.Numbers | |
| XDebugger.SwitchWatchesInVariables | |
| XDebugger.ToggleEvaluateExpressionField | |
| XDebugger.ToggleSortValues | |
| XDebugger.ToolWindow.LeftToolbar | |
| XDebugger.ToolWindow.TopToolbar | |
| XDebugger.ToolWindow.TopToolbar3 | |
| XDebugger.ToolWindow.TopToolbar3.Extra | |
| XDebugger.UnmuteOnStop | |
| XDebugger.ValueGroup | |
| XDebugger.Variables.Tree.Popup | |
| XDebugger.Variables.Tree.Toolbar | |
| XDebugger.Watches.Inline.Popup | |
| XDebugger.Watches.Tree.Popup | |
| XDebugger.Watches.Tree.Toolbar | |
| XmlGenerateToolsGroup | |
| XPathView.Actions.Evaluate <M-A-X> | |
| XPathView.Actions.FindByExpression <M-A-X> | |
| XPathView.Actions.ShowPath <M-A-X> | |
| XPathView.EditorPopup | |
| XPathView.MainMenu.Search | |
| XPathView.XSLT.Associations | |
| XSD2Document | |
| ZoomCurrentWindow <M-C-=> | |
| ZoomInIdeAction <A-C-=> | |
| ZoomOutIdeAction <A-C--> | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment