From c5a7c02e37c248121b8665cd38a003515b3ef6f3 Mon Sep 17 00:00:00 2001 From: Ein Verne Date: Mon, 28 Sep 2020 17:20:02 +0800 Subject: [PATCH] Update zsh config --- .vim/startup/vundle_vimrc | 42 +- .zshrc | 181 +-- Brewfile | 1 + idea/.ideavimrc | 42 +- idea/actionlist | 3226 +++++++++++++++++++++++++++++++++++++ 5 files changed, 3311 insertions(+), 181 deletions(-) create mode 100644 idea/actionlist diff --git a/.vim/startup/vundle_vimrc b/.vim/startup/vundle_vimrc index dcd7dd0..0efabee 100644 --- a/.vim/startup/vundle_vimrc +++ b/.vim/startup/vundle_vimrc @@ -33,7 +33,7 @@ Plug 'plasticboy/vim-markdown' Plug 'scrooloose/nerdtree' Plug 'scrooloose/nerdcommenter' " 目录树美化 -Plug 'tiagofumo/vim-nerdtree-syntax-highlight' +" Plug 'tiagofumo/vim-nerdtree-syntax-highlight' Plug 'davidhalter/jedi-vim' Plug 'ervandew/supertab' Plug 'Raimondi/delimitMate' @@ -202,3 +202,43 @@ let g:fzf_layout = { 'down': '~40%' } let g:fzf_history_dir = '~/.local/share/fzf-history' +" https://github.com/tiagofumo/vim-nerdtree-syntax-highlight +let g:WebDevIconsDisableDefaultFolderSymbolColorFromNERDTreeDir = 1 +let g:WebDevIconsDisableDefaultFileSymbolColorFromNERDTreeFile = 1 + +let g:NERDTreeDisableFileExtensionHighlight = 1 +let g:NERDTreeDisableExactMatchHighlight = 1 +let g:NERDTreeDisablePatternMatchHighlight = 1 + +" you can add these colors to your .vimrc to help customizing +let s:brown = "905532" +let s:aqua = "3AFFDB" +let s:blue = "689FB6" +let s:darkBlue = "44788E" +let s:purple = "834F79" +let s:lightPurple = "834F79" +let s:red = "AE403F" +let s:beige = "F5C06F" +let s:yellow = "F09F17" +let s:orange = "D4843E" +let s:darkOrange = "F16529" +let s:pink = "CB6F6F" +let s:salmon = "EE6E73" +let s:green = "8FAA54" +let s:lightGreen = "31B53E" +let s:white = "FFFFFF" +let s:rspec_red = 'FE405F' +let s:git_orange = 'F54D27' + +let g:NERDTreeExtensionHighlightColor = {} " this line is needed to avoid error +let g:NERDTreeExtensionHighlightColor['css'] = s:blue " sets the color of css files to blue + +let g:NERDTreeExactMatchHighlightColor = {} " this line is needed to avoid error +let g:NERDTreeExactMatchHighlightColor['.gitignore'] = s:git_orange " sets the color for .gitignore files + +let g:NERDTreePatternMatchHighlightColor = {} " this line is needed to avoid error +let g:NERDTreePatternMatchHighlightColor['.*_spec\.rb$'] = s:rspec_red " sets the color for files ending with _spec.rb + +let g:WebDevIconsDefaultFolderSymbolColor = s:beige " sets the color for folders that did not match any rule +let g:WebDevIconsDefaultFileSymbolColor = s:blue " sets the color for files that did not match any rule + diff --git a/.zshrc b/.zshrc index 9197d8a..5f05379 100644 --- a/.zshrc +++ b/.zshrc @@ -1,16 +1,6 @@ # If you come from bash you might have to change your $PATH. # export PATH=$HOME/bin:/usr/local/bin:$PATH -if type brew &>/dev/null; then - echo "brew completion" - FPATH=$(brew --prefix)/share/zsh/site-functions:$FPATH - fpath=($HOME/.asdf/completions $fpath) - - autoload -Uz compinit - compinit -fi - -autoload -Uz compinit && compinit # you need to git clone git@github.com:zsh-users/antigen.git to $HOME if [[ -d $HOME/antigen ]]; then source $HOME/antigen/antigen.zsh @@ -26,11 +16,14 @@ if [[ -f "$HOME/dotfiles/wp-completion.bash" ]]; then source $HOME/dotfiles/wp-completion.bash fi +export ASDF_DIR=$(brew --prefix asdf) + # Load the oh-my-zsh's library. antigen use oh-my-zsh # Bundles from the default repo (robbyrussell's oh-my-zsh). antigen bundle asdf +antigen bundle gem antigen bundle git antigen bundle git-extras antigen bundle git-flow @@ -72,28 +65,26 @@ case `uname` in Darwin) antigen bundle brew antigen bundle brew-cask - antigen bundle gem antigen bundle osx ;; FreeBSD) ;; esac -if [[ $CURRENT_OS == 'OS X' ]]; then - antigen bundle brew - antigen bundle brew-cask - antigen bundle gem - antigen bundle osx -elif [[ $CURRENT_OS == 'Linux' ]]; then - # None so far... - - if [[ $DISTRO == 'CentOS' ]]; then - antigen bundle centos - fi -elif [[ $CURRENT_OS == 'Cygwin' ]]; then - antigen bundle cygwin +if type brew &>/dev/null; then + echo "brew completion" + FPATH=$(brew --prefix)/share/zsh/site-functions:$FPATH + #fpath=$(brew --prefix)/share/zsh-completions:$fpath + fpath=($HOME/.asdf/completions $fpath) + + fi +autoload -Uz compinit && compinit +. $(brew --prefix asdf)/asdf.sh +. $(brew --prefix asdf)/etc/bash_completion.d/asdf.bash + + # Load the theme. # antigen theme agnoster # workaround for https://github.com/zsh-users/antigen/issues/675 @@ -140,6 +131,7 @@ source $HOME/dotfiles/zsh/common.zsh source $HOME/dotfiles/zsh/keybindings.zsh source $HOME/dotfiles/zsh/alias.zsh source $HOME/dotfiles/zsh/env.zsh +source $HOME/dotfiles/zsh/fzf.zsh case `uname` in Darwin) @@ -155,7 +147,7 @@ fi ZSH_DISABLE_COMPFIX=true -fpath=(~/.zsh/completions $fpath) +fpath=(~/.zsh/completions $fpath) # space SPACESHIP_DIR_SHOW="${SPACESHIP_DIR_SHOW=true}" @@ -170,143 +162,4 @@ SPACESHIP_DIR_COLOR="${SPACESHIP_DIR_COLOR="cyan"}" # usage adb-screencap > screen.png alias adbcap="adb shell screencap -p" -# fzf config -[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh -# export FZF_DEFAULT_COMMAND='ag --hidden --ignore .git --ignore .idea -l -g ""' -export FZF_DEFAULT_COMMAND='fd --type f --hidden --exclude .git --exclude .idea ""' -#export FZF_DEFAULT_OPTS="--reverse --inline-info" -export FZF_DEFAULT_OPTS="--height 40% --layout=reverse --preview '(highlight -O ansi {} || cat {}) 2> /dev/null | head -500'" - -# fe [FUZZY PATTERN] - Open the selected file with the default editor -# - Bypass fuzzy finder if there's only one match (--select-1) -# - Exit if there's no match (--exit-0) -fe() { - local files - IFS=$'\n' files=($(fzf-tmux --query="$1" --multi --select-1 --exit-0)) - [[ -n "$files" ]] && ${EDITOR:-vim} "${files[@]}" -} - -# Modified version where you can press -# - CTRL-O to open with `open` command, -# - CTRL-E or Enter key to open with the $EDITOR -fo() { - local out file key - IFS=$'\n' out=("$(fzf-tmux --query="$1" --exit-0 --expect=ctrl-o,ctrl-e)") - key=$(head -1 <<< "$out") - file=$(head -2 <<< "$out" | tail -1) - if [ -n "$file" ]; then - [ "$key" = ctrl-o ] && open "$file" || ${EDITOR:-vim} "$file" - fi -} - -# Use fd and fzf to get the args to a command. -# Works only with zsh -# Examples: -# f mv # To move files. You can write the destination after selecting the files. -# f 'echo Selected:' -# f 'echo Selected music:' --extention mp3 -# fm rm # To rm files in current directory -f() { - sels=( "${(@f)$(fd "${fd_default[@]}" "${@:2}"|fz)}" ) - test -n "$sels" && print -z -- "$1 ${sels[@]:q:q}" -} - -# Like f, but not recursive. -fm() f "$@" --max-depth 1 - -# Deps -alias fz="fzf-noempty --bind 'tab:toggle,shift-tab:toggle+beginning-of-line+kill-line,ctrl-j:toggle+beginning-of-line+kill-line,ctrl-t:top' --color=light -1 -m" -fzf-noempty () { - local in="$( /dev/null | fzf +m) && - cd "$dir" -} - -# fh - repeat history -fh() { - print -z $( ([ -n "$ZSH_NAME" ] && fc -l 1 || history) | fzf +s --tac | sed -r 's/ *[0-9]*\*? *//' | sed -r 's/\\/\\\\/g') -} - -# fkill - kill process -fkill() { - local pid - pid=$(ps -ef |grep -v ^root | sed 1d | fzf -m | awk '{print $2}') - - if [ "x$pid" != "x" ] - then - echo $pid | xargs kill -${1:-9} - fi -} - -# tm - create new tmux session, or switch to existing one. Works from within tmux too. (@bag-man) -# `tm` will allow you to select your tmux session via fzf. -# `tm irc` will attach to the irc session (if it exists), else it will create it. - -tm() { - [[ -n "$TMUX" ]] && change="switch-client" || change="attach-session" - if [ $1 ]; then - tmux $change -t "$1" 2>/dev/null || (tmux new-session -d -s $1 && tmux $change -t "$1"); return - fi - session=$(tmux list-sessions -F "#{session_name}" 2>/dev/null | fzf --exit-0) && tmux $change -t "$session" || echo "No sessions found." -} - -# fs [FUZZY PATTERN] - Select selected tmux session -# - Bypass fuzzy finder if there's only one match (--select-1) -# - Exit if there's no match (--exit-0) -fs() { - local session - session=$(tmux list-sessions -F "#{session_name}" | \ - fzf --query="$1" --select-1 --exit-0) && - tmux switch-client -t "$session" -} - -unalias z 2> /dev/null -z() { - [ $# -gt 0 ] && _z "$*" && return - cd "$(_z -l 2>&1 | fzf --height 40% --nth 2.. --reverse --inline-info +s --tac --query "${*##-* }" | sed 's/^[0-9,.]* *//')" -} - - -#alias lp="lpass show -c --password $(lpass ls | fzf | awk '{print $(NF)}' | sed 's/\]//g')" -gcbr() { - result=$(git branch -a --color=always | grep -v '/HEAD\s' | sort | - fzf --height 50% --border --ansi --tac --preview-window right:70% \ - --preview 'git log --oneline --graph --date=short --pretty="format:%C(auto)%cd %h%d %s" $(sed s/^..// <<< {} | cut -d" " -f1) | head -'$LINES | - sed 's/^..//' | cut -d' ' -f1) - - if [[ $result != "" ]]; then - if [[ $result == remotes/* ]]; then - git checkout --track $(echo $result | sed 's#remotes/##') - else - git checkout "$result" - fi - fi -} - -gfs() { - git -c color.status=always status --short | - fzf --height 50% --border --ansi --multi --ansi --nth 2..,.. \ - --preview '(git diff --color=always -- {-1} | sed 1,4d; cat {-1}) | head -500' | - cut -c4- | sed 's/.* -> //' -} - diff --git a/Brewfile b/Brewfile index 0511061..054a3ba 100644 --- a/Brewfile +++ b/Brewfile @@ -22,6 +22,7 @@ brew "fzf" brew "the_silver_searcher" brew "hub" brew "tmux" +brew "trash" brew "tree" brew "wget" brew "rsync" diff --git a/idea/.ideavimrc b/idea/.ideavimrc index f9dadbb..36ce6d3 100644 --- a/idea/.ideavimrc +++ b/idea/.ideavimrc @@ -1,33 +1,43 @@ " enable plugin set easymotion set surround +set clipboard=unnamed,autoselect let mapleader = "," let g:mapleader = "," -" set clipboard=unnamed,autoselect set hlsearch -set scrolloff=3 +set incsearch +set scrolloff=5 set ignorecase set smartcase set showmode -set incsearch -set history=1000 +set history=10000 " source ~/.vimrc " general -nnoremap ,a :action GotoAction -vnoremap ,a :action GotoAction -nnoremap ,e :action SearchEverywhere -vnoremap ,e :action SearchEverywhere -nnoremap ,s :action FileStructurePopup -nnoremap ,g :action FindInPath -vnoremap ,g :action FindInPath -nnoremap ,r :action RenameElement +nnoremap e :action SearchEverywhere +vnoremap e :action SearchEverywhere +nnoremap s :action FileStructurePopup +" nnoremap g :action FindInPath +" vnoremap g :action FindInPath +nnoremap r :action RenameElement +" Vertical split screen +nnoremap wv v +vnoremap wv v +nnoremap ws s +nnoremap h +nnoremap l +nnoremap j +nnoremap k " vnoremap ,r :action RecentFiles -" jump on code +" Redo +nnoremap U + +" go to somewhere +nnoremap ga :action GotoAction nnoremap gc :action GotoClass nnoremap gd :action GotoDeclaration nnoremap gs :action GotoSuperMethod @@ -42,11 +52,11 @@ nnoremap gp :action FindInPath " nnoremap gl :action Forward " code editing -nnoremap \f :action ReformatCode +nnoremap f :action ReformatCode nnoremap == :action ReformatCode vnoremap == :action ReformatCode -nnoremap \i :action OptimizeImports -vnoremap \i :action OptimizeImports +" nnoremap \i :action OptimizeImports +" vnoremap \i :action OptimizeImports " nnoremap \r :action RenameElement nnoremap q :action ShowIntentionActions nnoremap cc :action CommentByLineComment diff --git a/idea/actionlist b/idea/actionlist new file mode 100644 index 0000000..4bc8d05 --- /dev/null +++ b/idea/actionlist @@ -0,0 +1,3226 @@ +--- Actions --- +$Copy +$Cut +$Delete +$LRU +$Paste +$Redo +$SearchWeb +$SelectAll +$Undo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +About +AceAction +AceDeclarationAction +AceLineAction +AceTargetAction +AceWordAction +AceWordBackwardsAction +AceWordForwardAction +actiBPM.ActionGroup +actiBPM.Actions.FitPage +actiBPM.Actions.Grid +actiBPM.Actions.PNG +actiBPM.Actions.Text +actiBPM.Actions.ZoomActual +actiBPM.Actions.ZoomIn +actiBPM.Actions.ZoomOut +Actions.ActionsPlugin.GenerateToString +ActivateAlibabaCloudExplorerToolWindow +ActivateAlibabaCloudViewToolWindow +ActivateAlibabaFunctionComputeToolWindow +ActivateAlibabaLogConsoleToolWindow +ActivateAlibabaROSTemplatesToolWindow +ActivateBeanValidationToolWindow +ActivateBPMNPaletteToolWindow +ActivateCDIToolWindow +ActivateCodotaToolWindow +ActivateCommitToolWindow +ActivateDatabaseChangesToolWindow +ActivateDatabaseToolWindow +ActivateDebugToolWindow +ActivateEndpointsToolWindow +ActivateEventLogToolWindow +ActivateFavoritesToolWindow +ActivateFindToolWindow +ActivateFlowToolWindow +Activateinternal-profilerToolWindow +ActivateInternalMethodTracingToolWindow +ActivateJavaEnterpriseToolWindow +ActivateKeyPromoterToolWindow +ActivateLearnToolWindow +ActivateleetcodeToolWindow +ActivateMavenToolWindow +ActivateMessagesToolWindow +ActivateNavBar +ActivateProblemsViewToolWindow +ActivateProjectProblemsToolWindow +ActivateProjectToolWindow +ActivateRunToolWindow +ActivateSciViewToolWindow +ActivateServicesToolWindow +ActivateSpringToolWindow +ActivateStructureToolWindow +ActivateTerminalToolWindow +ActivateTODOToolWindow +ActivateTypeScriptToolWindow +ActivateVersionControlToolWindow +ActiveToolwindowGroup +Add.Email.Transport +Add.Embedded.Http.Transport +Add.Hibernate.Framework +Add.Ibatis.Framework +Add.JdkTimer +Add.Jdo.Framework +Add.Jms.Transport +Add.OpenSymphonyTimer +Add.Toplink.Framework +Add.Webflow +AddAllToFavorites +AddAsSwcLib +AddAttributeAction +AddDataSourceFromServer +AddFrameworkSupport +AddGradleDslPluginAction +AddNewComponentAction +AddNewFavoritesList +AddNewMixinAction +AddNewPageAction +AddNewPropertyFile +AddOpenapiRemoteSpecification +AddSourcesContentToSourceMap +AddSubtagAction +AddToFavorites +AddToFavoritesPopup +AddToISuite +addToTempGroup +AddToTestNGSuite +AJ.NewAspect +AJ.PushIn +Akka.GeneratePropsFactory +AliP3CInspectionAction +AnalyzeActions +AnalyzeJavaMenu +AnalyzeMenu +AnalyzePlatformMenu +AnalyzePluginStartupPerformance +angularCliAdd +angularCliGenerate +AngularJS.Show.Ui.Router.States.Diagram.Action +Annotate +AnonymousToInner +ApplyJavaeeStyle +AppServers.ChooseArtifacts +AppServers.DeployAll +Arrangement.Alias.Rule.Add +Arrangement.Alias.Rule.Context.Menu +Arrangement.Alias.Rule.Edit +Arrangement.Alias.Rule.Match.Condition.Move.Down +Arrangement.Alias.Rule.Match.Condition.Move.Up +Arrangement.Alias.Rule.Remove +Arrangement.Alias.Rule.ToolBar +Arrangement.Custom.Token.Rule.Edit +Arrangement.Rule.Add +Arrangement.Rule.Edit +Arrangement.Rule.Group.Condition.Move.Down +Arrangement.Rule.Group.Condition.Move.Up +Arrangement.Rule.Group.Control.ToolBar +Arrangement.Rule.Match.Condition.Move.Down +Arrangement.Rule.Match.Condition.Move.Up +Arrangement.Rule.Match.Control.Context.Menu +Arrangement.Rule.Match.Control.ToolBar +Arrangement.Rule.Remove +Arrangement.Rule.Section.Add +AsciiDoc +asciidoc.convert.document +asciidoc.makebold +asciidoc.makehighlighted +asciidoc.makeitalic +asciidoc.makelink +asciidoc.makemono +asciidoc.makestrikethrough +asciidoc.maketitle +asciidoc.tables.pastetabledialog +asciidoc.tables.tabledialog +AsciiDoc.TextFormatting +AsciiDocConvert +AsciiDocExtract +AsciiDocInline +AssociateWithFileType +AtomFileIcons.Actions +AttachIntellijSourcesAction +AttachProfilerToLocalProcess +AttachProject +AutoIndentLines +AutoShowProcessWindow +AxisActions +Back button=4 clickCount=1 modifiers=0 +BackgroundTasks +BasicEditorPopupMenu +Batch.Job.Create +Bookmarks +BPMNFile +BraceOrQuoteOut +BreakpointActionsGroup +BrowseShelf +BuildArtifact +BuildMenu +ByeCodeViewerGroup +ByteCodeDecompiler +ByteCodeViewer +CallHierarchy +CallHierarchy.BaseOnThisMethod +CallHierarchyPopupMenu +CaptureCPUUsageData +CaptureMemorySnapShot +ChangeAttributeValueAction +ChangeCodeStyleScheme +ChangeColorScheme +ChangeFileEncodingAction +ChangeInspectionProfile +ChangeKeymap +ChangeLaf +ChangeLineSeparators +ChangeScheme +ChangeSignature +ChangeSplitOrientation +ChangesView.AddUnversioned +ChangesView.ApplyPatch +ChangesView.ApplyPatchFromClipboard +ChangesView.Browse +ChangesView.CommitToolbar +ChangesView.CreatePatch +ChangesView.CreatePatchFromChanges +ChangesView.CreatePatchToClipboard +ChangesView.Diff +ChangesView.Edit +ChangesView.GroupBy +ChangesView.GroupBy.Directory +ChangesView.GroupBy.Module +ChangesView.GroupBy.Repository +ChangesView.Move +ChangesView.NewChangeList +ChangesView.Refresh +ChangesView.RemoveChangeList +ChangesView.RemoveDeleted +ChangesView.Rename +ChangesView.Revert +ChangesView.SetDefault +ChangesView.Shelve +ChangesView.ShelveSilently +ChangesView.ShowCommitOptions +ChangesView.ToggleCommitUi +ChangesView.UnshelveSilently +ChangesView.ViewOptions +ChangesView.ViewOptions.ShowRelatedFiles +ChangesViewPopupMenu +ChangesViewToolbar +ChangeTemplateDataLanguage +ChangeTypeSignature +ChangeView +chart-demo +CheckForUpdate +CheckinFiles +CheckinProject +CheckStatusForFiles +ChooseActiveBuildConfiguration +ChooseDebugConfiguration +ChooseNextSubsequentPropertyValueEditorAction +ChoosePrevSubsequentPropertyValueEditorAction +ChooseRunConfiguration +ClassNameCompletion +ClassTemplateNavigation +CleanPyc +CloseActiveTab +CloseAllEditors +CloseAllEditorsButActive +CloseAllNotifications +CloseAllReadonly +CloseAllToTheLeft +CloseAllToTheRight +CloseAllUnmodifiedEditors +CloseAllUnpinnedEditors +CloseContent +CloseEditor +CloseEditorsGroup +CloseFirstNotification +CloseIgnoredEditors +CloseProject +CloudConfigAction +CloudConfigActionGroup +CloudConfigDisableAction +CloudConfigPluginsAction +CloudConfigSelfSettingsAction +CloudConfigSilentlyAction +CloudConfigUpdateApi +CodeCleanup +CodeCompletion +CodeCompletionGroup +CodeEditorBaseGroup +CodeEditorViewGroup +CodeFormatGroup +CodeInsightEditorActions +CodeInspection.OnEditor +CodeMenu +CodotaActionsGroup +CodotaJavaScriptSearch +CodotaLeanSearchCrossRefAction +CodotaLocalLearningAction +CodotaStoryCellPopupMenu +CollapseAll +CollapseAllRegions +CollapseBlock +CollapseDocComments +CollapseExpandableComponent +CollapseRegion +CollapseRegionRecursively +CollapseSelection +CollapseTreeNode +CollectZippedLogs +com.alibaba.intellij.p3c.analytics.action_group +com.alibaba.intellij.p3c.idea.action.AliInspectionAction +com.alibaba.intellij.p3c.idea.action.SwitchLanguageAction +com.alibaba.intellij.p3c.idea.action.ToggleProjectInspectionAction +com.alibaba.p3c.analytics.action_group +com.alibaba.p3c.idea.action.SwitchLanguageAction +com.alibabacloud.intellij.action.aboutSupport +com.alibabacloud.intellij.action.AcrDeployAction +com.alibabacloud.intellij.action.AcsDeployAction +com.alibabacloud.intellij.action.CloudAppDeployAction +com.alibabacloud.intellij.action.DiagnoseAction +com.alibabacloud.intellij.action.EcsDeployAction +com.alibabacloud.intellij.action.EdasDeployAction +com.alibabacloud.intellij.action.EdasDeployK8sAction +com.alibabacloud.intellij.action.EdasDiagnosisAction +com.alibabacloud.intellij.action.EdasGenerateExamFileAction +com.alibabacloud.intellij.action.EdasServerlessDeployAction +com.alibabacloud.intellij.action.group.acracs +com.alibabacloud.intellij.action.group.ChangesViewGroup +com.alibabacloud.intellij.action.group.ContextMenuGroup +com.alibabacloud.intellij.action.group.EDASGroup +com.alibabacloud.intellij.action.group.EditorMenuGroup +com.alibabacloud.intellij.action.group.ExplorerGroup +com.alibabacloud.intellij.action.group.LocalDiagnosticGroup +com.alibabacloud.intellij.action.group.microservice.EditorMenu +com.alibabacloud.intellij.action.group.RosTemplateMenuActionGroup +com.alibabacloud.intellij.action.group.ToolbarAndMenuGroup +com.alibabacloud.intellij.action.HostDeployAction +com.alibabacloud.intellij.action.MultiRunAction +com.alibabacloud.intellij.action.OpenEcsViewAction +com.alibabacloud.intellij.action.OpenHostViewAction +com.alibabacloud.intellij.action.OpenMiniProgramAction +com.alibabacloud.intellij.action.OpenRdsViewAction +com.alibabacloud.intellij.action.OpenRosViewAction +com.alibabacloud.intellij.action.PreferencesAction +com.alibabacloud.intellij.action.RosTemplateMenuUpdateAction +com.alibabacloud.intellij.action.tips +com.github.setial.action.file_content +com.github.setial.action.file_tree +com.github.setial.intellijjavadocs.action.JavaDocGenerateActionOnEditor +com.github.setial.intellijjavadocs.action.JavaDocRemoveActionOnEditor +com.github.setial.intellijjavadocs.action.JavaDocsGenerateActionOnEditor +com.github.setial.intellijjavadocs.action.JavaDocsGenerateActionOnProject +com.github.setial.intellijjavadocs.action.JavaDocsRemoveActionOnEditor +com.github.setial.intellijjavadocs.action.JavaDocsRemoveActionOnProject +com.goide.vgo.actions.VgoSyncAction +com.goide.vgo.actions.VgoTidyAction +com.intellij.play.console.RunPlayConsoleAction +com.intellij.ws.actions.ConvertCurlToHttpRequestAction +com.intellij.ws.actions.microservices.HttpGenerateRequestFromEndpointsAction +com.jetbrains.plugins.remotesdk.console.RunSshConsoleAction +com.jetbrains.python.console.RunPythonOrDebugConsoleAction +com.jetbrains.rest.sphinx.RunSphinxQuickStartAction +CombinePropertiesFilesAction +CommanderPopupMenu +CommentByBlockComment +CommentByLineComment +CommentGroup +CommittedChanges.Clear +CommittedChanges.Details +CommittedChanges.Filter +CommittedChanges.Refresh +CommittedChanges.Revert +CommittedChangesToolbar +Compare.LastVersion +Compare.SameVersion +Compare.Selected +Compare.Specified +CompareActions +CompareClipboardWithSelection +CompareDirs +CompareFileWithEditor +CompareTwoFiles +Compile +CompileCoffeeScript +CompileDirty +CompileProject +CompilerErrorViewPopupMenu +CompuleQrc +ConcurrencyDebug +ConcurrencyExecutor +ConfigureEditorTabs +ConfigureIcs +ConfigureSoftWraps +Console.Dialect.SpecificGroup +Console.EditorTableResult.Group +Console.Execute +Console.Execute.Multiline +Console.History.Browse +Console.History.Next +Console.History.Previous +Console.HistoryActions +Console.Jdbc.BrowseHistory +Console.Jdbc.ChooseSchema +Console.Jdbc.ChooseSession +Console.Jdbc.Common +Console.Jdbc.Debug +Console.Jdbc.Execute +Console.Jdbc.Execute.2 +Console.Jdbc.Execute.3 +Console.Jdbc.ExplainAnalyse +Console.Jdbc.ExplainAnalyse.Raw +Console.Jdbc.ExplainGroup +Console.Jdbc.ExplainPlan +Console.Jdbc.ExplainPlan.Raw +Console.Jdbc.Left +Console.Jdbc.Right +Console.Jdbc.RunContextGroup +Console.Jdbc.Terminate +Console.Jdbc.ToggleParameters +Console.JdbcActions +Console.Jpa.Close +Console.Jpa.Execute +Console.Jpa.GenerateDDL +Console.Jpa.GenerateSql +Console.Jpa.Terminate +Console.JpaActions +Console.Open +Console.Oracle.DbmsOutput +Console.SplitLine +Console.TableResult.AddColumn +Console.TableResult.AddRow +Console.TableResult.Cancel +Console.TableResult.CellEditor.Popup +Console.TableResult.ChangeCellEditorFileEncoding +Console.TableResult.ChangeCellEditorLanguage +Console.TableResult.ChangeColumnLanguage +Console.TableResult.ChangeIsolation +Console.TableResult.ChangePageSize +Console.TableResult.ChooseExtractor +Console.TableResult.ChooseExtractor.Group +Console.TableResult.CloneColumn +Console.TableResult.CloneRow +Console.TableResult.ColumnActions +Console.TableResult.ColumnHeaderPopup +Console.TableResult.ColumnsList +Console.TableResult.ColumnSortAsc +Console.TableResult.ColumnSortDesc +Console.TableResult.ColumnSortingActions +Console.TableResult.ColumnSortReset +Console.TableResult.ColumnVisibility < > +Console.TableResult.CompareCells +Console.TableResult.CompareWith +Console.TableResult.Copy.Csv.Settings +Console.TableResult.Copy.Csv.Settings.ForExport +Console.TableResult.CountRows +Console.TableResult.Csv.PopupGroup +Console.TableResult.Csv.PreviewPopupGroup +Console.TableResult.Data +Console.TableResult.DeleteColumns +Console.TableResult.DeleteRows +Console.TableResult.DocumentTableHeader.AddColumn +Console.TableResult.DocumentTableHeader.CloneColumn +Console.TableResult.DocumentTableHeader.DeleteColumn +Console.TableResult.EditFilterCriteria +Console.TableResult.EditValue +Console.TableResult.EditValueMaximized +Console.TableResult.Filter.Custom +Console.TableResult.FindInGrid +Console.TableResult.FirstPage +Console.TableResult.GoToGroup +Console.TableResult.GoToScriptsDirectory +Console.TableResult.Group +Console.TableResult.Group.Common +Console.TableResult.Group.Secondary +Console.TableResult.Header.ChangeColumnLanguage +Console.TableResult.HideColumn +Console.TableResult.HideOtherColumns +Console.TableResult.ImportTable +Console.TableResult.LastPage +Console.TableResult.LoadFile +Console.TableResult.MaximizeEditingCell +Console.TableResult.MutationsGroup +Console.TableResult.NavigateAction +Console.TableResult.NavigateExportedAction +Console.TableResult.NavigateForeignAction button=1 clickCount=1 modifiers=128 +Console.TableResult.NavigationAndEditing.Group +Console.TableResult.NextPage +Console.TableResult.Options +Console.TableResult.PasteFormat +Console.TableResult.PopupGroup +Console.TableResult.PreviousPage +Console.TableResult.Reload +Console.TableResult.RenameTab +Console.TableResult.ResetView +Console.TableResult.RevertSelected +Console.TableResult.SaveLobAs +Console.TableResult.SelectRow +Console.TableResult.SetDefault +Console.TableResult.SetNull +Console.TableResult.ShowDumpDialogAction +Console.TableResult.ShowQuery +Console.TableResult.SortToggle +Console.TableResult.Submit +Console.TableResult.SubmitAndCommit +Console.TableResult.ToggleFilters +Console.TableResult.Transpose +Console.TableResult.ViewAs +Console.TableResult.ViewAsExtractor +Console.TableResult.ViewAsTable +Console.TableResult.ViewAsTreeTable +Console.TabPopupGroup +Console.TabPopupGroup.Embedded +Console.Toggle.Notebook.Mode +Console.Transaction +Console.Transaction.Commit +Console.Transaction.RevertAndRollback +Console.Transaction.Rollback +Console.Transaction.TxSettings +ConsoleEditorPopupMenu +ConsoleView.ClearAll +ConsoleView.FoldLinesLikeThis +ConsoleView.PopupMenu +ConsoleView.ShowAsJsonAction +context.clear +context.load +context.save +ContextHelp +ConvertContentsToAttributeAction +ConvertFormToDslAction +ConvertGroovyToJava +ConvertIndentsGroup +ConvertIndentsToSpaces +ConvertIndentsToTabs +ConvertModuleGroupsToQualifiedNames +ConvertSchemaAction +ConvertToCompileStatic +ConvertToInstanceMethod +ConvertToMacLineSeparators +ConvertToUnixLineSeparators +ConvertToWindowsLineSeparators +CopyAbsolutePath +CopyAsPlainText +CopyAsRichText +CopyContentRootPath +CopyElement +CopyExternalReferenceGroup +CopyFileReference +CopyGroup +CopyPathFromRepositoryRootProvider +CopyPaths +CopyPathWithLineNumber +CopyReference +CopyReferencePopup +CopyReferencePopupGroup +CopySettingsPath +CopySourceRootPath +CopyStoryContent +CopyTBXReference +CopyUrl +Coverage +CoverageMenu +CoveragePlatformMenu +CreateBeanManagedEntityBeanAction +CreateCDIBeansXmlFile +CreateCMPField +CreateContainerManagedEntityBeanAction +CreateDesktopEntry +CreateEditorConfigFile +CreateEJBInterceptor +CreateEJBRelationship +CreateFilterAction +CreateJavaeeWebPageAction +CreateLauncherScript +CreateLibraryFromFile +CreateListenerAction +CreateMessageBean +CreateOpenapiSpecification +CreateResourceBundle +CreateRunConfiguration +CreateServletAction +CreateSetupPy +CreateSingletonBean +CreateStatefulBean +CreateStatelessBean +CreateTaglibFileAction +CreateTransferObject +CreateWebProject +CutCopyPasteGroup +Database.Settings +DatabaseView.AddActionGroup +DatabaseView.AddActionGroupPopup +DatabaseView.AddDataSourceFromPath +DatabaseView.AddDataSourceFromThat +DatabaseView.AddDataSourceFromUrl +DatabaseView.AddDataSourceHere +DatabaseView.AddDataSourcesGroup +DatabaseView.AddDriver +DatabaseView.AddDriverAndDataSource +DatabaseView.AddSchemasAction +DatabaseView.AssignColor +DatabaseView.BatchModifyIndices +DatabaseView.CloseConnectionAction +DatabaseView.CopyAction +DatabaseView.CopyDataSourceSettings +DatabaseView.CopyDdlAction +DatabaseView.CopyDdlFromDbAction +DatabaseView.CopyTable +DatabaseView.CreateDataSourceFromSettings +DatabaseView.Ddl.AddColumn +DatabaseView.Ddl.AddForeignKey +DatabaseView.Ddl.AddIndex +DatabaseView.Ddl.AddObject +DatabaseView.Ddl.AddPrimaryKey +DatabaseView.Ddl.AddTable +DatabaseView.Ddl.AlterObject +DatabaseView.Ddl.BatchAddIndices +DatabaseView.Ddl.CommentOnObject +DatabaseView.Ddl.DropForeignKey +DatabaseView.Ddl.DropPrimaryKey +DatabaseView.DebugRoutine +DatabaseView.DropAction +DatabaseView.Dump.Native +DatabaseView.ExecuteRoutine +DatabaseView.FilterAction +DatabaseView.ForceRefresh +DatabaseView.ForgetSchemaAction +DatabaseView.FullTextSearch +DatabaseView.GoToScriptsDirectory +DatabaseView.HideSchemasAction +DatabaseView.Import +DatabaseView.ImportDataSources +DatabaseView.ImportFromSql +DatabaseView.MoveToGroup +DatabaseView.OpenDdlInConsole +DatabaseView.PropertiesAction +DatabaseView.Refresh +DatabaseView.Restore.Native +DatabaseView.RunExtensionScriptGroup +DatabaseView.Scripted.Extensions +DatabaseView.ShowContentDiff +DatabaseView.ShowDiff +DatabaseView.Sql.Scripts +DatabaseView.SqlGenerator +DatabaseView.Tools +DatabaseView.Tools.PrepareIntrospectionDiagnostic +DatabaseView.Tools.RecompileAction +DatabaseView.Tools.RefreshMatViewAction +DatabaseView.Tools.TruncateTableAction +DatabaseViewPopupMenu +DatabaseViewToolbar +Debug +DebugBuildProcess +DebugClass +Debugger.AddSteppingFilter +Debugger.AddToWatch +Debugger.AdjustArrayRange +Debugger.AsyncStacks +Debugger.AutoRenderer +Debugger.CallTracer +Debugger.CopyStack +Debugger.CreateRenderer +Debugger.CustomizeContextView +Debugger.CustomizeThreadsView +Debugger.EditArrayFilter +Debugger.EditCustomField +Debugger.EditFrameSource +Debugger.EditNodeSource +Debugger.EditTypeSource +Debugger.EvaluateInConsole +Debugger.EvaluationDialogPopup +Debugger.FilterArray +Debugger.FocusOnBreakpoint +Debugger.ForceEarlyReturn +Debugger.FramePanelPopup +Debugger.FreezeThread +Debugger.InspectPanelPopup +Debugger.InterruptThread +Debugger.MarkObject +Debugger.MuteRenderers +Debugger.NewCustomField +Debugger.PopFrame +Debugger.ReloadFile +Debugger.RemoveAllBreakpoints +Debugger.RemoveAllBreakpointsInFile +Debugger.RemoveArrayFilter +Debugger.RemoveCustomField +Debugger.Representation +Debugger.RestoreBreakpoint +Debugger.ResumeThread +Debugger.ShowLibraryFrames +Debugger.ShowReferring +Debugger.ShowRelatedStack +Debugger.ShowTypes +Debugger.StepOutOfBlock +Debugger.SwitchToTheNextContext +Debugger.ThreadsPanelPopup +Debugger.ThrowException +Debugger.Tree.EvaluateInConsole +Debugger.ViewAsGroup +Debugger.ViewText +Debugger.WatchesPanelPopup +DebuggingActionsGroup +DebugMainMenu +DebugReloadGroup +DecreaseColumnWidth +DecrementWindowHeight +DecrementWindowWidth +defaultLombokData +defaultLombokEqualsAndHashcode +defaultLombokGetter +defaultLombokLogger +defaultLombokSetter +defaultLombokToString +DefaultProfilerExecutorGroup +DefaultProfilerExecutorGroupContextActionId +DelegateMethods +DeleteAttributeAction +DeleteTagAction +DelombokActionGroup +delombokAny +delombokBuilder +delombokConstructor +delombokData +delombokDelegate +delombokEqualsAndHashCode +delombokFieldNameCostants +delombokGetter +delombokLogger +delombokSetter +delombokSuperBuilder +delombokToString +delombokUtilityClass +delombokValue +delombokWither +DeploymentVcsActions +DevKit.ApplyTheme +DevKit.EditThemeEditorColorScheme +DevKit.NewMessageBundle +DevKit.NewTheme +DevKit.RollbackTheme +DevKit.ThemeEditorToolbar +DevkitNewActions +DiagnosticGroup +Diagram.DeselectAll +Diagram.SelectAll +Diff.AppendLeftSide +Diff.AppendRightSide +Diff.ApplyLeftSide +Diff.ApplyNonConflicts +Diff.ApplyNonConflicts.Left +Diff.ApplyNonConflicts.Right +Diff.ApplyRightSide +Diff.ComparePartial.Base.Left +Diff.ComparePartial.Base.Right +Diff.ComparePartial.Left.Right +Diff.CompareWithBase.Left +Diff.CompareWithBase.Result +Diff.CompareWithBase.Right +Diff.EditorGutterPopupMenu +Diff.EditorGutterPopupMenu.EditorSettings +Diff.EditorPopupMenu +Diff.FocusOppositePane +Diff.FocusOppositePaneAndScroll +Diff.IgnoreLeftSide +Diff.IgnoreRightSide +Diff.KeymapGroup +Diff.MagicResolveConflicts +Diff.NextChange +Diff.NextConflict +Diff.PrevChange +Diff.PreviousConflict +Diff.ResolveConflict +Diff.ShowDiff +Diff.ShowInExternalTool +Diff.ShowSettingsPopup +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 +DirDiffMenu.SynchronizeDiff.All +DirDiffMenu.WarnOnDeletion +DirDiffOperationsMenu +DisableInspection +DissociateResourceBundleAction +Django.RunManageTaskAction +DlvDebugger.ViewAsGroup +DlvRecordAndDebug +DlvRewindAction +DlvToggleThreadsAction +DocCommentGutterIconContextMenu +Docker.AddDockerConnection +Docker.Filter +Docker.FilterStoppedContainers +Docker.FilterUntaggedImages +Docker.RemoteServers.Attach2Container +Docker.RemoteServers.CopyContainerId +Docker.RemoteServers.CopyContainerImageId +Docker.RemoteServers.CopyImageId +Docker.RemoteServers.CreateContainer +Docker.RemoteServers.DeleteContainer +Docker.RemoteServers.DeleteImage +Docker.RemoteServers.DownComposeApp +Docker.RemoteServers.ExecInContainer +Docker.RemoteServers.InspectContainerOrImage +Docker.RemoteServers.PullImage +Docker.RemoteServers.PushImage +Docker.RemoteServers.ScaleComposeService +Docker.RemoteServers.SelectContainerImage +Docker.RemoteServers.ShowContainerLog +Docker.RemoteServers.ShowContainerProcesses +Docker.RemoteServers.StartComposeService +Docker.RemoteServers.StartContainer +Docker.RemoteServers.StopComposeApp +Docker.RemoteServers.StopComposeService +Docker.RemoteServers.StopContainer +Docker.RemoteServersViewPopup +Docker.RemoteServersViewToolbar +Docker.RemoteServersViewToolbar.Top +DockPinnedMode +DockUnpinnedMode +Document2XSD +DomCollectionControl +DomCollectionControl.Add +DomCollectionControl.Edit +DomCollectionControl.Remove +DomElementsTreeView.AddElement +DomElementsTreeView.AddElementGroup +DomElementsTreeView.DeleteElement +DomElementsTreeView.GotoDomElementDeclarationAction +DomElementsTreeView.TreePopup +Drools.CreateRuleFile +DSM.Analyze +DSM.Close +DSM.DiggIntoDependenciesAction +DSM.GoToNextCycle +DSM.LimitDependencies +DSM.OpenDependencies +DSM.OpenInEditor +DSM.Popup +DSM.ToggleCycles +DSM.ToggleFlattenPackages +DSM.ToggleGradient +DSM.ToggleModuleGroups +DSM.ToggleModules +DSM.TogglenPackages +DSM.Toolbar +DSM.ZoomIn +DSM.ZoomOut +DumpLookupElementWeights +DumpThreads +DuplicatesForm.SendToLeft +DuplicatesForm.SendToRight +DupLocate +Dvcs.FileHistory.ContextMenu +Dvcs.Log.ContextMenu +Dvcs.Log.Toolbar +EditBookmark +EditBookmarksGroup +EditBreakpoint +EditCommitMessage +EditCreateDeleteGroup +EditCustomProperties +EditCustomVmOptions +EditEntityListenerBindingsAction +EditFavorites +EditInspectionSettings +EditInterceptorBindingsAction +EditMacros +EditMenu +Editor.JSLibrariesMenu +Editor.JSLibrariesMenu.LibraryList +EditorActions +EditorAddOrRemoveCaret button=1 clickCount=1 modifiers=576 +EditorAddRectangularSelectionOnMouseDrag button=1 clickCount=1 modifiers=832 +EditorBackSpace +EditorBackwardParagraph +EditorBackwardParagraphWithSelection +EditorBidiTextDirection +EditorBreadcrumbsHideBoth +EditorBreadcrumbsSettings +EditorBreadcrumbsShowAbove +EditorBreadcrumbsShowBelow +EditorChooseLookupItem +EditorChooseLookupItemCompleteStatement +EditorChooseLookupItemDot +EditorChooseLookupItemReplace +EditorCloneCaretAbove +EditorCloneCaretBelow +EditorCodeBlockEnd +EditorCodeBlockEndWithSelection +EditorCodeBlockStart +EditorCodeBlockStartWithSelection +EditorCompleteStatement +EditorContextBarMenu +EditorContextInfo +EditorCopy +EditorCreateRectangularSelection button=2 clickCount=1 modifiers=576 +EditorCreateRectangularSelectionOnMouseDrag button=1 clickCount=1 modifiers=512 button=2 clickCount=1 modifiers=0 +EditorCut +EditorCutLineBackward +EditorCutLineEnd +EditorDecreaseFontSize +EditorDelete +EditorDeleteLine +EditorDeleteToLineEnd +EditorDeleteToLineStart +EditorDeleteToWordEnd +EditorDeleteToWordEndInDifferentHumpsMode +EditorDeleteToWordStart +EditorDeleteToWordStartInDifferentHumpsMode +EditorDown +EditorDownWithSelection +EditorDuplicate +EditorDuplicateLines +EditorEnter +EditorEscape +EditorFocusGutter +EditorForwardParagraph +EditorForwardParagraphWithSelection +EditorGutterPopupMenu +EditorGutterToggleGlobalIndentLines +EditorGutterToggleGlobalLineNumbers +EditorGutterVcsPopupMenu +EditorHungryBackSpace +EditorIncreaseFontSize +EditorIndentLineOrSelection +EditorIndentSelection +EditorJoinLines +EditorKillRegion +EditorKillRingSave +EditorKillToWordEnd +EditorKillToWordStart +EditorLangPopupMenu +EditorLeft +EditorLeftWithSelection +EditorLineEnd +EditorLineEndWithSelection +EditorLineStart +EditorLineStartWithSelection +EditorLookupDown +EditorLookupUp +EditorMatchBrace +EditorMoveDownAndScroll +EditorMoveDownAndScrollWithSelection +EditorMoveToPageBottom +EditorMoveToPageBottomWithSelection +EditorMoveToPageTop +EditorMoveToPageTopWithSelection +EditorMoveUpAndScroll +EditorMoveUpAndScrollWithSelection +EditorNextWord +EditorNextWordInDifferentHumpsMode +EditorNextWordInDifferentHumpsModeWithSelection +EditorNextWordWithSelection +EditorPageDown +EditorPageDownWithSelection +EditorPageUp +EditorPageUpWithSelection +EditorPaste +EditorPasteFromX11 button=2 clickCount=1 modifiers=0 +EditorPasteSimple +EditorPopupMenu +EditorPopupMenu.GoTo +EditorPopupMenu.Run +EditorPopupMenu1 +EditorPopupMenu1.FindRefactor +EditorPopupMenu2 +EditorPopupMenu3 +EditorPopupMenuDebug +EditorPopupMenuDebugJava +EditorPreviousWord +EditorPreviousWordInDifferentHumpsMode +EditorPreviousWordInDifferentHumpsModeWithSelection +EditorPreviousWordWithSelection +EditorResetFontSize +EditorReverseLines +EditorRight +EditorRightWithSelection +EditorScrollBottom +EditorScrollDown +EditorScrollDownAndMove +EditorScrollLeft +EditorScrollRight +EditorScrollToCenter +EditorScrollTop +EditorScrollUp +EditorScrollUpAndMove +EditorSelectLine +EditorSelectWord +EditorSetContentBasedBidiTextDirection +EditorSetLtrBidiTextDirection +EditorSetRtlBidiTextDirection +EditorShowGutterIconTooltip +EditorSortLines +EditorSplitLine +EditorStartNewLine +EditorStartNewLineBefore +EditorSwapSelectionBoundaries +EditorTab +EditorTabCompileGroup +EditorTabPopupMenu +EditorTabPopupMenuEx +EditorTabsGroup +EditorTextEnd +EditorTextEndWithSelection +EditorTextStart +EditorTextStartWithSelection +EditorToggleActions +EditorToggleCase +EditorToggleColumnMode +EditorToggleInsertState +EditorToggleShowBreadcrumbs +EditorToggleShowGutterIcons +EditorToggleShowIndentLines +EditorToggleShowLineNumbers +EditorToggleShowWhitespaces +EditorToggleStickySelection +EditorToggleUseSoftWraps +EditorToggleUseSoftWrapsInPreview +EditorUnindentSelection +EditorUnSelectWord +EditorUp +EditorUpWithSelection +EditPropertyValue +editRunConfigurations +EditSelectGroup +EditSelectWordGroup +EditSmartGroup +EditSource +EditSourceInNewWindow +EmacsStyleIndent +Emmet +EmmetNextEditPoint +EmmetPreview +EmmetPreviousEditPoint +EmmetUpdateTag +EmojiAndSymbols +EnableDirectoryIconsAction +EnableFileIconsAction +EnableMonochromeIconsAction +EnablePackageJsonMismatchedDependenciesNotification +EnablePsiIconsAction +EnableUIIconsAction +EncapsulateFields +EndpointsActions +EndpointsActions.ContextMenu +ES6.Generate.Index +EscapeEntities +EslintImportCodeStyle +EvaluateExpression +ExcludeFromStubGeneration +excludeFromSuite +excludeFromTestNGSuite +ExcludeFromValidation +excludeGroup +ExecuteInPyConsoleAction +Exit +ExpandAll +ExpandAllRegions +ExpandAllToLevel +ExpandAllToLevel1 +ExpandAllToLevel2 +ExpandAllToLevel3 +ExpandAllToLevel4 +ExpandAllToLevel5 +ExpandDocComments +ExpandExpandableComponent +ExpandLiveTemplateByTab +ExpandLiveTemplateCustom +ExpandRegion +ExpandRegionRecursively +ExpandToLevel +ExpandToLevel1 +ExpandToLevel2 +ExpandToLevel3 +ExpandToLevel4 +ExpandToLevel5 +ExpandTreeNode +ExplicitArgumentMenu.ShowImplicitArgumentsPopup +ExplicitArgumentsMenu +ExportImportGroup +ExportSettings +ExportTestResults +ExportThreads +ExportToEclipse +ExportToHTML +ExportToTextFile +ExpressionTypeInfo +ExternalJavaDoc +ExternalSystem.Actions +ExternalSystem.AfterCompile +ExternalSystem.AfterRebuild +ExternalSystem.AfterSync +ExternalSystem.AssignRunConfigurationShortcut +ExternalSystem.AssignShortcut +ExternalSystem.AttachProject +ExternalSystem.BeforeCompile +ExternalSystem.BeforeRebuild +ExternalSystem.BeforeRun +ExternalSystem.BeforeSync +ExternalSystem.CollapseAll +ExternalSystem.CreateRunConfiguration +ExternalSystem.DetachProject +ExternalSystem.EditRunConfiguration +ExternalSystem.ExpandAll +ExternalSystem.GroupModules +ExternalSystem.GroupTasks +ExternalSystem.HideProjectRefreshAction +ExternalSystem.IgnoreProject +ExternalSystem.OpenConfig +ExternalSystem.OpenTasksActivationManager +ExternalSystem.ProjectRefreshAction +ExternalSystem.ProjectRefreshActionGroup +ExternalSystem.RefreshAllProjects +ExternalSystem.RefreshProject +ExternalSystem.RemoveRunConfiguration +ExternalSystem.RunTask +ExternalSystem.SelectProjectDataToImport +ExternalSystem.ShowIgnored +ExternalSystem.ShowInheritedTasks +ExternalSystem.ShowSettings +ExternalSystem.ToggleAutoReload +ExternalSystem.ToggleAutoReload.All +ExternalSystem.ToggleAutoReload.None +ExternalSystem.ToggleAutoReload.Selective +ExternalSystemView.ActionsToolbar +ExternalSystemView.ActionsToolbar.CenterPanel +ExternalSystemView.ActionsToolbar.LeftPanel +ExternalSystemView.ActionsToolbar.RightPanel +ExternalSystemView.BaseProjectMenu +ExternalSystemView.ModuleMenu +ExternalSystemView.ProjectMenu +ExternalSystemView.RunConfigurationMenu +ExternalSystemView.TaskActivationGroup +ExternalSystemView.TaskMenu +ExternalToolsGroup +ExtractClass +ExtractInclude +ExtractInterface +ExtractJspTagAction +ExtractMethod +ExtractMethodToolWindow.TreePopup +ExtractModule +ExtractSuperclass +Faces.CreateFacesConfigAction +Faces.CreateJsfAction +Faces.Generate.From.Persistence +Faces.MainGraphPopup +Faces.MainPageGraphPopup +Faces.User.Defined.Faces.Config +FavoritesViewPopupMenu +FileChooser +FileChooser.Delete +FileChooser.GotoDesktop +FileChooser.GotoHome +FileChooser.GotoJDK +FileChooser.GotoModule +FileChooser.GotoProject +FileChooser.LightEditGotoOpenedFile +FileChooser.NewFile +FileChooser.NewFolder +FileChooser.Refresh +FileChooser.ShowHiddens +FileChooser.TogglePathShowing +FileChooserToolbar +FileEditor.ImportToDatabase +FileEditor.ImportToDatabase.Group +FileEditor.OpenDataEditor +FileExportGroup +FileHistory.AnnotateRevision +FileHistory.KeymapGroup +FileMainSettingsGroup +FileMenu +FileOpenGroup +FileOtherSettingsGroup +FilePropertiesGroup +FileSettingsGroup +FileStructurePopup +FileTemplateSeparatorGroup +FillParagraph +Find +FindInPath +FindMenuGroup +FindModal +FindNext +FindPrevious +FindUsages +FindUsagesInFile +FindUsagesMenuGroup +FindWordAtCaret +FixDocComment +Flex.Debugger.FilterSwfLoadUnloadMessages +Flex.NewActionScriptClass +Flex.NewFlexComponent +FloatMode +FlowJS.Restart.All.Servers +FocusEditor +FoldingGroup +ForceRefresh +ForceRunToCursor +ForceStepInto +ForceStepOver +Forward button=5 clickCount=1 modifiers=0 +free-mabatis-generate-action +FullyExpandTreeNode +Gant.NewScript +Generate +Generate.Constructor.JavaScript +Generate.EventHandler.Actionscript +Generate.GetAccessor.JavaScript +Generate.GetSetAccessor.JavaScript +Generate.GrailsView +Generate.Missing.Members.ES6 +Generate.Missing.Members.TypeScript +Generate.SetAccessor.JavaScript +Generate.SetUp.Actionscript +Generate.TearDown.Actionscript +Generate.TestMethod.Actionscript +Generate.ToString.Actionscript +GenerateAfterClassMethod +GenerateBeforeClassMethod +GenerateConstructor +GenerateCopyright +GenerateCoverageReport +GenerateCreateUI +GenerateDataMethod +GenerateDbObjectGroup +GenerateDTD +GenerateEJBFinderOrSelectorMethod +GenerateEJBReference +GenerateEntityListenerMethods +GenerateEquals +GenerateExternalization +GenerateFilterAction +GenerateFromTestCreatorsGroup +GenerateGetter +GenerateGetterAndSetter +GenerateGroup +GenerateInterceptorMethods +GenerateJavadoc +GenerateJspFunctionAction +GenerateJspTagAction +GenerateModuleDescriptors +GeneratePattern +GeneratePersistenceContextReference +GeneratePersistenceMapping +GenerateResourceReference +GenerateSerialVersionUID +GenerateServletAction +GenerateSetter +GenerateSetUpMethod +GenerateSuperMethodCall +GenerateTearDownMethod +GenerateTestMethod +GenerateXmlTag +Generify +Git.Add +Git.Branches +Git.BranchOperationGroup +Git.BrowseRepoAtRevision +Git.Checkout.Branch +Git.CheckoutGroup +Git.CheckoutRevision +Git.CherryPick.Abort +Git.Clone +Git.Commit.And.Push.Executor +Git.CompareWithBranch +Git.Configure.Remotes +Git.ContextMenu +Git.CreateNewBranch +Git.CreateNewTag +Git.Fetch +Git.FileHistory.ContextMenu +Git.Fixup.To.Commit +Git.Ignore.File +Git.Init +Git.Interactive.Rebase +Git.Log +Git.Log.ContextMenu +Git.Log.ContextMenu.CheckoutBrowse +Git.Log.DeepCompare +Git.Log.Hide.Branches +Git.Log.Toolbar +Git.LogContextMenu +Git.Menu +Git.Merge +Git.Merge.Abort +Git.Ongoing.Rebase.Actions +Git.OpenExcludeFile +Git.Pull +Git.Rebase +Git.Rebase.Abort +Git.Rebase.Continue +Git.Rebase.Skip +Git.Rename.Local.Branch +Git.RepositoryContextMenu +Git.Reset +Git.Reset.In.Log +Git.ResolveConflicts +Git.Revert.Abort +Git.Revert.In.Log +Git.Reword.Commit +Git.SelectInGitLog +Git.Squash.Into.Commit +Git.Stash +Git.Tag +Git.Uncommit +Git.Unstash +GitFileActions +Github.Create.Gist +Github.Create.Pull.Request +Github.Open.In.Browser +Github.PullRequest.Branch.Create +Github.PullRequest.Comments.Reload +Github.PullRequest.Details.Popup +Github.PullRequest.Details.Reload +Github.PullRequest.List.Reload +Github.PullRequest.Timeline.Popup +Github.PullRequest.Timeline.Show +Github.PullRequest.Timeline.Update +Github.PullRequest.ToolWindow.List.Popup +Github.PullRequest.Zip.Commits.Toggle +Github.Rebase +Github.Share +Github.View.Pull.Request +GitRepositoryActions +Go.NewGoFile +GoAddContentRootFromGopath +GoCallHierarchyPopupMenu +GoCallHierarchyPopupMenu.BaseOnThisDeclaration +GoCoreDumpAction +GoFmtFileAction +GoFmtProjectAction +GoGenerateConstructorAction +GoGenerateFileAction +GoGenerateForStruct +GoGenerateGetterAction +GoGenerateGetterSetterAction +GoGenerateSetterAction +GoImportsFileAction +GoOpenProjectFromGopath +GoOpenSettings +GoRemoveContentRootAction +GoReplayTraceAction +GoTestGenerateGroup +GotoAction +GotoBookmark0 +GotoBookmark1 +GotoBookmark2 +GotoBookmark3 +GotoBookmark4 +GotoBookmark5 +GotoBookmark6 +GotoBookmark7 +GotoBookmark8 +GotoBookmark9 +GotoChangedFile +GoToChangeMarkerGroup +GoToClass +GotoClass +GoToCodeGroup +GotoCustomRegion +GotoDeclaration button=1 clickCount=1 modifiers=128 +GotoDeclarationOnly +GoToEditPointGroup +GoToErrorGroup +GotoFile +GotoImplementation +GoToLastTab +GotoLine +GoToLinkTarget +GoToMenu +GotoNextBookmark +GotoNextElementUnderCaretUsage +GotoNextError +GotoNextIncompletePropertyAction +GoTools +GotoPrevElementUnderCaretUsage +GotoPreviousBookmark +GotoPreviousError +GotoRelated +GotoRow +GotoSuperMethod +GotoSymbol +GoToTab1 +GoToTab2 +GoToTab3 +GoToTab4 +GoToTab5 +GoToTab6 +GoToTab7 +GoToTab8 +GoToTab9 +GoToTapestryClass +GoToTapestryTemplate +GoToTargetEx +GotoTest +GotoTypeDeclaration +GoTypeHierarchyPopupMenu +GoVetFileAction +Gradle.AddGradleDslDependencyAction +Gradle.DependencyGraphMenu +Gradle.ExecuteTask +Gradle.GenerateGroup +Gradle.ImportExternalProject +Gradle.OpenProjectCompositeConfiguration +Gradle.RefreshDependencies +Gradle.ShowDaemons +Gradle.ToggleOfflineAction +Grails +Grails.Actions +Grails.ChangeSDK +Grails.Controller +Grails.DomainClass +Grails.Filter +grails.goto.controller +grails.goto.domain +grails.goto.service +grails.goto.test +grails.goto.view +Grails.GSP +Grails.Interceptor +Grails.Plugins +Grails.Script +Grails.Service +Grails.TagLib +grails.toolbar +Grails.UpdateSettings +Grails.WAR +Graph.ActualSize +Graph.ApplyCurrentLayout +Graph.CommonLayoutGroup +Graph.Current.Node.Dependencies.Filter +Graph.DefaultGraphPopup +Graph.DefaultGraphToolbar +Graph.Delete +Graph.ExportToFile +Graph.Faces.DefaultGraphPopup +Graph.Faces.OpenSelectedPages +Graph.FitContent +Graph.Layout.BalloonLayouter +Graph.Layout.CircularLayouter +Graph.Layout.DirectedOrthogonalLayouter +Graph.Layout.Fit.Content +Graph.Layout.HierarchicGroupLayouter +Graph.Layout.OrganicLayouter +Graph.Layout.OrthogonalLayouter +Graph.Layout.TreeLayouter +Graph.Show.Edge.Labels +Graph.ShowHideGrid +Graph.SnapToGrid +Graph.ZoomIn <=> +Graph.ZoomOut <-> +GridGeoViewer +Groovy.CheckResources +Groovy.CheckResources.Make +Groovy.CheckResources.Rebuild +Groovy.Console +Groovy.Doc.Generating +Groovy.NewClass +Groovy.NewScript +groovy.scripting.shell +Groovy.Shell +Groovy.Shell.Execute +GroovyGenerateGroup1 +GroupByEndpointSourceAction +GroupByEndpointTypeAction +GroupByFrameworkAction +GroupByModuleAction +GroupByProjectAction +GroupEndpoints +Gsonformat +GuiceActionGroup +GuiDesigner.AddComponent +GuiDesigner.AddGroup +GuiDesigner.AddTab +GuiDesigner.ChooseLocale +GuiDesigner.ComponentTreePopupMenu +GuiDesigner.CreateComponent +GuiDesigner.CreateListener +GuiDesigner.DataBindingWizard +GuiDesigner.DecreaseIndent +GuiDesigner.DeleteComponent +GuiDesigner.DeleteGroup +GuiDesigner.Duplicate +GuiDesigner.EditComponent +GuiDesigner.EditGroup +GuiDesigner.EditorPopupMenu +GuiDesigner.ExpandSelection +GuiDesigner.Flatten +GuiDesigner.FormSource +GuiDesigner.GenerateMain +GuiDesigner.GoToListener +GuiDesigner.GroupButtons +GuiDesigner.IncreaseIndent +GuiDesigner.MainToolbarActions +GuiDesigner.Morph +GuiDesigner.NewActions +GuiDesigner.Pack +GuiDesigner.PaletteComponentPopupMenu +GuiDesigner.PaletteGroupPopupMenu +GuiDesigner.PreviewForm +GuiDesigner.PropertyInspectorPopupMenu +GuiDesigner.QuickJavadoc button=2 clickCount=1 modifiers=512 +GuiDesigner.ReloadCustomComponents +GuiDesigner.ResetValue +GuiDesigner.ShowComponentTags +GuiDesigner.ShowGrid +GuiDesigner.ShrinkSelection +GuiDesigner.SurroundPopup +GuiDesigner.UngroupButtons +GutterMenuBookmarks +GWT +GWT.GenerateCompileReport +GWT.GenerateUiHandlerMethod +GWT.NewEntryPoint +GWT.NewEventWithHandler +GWT.NewModule +GWT.NewRemoteService +GWT.NewSerialClass +GWT.NewTestCase +GWT.NewUiBinder +GWT.NewUiRenderer +Help.JetBrainsTV +Help.KeymapReference +HelpDiagnosticTools +HelpMenu +HelpTopics +Hg.Commit.And.Push.Executor +Hg.Ignore.File +Hg.Init +Hg.Log.ContextMenu +Hg.Mq +Hg.MQ.Unapplied +hg4idea.add +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 +hg4idea.QFinish +hg4idea.QFold +hg4idea.QGoto +hg4idea.QGotoFromPatches +hg4idea.QImport +hg4idea.QPushAction +hg4idea.QRefresh +hg4idea.QRename +hg4idea.Rebase.Abort +hg4idea.Rebase.Continue +hg4idea.resolve.mark +hg4idea.run.conflict.resolver +hg4idea.tag +hg4idea.updateTo +hg4idea.UpdateToRevision +Hibernate.SessionFactorySettings +HideActiveWindow +HideAllWindows +HideCoverage +HideFileIcons +HideIgnoredFiles +HideSideWindows +HidpiInfo +HierarchyGroup +HighlightUsagesInFile +HippieBackwardCompletion +HippieCompletion +Hotswap +hprof-viewer +HtmlAddTableColumnAfter +HtmlAddTableColumnBefore +HtmlTableCellNavigateDown +HtmlTableCellNavigateLeft +HtmlTableCellNavigateRight +HtmlTableCellNavigateUp +HTTP.Request.NewFile +HTTPClient.AddRequest +HTTPClient.OpenCollection +HTTPClient.RunAll +HTTPClientGroup +HTTPClientNewEnvironmentFile +I18nize +IdeaVim.ReloadVimRc.group +IdeaVim.ReloadVimRc.reload +IdeScriptingConsole +Ignore.AddTemplate +Ignore.IgnoreGroup +Ignore.New +Ignore.TemplateGroup +Ignore.UnignoreGroup +IgnoreChoicesGroup +IgnoreCreateUserTemplate +Images.ConvertSvgToPng +Images.EditExternally +Images.Editor.ActualSize +Images.Editor.FitZoomToWindow +Images.Editor.ToggleGrid +Images.Editor.ZoomIn +Images.Editor.ZoomOut +Images.EditorPopupMenu +Images.EditorToolbar +Images.SetBackgroundImage +Images.ShowThumbnails +Images.Thumbnails.EnterAction +Images.Thumbnails.Hide +Images.Thumbnails.ToggleFileName +Images.Thumbnails.ToggleFileSize +Images.Thumbnails.ToggleRecursive +Images.Thumbnails.ToggleTagsPanelName +Images.Thumbnails.UpFolder +Images.ThumbnailsPopupMenu +Images.ThumbnailsToolbar +Images.ToggleTransparencyChessboard +ImagesRootGroup +ImplementMethods +ImplicitArgumentsMenu +ImplicitConversionMenu +ImportModule +ImportModuleFromImlFile +ImportProfilerResultsFromHistory +ImportProject +ImportSettings +ImportTests +ImportTestsFromFile +IncomingChanges.Refresh +IncomingChangesToolbar +IncreaseColumnWidth +IncrementalSearch +IncrementWindowHeight +IncrementWindowWidth +InferNullity +InheritanceToDelegation +Inline +InsertLiveTemplate +InspectCode +InspectCodeActionInPopupMenus +InspectCodeGroup +InspectCodeInCodeMenuGroup +InspectionToolWindow.TreePopup +InstallNodeLocalDependencies +IntegrateChangeSetAction +IntegrateFiles +IntroduceActionsGroup +IntroduceConstant +IntroduceField +IntroduceFunctionalParameter +IntroduceFunctionalVariable +IntroduceParameter +IntroduceParameterObject +IntroduceVariable +InvalidateCaches +InvertBoolean +J2EEGenerateGroup +J2EEViewPopupMenu +JasmineGenerateAfterEachMethodAction +JasmineGenerateBeforeEachMethodAction +JasmineGenerateNewSpecAction +JasmineGenerateNewSuiteAction +Java.BuildMenu +JavaCompileGroup +JavaDebuggerActions +Javaee.Deploy +Javaee.KeepDeployedAfterDisconnect +Javaee.RefreshDeploymentStatus +Javaee.Undeploy +JavaeeEditorGenerateGroup +JavaeeMigrationGroup +JavaeeRunDeploymentViewToolbar +JavaeeRunToolWindowToolbar +JavaGenerateGroup1 +JavaGenerateGroup2 +JavaMethodHierarchyPopupMenu +JavaNewProjectOrModuleGroup +JavaScript.Debugger.ReloadInBrowser +JavaScript.Debugger.RestartFrame +JavaScript.Debugger.ToggleExceptionBreakpoint +Javascript.Linters.EsLint.Fix +Javascript.Linters.JSCS.Fix +Javascript.Linters.StandardJS.Fix +JavaScriptDebugger.HideActionsGroup +JavaScriptDebugger.OpenUrl +JavaScriptIntroduceDestructuringVariables +JAX-RS.GenerateJavaFromWADL +JAX-RS.GenerateWADL +JAXB +Jdbc.OpenConsole.Any +Jdbc.OpenConsole.New +Jdbc.OpenConsole.New.Generate +Jdbc.OpenEditor +Jdbc.OpenEditor.Data +Jdbc.OpenEditor.DDL button=1 clickCount=1 modifiers=128 +Jdbc.OpenEditor.Grid.DDL +jpa.AddJpaProviderSupport +Jpa.AssignDataSources +Jpa.Model.Generation.Scripts +Jpa.OpenConsole +JpaPatternAction +JpaViewPopupMenu +Jpdl.CreateJpdl +Jpdl.Designer +JS.TypeScript.Compile +JS.TypeScript.Include.Generated.Declarations +JShell.Console +JsonCopyPointer +JspActions +JsTestFrameworkCodeGeneratorGroup +JumpToColorsAndFonts +JumpToLastChange +JumpToLastWindow +JumpToNextChange +junit.add.to.pattern.group +junit.exclude.group +JupyterClearOutputsAction +JupyterConfigureShortcutsAction +JupyterCreateFileAction +JupyterDebugAction +JupyterFileActions +JupyterInsertCell +JupyterInsertCellAboveAction +JupyterInsertCellBelowAction +JupyterInsertCodeCellToTheEndAction +JupyterInsertMarkdownCellToTheEndAction +JupyterInsertRawCellToTheEndAction +JupyterInterruptKernelAction +JupyterJSOutputConsole$OpenJupyterJsConsoleAction +JupyterRestartKernelAction +JupyterRunAllAboveAction +JupyterRunAllAction +JupyterRunAllBelowAction +JupyterRunCellAction +JupyterRunCellSelectBelowAction +JupyterSelectCellAboveAction +JupyterSelectCellBelowAction +JupyterSelectSourceAction +JupyterServerActions +JupyterStartServerAction +JupyterStopServerAction +LangCodeInsightActions +LanguageSpecificFoldingGroup +learn.next.lesson +learn.open.chooseLang +leetcode.ClearAllAction +leetcode.ClearOneAction +leetcode.CollapseAction +leetcode.ConfigAction +leetcode.editor.menu +leetcode.editor.OpenContentAction +leetcode.editor.OpenInWebAction +leetcode.editor.OpenSolutionAction +leetcode.editor.ResetTimeAction +leetcode.editor.RunCodeAction +leetcode.editor.StartTimeAction +leetcode.editor.StopTimeAction +leetcode.editor.SubmissionsAction +leetcode.editor.SubmitAction +leetcode.editor.TestcaseAction +leetcode.editor.timer +leetcode.FavoriteGroup +leetcode.find.Category +leetcode.find.Clear +leetcode.find.Config +leetcode.find.Difficulty +leetcode.find.Lists +leetcode.find.Status +leetcode.find.Tags +leetcode.find.Toolbar +leetcode.FindAction +leetcode.HelpAction +leetcode.LoginAction +leetcode.LogoutAction +leetcode.NavigatorActionsMenu +leetcode.NavigatorActionsToolbar +leetcode.OpenAction +leetcode.OpenContentAction +leetcode.OpenInWebAction +leetcode.OpenSolutionAction +leetcode.PickAction +leetcode.positionAction +leetcode.ProgressAction +leetcode.RefreshAction +leetcode.ResetTimeAction +leetcode.RunCodeAction +leetcode.StartTimeAction +leetcode.StopTimeAction +leetcode.SubmissionsAction +leetcode.SubmitAction +leetcode.TestcaseAction +leetcode.timer +LightEditModePopup +LightEditOpenFileInProject +List-scrollDown +List-scrollDownExtendSelection +List-scrollUp +List-scrollUpExtendSelection +List-selectFirstRow +List-selectFirstRowExtendSelection +List-selectLastRow +List-selectLastRowExtendSelection +List-selectNextColumn +List-selectNextColumnExtendSelection +List-selectNextRow +List-selectNextRowExtendSelection +List-selectPreviousColumn +List-selectPreviousColumnExtendSelection +List-selectPreviousRow +List-selectPreviousRowExtendSelection +ListActions +Load.V8.Heap.Snapshot +LoadUnloadModules +LocalHistory +LocalHistory.PutLabel +LocalHistory.ShowHistory +LocalHistory.ShowSelectionHistory +Log.FileHistory.KeymapGroup +Log.KeymapGroup +LogDebugConfigure +LombokActionGroup +LookupActions +Macro.format&save +Macros +MacrosGroup +MainMenu +MaintenanceAction +MaintenanceGroup +MainToolBar +MainToolBarSettings +MakeAllJarsAction +MakeExplicit +MakeJarAction +MakeModule +MakeStatic +ManageProjectTemplates +ManageRecentProjects +ManageTargets +MarkAsContentRoot +MarkAsOriginalTypeAction +MarkAsPlainTextAction +Markdown.Toolbar.Left +Markdown.Toolbar.Right +MarkExcludeRoot +MarkFileAs +MarkGeneratedSourceRoot +MarkGeneratedSourceRootGroup +MarkNotificationsAsRead +MarkRootGroup +MarkSourceRootGroup +MarkTemplateDirectory +Maven.AddFileAsMavenProject +Maven.AddManagedFiles +Maven.AfterCompile +Maven.AfterRebuild +Maven.AlwaysShowArtifactId +Maven.AssignShortcut +Maven.BaseProjectMenu +Maven.BeforeCompile +Maven.BeforeRebuild +Maven.BeforeRun +Maven.BuildMenu +Maven.CollapseAll +Maven.CreateRunConfiguration +Maven.DependencyGraphMenu +Maven.DependencyMenu +Maven.DownloadAllDocs +Maven.DownloadAllGroup +Maven.DownloadAllGroupPopup +Maven.DownloadAllSources +Maven.DownloadAllSourcesAndDocs +Maven.DownloadSelectedDocs +Maven.DownloadSelectedSources +Maven.DownloadSelectedSourcesAndDocs +Maven.EditRunConfiguration +Maven.ExecuteGoal +Maven.ExpandAll +Maven.GenerateGroup +Maven.GlobalProjectMenu +Maven.GroupProjects +Maven.IgnoreProjects +Maven.NavigatorActionsToolbar +Maven.NavigatorProjectMenu +Maven.OpenProfilesXml +Maven.OpenSettingsXml +Maven.RefactoringGroup +Maven.Reimport +Maven.ReimportProject +Maven.RemoveManagedFiles +Maven.RemoveRunConfiguration +Maven.RunBuild +Maven.RunConfigurationMenu +Maven.ShowBasicPhasesOnly +Maven.ShowEffectivePom +Maven.ShowIgnored +Maven.ShowSettings +Maven.ShowVersions +Maven.TasksGroup +Maven.ToggleLookNested +Maven.ToggleOffline +Maven.ToggleProfile +Maven.ToggleSkipTests +Maven.Uml.Exclude +Maven.UpdateFolders +Maven.UpdateFoldersForProject +MaximizeActiveDialog +MaximizeToolWindow +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 +MergeSettings +MethodDown +MethodDuplicates +MethodHierarchy +MethodHierarchy.BaseOnThisMethod +MethodHierarchy.ImplementMethodAction +MethodHierarchy.OverrideMethodAction +MethodHierarchyPopupMenu +MethodOverloadSwitchDown +MethodOverloadSwitchUp +MethodUp +Migrate +MinimizeCurrentWindow +ModifyObject +ModuleSettings +Move +MoveAttributeInAction +MoveAttributeOutAction +MoveEditorToOppositeTabGroup +MoveElementLeft +MoveElementRight +MoveLineDown +MoveLineUp +MoveModuleToGroup +MoveStatementDown +MoveStatementUp +MoveTabDown +MoveTabRight +Mq.Patches.ContextMenu +Mq.Patches.Toolbar +Mvc.Actions +Mvc.RunTarget +Mvc.Upgrade +NavBar-cancel +NavBar-navigate +NavBar-return +NavBar-selectDown +NavBar-selectEnd +NavBar-selectHome +NavBar-selectLeft +NavBar-selectRight +NavBar-selectUp +NavBarActions +NavbarPopupMenu +NavBarToolBar +NavBarToolBarOthers +NavBarVcsGroup +NavigateInFileGroup +NewAction +NewApplicationService +NewCfmlFile +NewClass +NewCoffeeScriptFile +NewDialog +NewDir +NewEditorConfigFile +NewElement +NewElementInMenuGroup +NewElementSamePlace +NewFile +NewForm +NewFormSnapshot +NewFromTemplate +NewFxmlFile +NewGroup +NewGroup1 +NewGroupPersistence +NewGuiceBindingAnnotation +NewGuiceMethodInterceptor +NewGuiceModule +NewGuiceProvider +NewGuiceScopeAnnotation +NewHtmlFile +NewJavaDiagram +NewJavaScriptFile +NewJavaSpecialFile +NewJigsawModuleDiagram +NewModule +NewModuleInfo +NewModuleInGroup +NewModulesDiagram +NewModuleService +NewPackageInfo +NewPackageJsonFile +NewPrivateEnvironmentFile +NewProject +NewProjectOrModuleGroup +NewProjectService +NewPropertyAction +NewPublicEnvironmentFile +NewPythonFile +NewPythonPackage +NewROSJsonFile +NewROSYamlFile +NewScratchBuffer +NewScratchFile +NewStylesheetFile +NewTypeScriptConfigFile +NewTypeScriptFile +NewXml +NewXmlDescriptor +NextDiff +NextEditorTab +NextOccurence +NextParameter +NextProjectWindow +NextSplitter +NextTab +NextTemplateParameter +NextTemplateVariable +NextWindow +Notifications +OnlineDocAction +openAssertEqualsDiff +OpenBlankEditorInBlankDiffWindow +OpenCodotaSearch +OpenEditorInOppositeTabGroup +OpenEjbERDiagramAction +OpenElementInNewWindow +OpenFile +OpenFileEditorInBlankDiffWindow +OpenInBrowser +OpenInBrowserEditorContextBarGroupAction +OpenInBrowserGroup +OpenInSceneBuilder +OpenModuleSettings +OpenMouseWheelSmoothScrollSettings +OpenPersistenceERDiagramAction +OpenProjectGroup +OpenProjectWindows +OptimizeImports +org.asciidoc.intellij.actions.asciidoc.CreateHtmlAction +org.asciidoc.intellij.actions.asciidoc.CreatePdfAction +org.asciidoc.intellij.actions.asciidoc.PasteImageAction +org.asciidoc.intellij.actions.asciidoc.ToggleSoftWrapsAction +org.asciidoc.intellij.actions.editorlayout.EditorAndPreviewLayoutChangeAction +org.asciidoc.intellij.actions.editorlayout.EditorOnlyLayoutChangeAction +org.asciidoc.intellij.actions.editorlayout.PreviewOnlyLayoutChangeAction +org.asciidoc.intellij.actions.refactor.ExtractIncludeAction +org.asciidoc.intellij.actions.refactor.InlineIncludeAction +org.intellij.plugins.markdown.ui.actions.editorLayout.CyclicSplitLayoutChangeAction +org.intellij.plugins.markdown.ui.actions.editorLayout.EditorAndPreviewLayoutChangeAction +org.intellij.plugins.markdown.ui.actions.editorLayout.EditorOnlyLayoutChangeAction +org.intellij.plugins.markdown.ui.actions.editorLayout.PreviewOnlyLayoutChangeAction +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.MarkdownIntroduceLinkReferenceAction +org.intellij.plugins.markdown.ui.actions.styling.ToggleBoldAction +org.intellij.plugins.markdown.ui.actions.styling.ToggleCodeSpanAction +org.intellij.plugins.markdown.ui.actions.styling.ToggleItalicAction +org.intellij.plugins.markdown.ui.actions.styling.ToggleStrikethroughAction +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 +osmedile.intellij.stringmanip.DecodeBase64Action +osmedile.intellij.stringmanip.DecodeHexAction +osmedile.intellij.stringmanip.DecrementAction +osmedile.intellij.stringmanip.DuplicateAndDecrementAction +osmedile.intellij.stringmanip.DuplicateAndIncrementAction +osmedile.intellij.stringmanip.EncodeBase64Action +osmedile.intellij.stringmanip.EncodeHexAction +osmedile.intellij.stringmanip.EncodeMd5Hex16Action +osmedile.intellij.stringmanip.encoding.URLDecodeRFC3986 +osmedile.intellij.stringmanip.encoding.URLEncodeRFC3986 +osmedile.intellij.stringmanip.EscapeHtmlAction +osmedile.intellij.stringmanip.EscapeJavaAction +osmedile.intellij.stringmanip.EscapeJavaScriptAction +osmedile.intellij.stringmanip.EscapeJsonAction +osmedile.intellij.stringmanip.EscapePHPAction +osmedile.intellij.stringmanip.EscapeSQLAction +osmedile.intellij.stringmanip.EscapeXMLAction +osmedile.intellij.stringmanip.GrepAction +osmedile.intellij.stringmanip.IncrementAction +osmedile.intellij.stringmanip.InvertedGrepAction +osmedile.intellij.stringmanip.NonAsciiToUnicodeEscapedAction +osmedile.intellij.stringmanip.PopupChoiceAction +osmedile.intellij.stringmanip.RemoveAllSpacesAction +osmedile.intellij.stringmanip.RemoveEmptyLinesAction +osmedile.intellij.stringmanip.RepeatAction +osmedile.intellij.stringmanip.styles.ToCamelCaseOrToWordLowercaseAction +osmedile.intellij.stringmanip.swap.Reverse +osmedile.intellij.stringmanip.swap.SwapAction +osmedile.intellij.stringmanip.swap.SwapQuote +osmedile.intellij.stringmanip.SwapCaseAction +osmedile.intellij.stringmanip.SwitchCasePopup +osmedile.intellij.stringmanip.ToCamelCaseAction +osmedile.intellij.stringmanip.ToLowerCaseAction +osmedile.intellij.stringmanip.ToUpperCaseAction +osmedile.intellij.stringmanip.TrimAction +osmedile.intellij.stringmanip.TrimAllSpacesAction +osmedile.intellij.stringmanip.UnescapeHtmlAction +osmedile.intellij.stringmanip.UnescapeJavaAction +osmedile.intellij.stringmanip.UnescapeJavaScriptAction +osmedile.intellij.stringmanip.UnescapeJsonAction +osmedile.intellij.stringmanip.UnescapePHPAction +osmedile.intellij.stringmanip.UnescapeXMLAction +osmedile.intellij.stringmanip.UnicodeEscapedToStringAction +osmedile.intellij.stringmanip.URLDecodeAction +osmedile.intellij.stringmanip.URLEncodeAction +osmedile.intellij.stringmanip.WordsAndCamelToConstantStyleCaseAction +osmedile.intellij.stringmanip.WordsCapitalizeAction +Other.KeymapGroup +OtherMenu +OverrideMethods +PackageAIR +PackageFile +Pageflow.Designer +PairFileActions +ParameterInfo +ParameterNameHints +PasteGroup +PasteMultiple +Pause +PauseOutput +Perforce.Force.Refresh +Perforce.Shelve +Perforce.SyncToRevision +PerforceDirect.Edit +PerforceDirect.Menu +PerforceEnableIntegration +Performance.ActivityMonitor +Performance.ClearCaches +performancePlugin.AttachInternalTracing +performancePlugin.ConfigureTracingAction +performancePlugin.ExecuteScriptAction +performancePlugin.ProfileIndexingAction +performancePlugin.ProfileSlowStartupAction +performancePlugin.ShowMemoryDialogAction +performancePlugin.StartAsyncProfilerAction +PinActiveEditorTab +PinActiveTab +PinToolwindowTab +PlanFlameGraphsGroup +PlanViewGroup +Play2.NewTemplate +Play2.TypeInfo +Play2RunApp +PlaybackLastMacro +PlaySavedMacrosAction +plugin.InstallFromDiskAction +PluginDeployActions +popup@BookmarkContextMenu +PopupHector +PopupMenu-cancel +PopupMenu-return +PopupMenu-selectChild +PopupMenu-selectNext +PopupMenu-selectParent +PopupMenu-selectPrevious +PopupMenuActions +PowerSaveGroup +PreviousDiff +PreviousEditorTab +PreviousOccurence +PreviousProjectWindow +PreviousTab +PreviousTemplateVariable +PreviousWindow +PrevParameter +PrevSplitter +PrevTemplateParameter +Print +PrintExportGroup +ProductivityGuide +Profiler +Profiler.ExcludeCallAction +Profiler.ExcludeSubTreeAction +Profiler.FocusOnCallAction +Profiler.FocusOnSubtreeAction +Profiler.OpenBackTracesAction +Profiler.OpenMergedCalleesAction +Profiler.OpenTreesInNewTabGroup +Profiler.TransformMainTreeGroup +ProfilerActions +ProjectFromVersionControl +ProjectView.AbbreviatePackageNames +ProjectView.AutoscrollFromSource +ProjectView.AutoscrollToSource +ProjectView.CompactDirectories +ProjectView.FlattenModules +ProjectView.FlattenPackages +ProjectView.FoldersAlwaysOnTop +ProjectView.HideEmptyMiddlePackages +ProjectView.ManualOrder +ProjectView.ShowExcludedFiles +ProjectView.ShowLibraryContents +ProjectView.ShowMembers +ProjectView.ShowModules +ProjectView.ShowVisibilityIcons +ProjectView.SortByType +ProjectView.ToolWindow.SecondaryActions +ProjectViewAnalysisGroup +ProjectViewChangeView +ProjectViewCompileGroup +ProjectViewEditSource +ProjectViewPopupMenu +ProjectViewPopupMenuModifyGroup +ProjectViewPopupMenuRefactoringGroup +ProjectViewPopupMenuRunGroup +ProjectViewPopupMenuSettingsGroup +ProtoErrorReporter.TriggerException +PsiViewer +PsiViewerForContext +PublishGroup +PublishGroup.Base +PublishGroup.CompareLocalVsRemote +PublishGroup.CompareLocalVsRemoteWith +PublishGroup.Download +PublishGroup.DownloadFrom +PublishGroup.SyncLocalVsRemote +PublishGroup.SyncLocalVsRemoteWith +PublishGroup.Upload +PublishGroup.UploadTo +PublishGroupPopupMenu +PyConsoleRenameAction +PyConvertModuleToPackage +PyConvertPackageToModuleAction +PyDebugger.ViewArray +PyDebugger.ViewAsGroup +PyExecuteCellAction +PyManagePackages +PyPackagingMenu +PyProfile.NavigateToSource +PyProfile.ShowOnCallGraph +PyProfiler.OpenPStat +PyProfiler.Popup.Actions +PyRunFileInConsole +PySciView +PySyncPythonRequirements +PythonAppEngine +PythonAppEngine.AppCfgAction +PythonAppEngine.GetLogsAction +PythonAppEngine.UploadAppAction +QuickActionPopup +QuickActions +QuickChangeScheme +QuickDocCopy +QuickEvaluateExpression button=1 clickCount=1 modifiers=512 +QuickFixes +QuickImplementations +QuickJavaDoc button=2 clickCount=1 modifiers=512 +QuickList.Deployment +QuickTypeDefinition +QUnitGenerateNewTestAction +QUnitGenerateSetupAction +QUnitGenerateTearDownAction +ReactClassToFunctionalComponentAction +ReactExtractComponentAction +ReactFunctionalToClassComponentAction +Read.V8.Log.In.House +RearrangeCode +RecentChangedFiles +RecentChanges +RecentFiles +RecentLocations +RecentProjectListGroup +RecordAndDebug +refactoring.extract.dependency +refactoring.introduce.property +RefactoringMenu +RefactoringMenu1 +RefactoringMenu2 +RefactoringMenu4 +RefactoringMenuRenameFile +Refactorings.QuickListPopupAction +ReformatCode +Refresh +Register +RegistrationActions +RemoteExternalToolsGroup +RemoteHost.NewGroup +RemoteHost.NewRemoteItem +RemoteHostView.CopyPaths +RemoteHostView.CreateFile +RemoteHostView.CreateFolder +RemoteHostView.EditRemoteFile +RemoteHostView.EditSource +RemoteHostView.Rename +RemoteHostView.SetPermissions +RemoteHostView.ToggleExclusion +RemoteHostViewPopupMenu +RemoteServers.AddCloudConnectionGroup +RemoteServers.ChooseServerDeployment +RemoteServers.ChooseServerDeploymentWithDebug +RemoteServers.ConnectServer +RemoteServers.DisconnectServer +RemoteServers.EditDeploymentConfig +RemoteServers.EditServerConfig +RemoteServersViewPopup +RemoteServersViewToolbar +RemoteServersViewToolbar.Top +RemoveBom +RemoveBom.Group +RemoveExplicitArguments +RemoveMiddleman +RenameAttributeAction +RenameElement +RenameFile +RenameTagAction +ReopenClosedTab +Replace +ReplaceAttributeWithTagAction +ReplaceConstructorWithBuilder +ReplaceConstructorWithFactory +ReplaceInPath +ReplaceMethodWithMethodObject +ReplaceTagWithAttributeAction +ReplaceTempWithQuery +ReportProblem +RepositoryChangesBrowserToolbar +Rerun +RerunFailedTests +RerunTests +RescanPythonModulesAndPackages +ResetColumnsWidth +ResetToMySettings +ResetToTheirsSettings +ResizeToolWindowDown +ResizeToolWindowGroup +ResizeToolWindowLeft +ResizeToolWindowRight +ResizeToolWindowUp +Resolve +ResolveAll +ResourceBundleEditorShowIntentions +REST +RESTClient.RunRequest +RESTClient.ShowHistory +RestoreDefaultExtensionScripts +RestoreDefaultLayout +RestoreDefaultSettings +RestoreFontPreviewTextAction +Resume +RevealGroup +RevealIn +RevertUnchanged +RevisionGraph +Run +RunAnything +RunClass +RunConfiguration +RunConfigurationTemplatesForNewProjects +RunContextGroup +RunContextGroupInner +RunContextPopupGroup +RunCoverage +RunDashboard.AddType +RunDashboard.ClearContent +RunDashboard.CopyConfiguration +RunDashboard.Debug +RunDashboard.EditConfiguration +RunDashboard.Filter +RunDashboard.GroupBy +RunDashboard.GroupByStatus +RunDashboard.GroupByType +RunDashboard.GroupConfigurations +RunDashboard.HideConfiguration +RunDashboard.RemoveType +RunDashboard.RestoreConfiguration +RunDashboard.RestoreHiddenConfigurations +RunDashboard.Run +RunDashboard.Stop +RunDashboard.UngroupConfigurations +RunDashboardContentToolbar +RunDashboardPopup +RunInspection +RunInspectionOn +RunJsbtTask +RunMenu +Runner.CloseAllUnpinnedViews +Runner.CloseAllViews +Runner.CloseOtherViews +Runner.CloseView +Runner.Focus +Runner.FocusOnStartup +Runner.Layout +Runner.RestoreLayout +Runner.View.Close.Group +Runner.View.Popup +Runner.View.Toolbar +RunnerActions +RunnerActionsTouchbar +RunnerLayoutActions +RunProfiler +RunPythonToolwindowAction +RunSetupPyTask +runShellFileAction +RunTestGroup +RunToCursor +SafeDelete +SaveAll +SaveAsNewFormat +SaveAsTemplate +SaveDocument +SaveFileAsTemplate +SaveProjectAsTemplate +Scala.CleanWorksheet +Scala.ConfigureTypeHints +Scala.CopyWorksheet +Scala.CreateLightWorksheetAction +Scala.CreateScalaDocStub +Scala.DecompileToJava +Scala.Desugar +Scala.EnableErrors +Scala.ExpandImplicits +Scala.ExtractTrait +Scala.GenerateCompanionObject +Scala.GenerateEquals +Scala.GenerateProperty +Scala.GenerateScaladoc +Scala.GenerateToString +Scala.MakeExplicit +Scala.NewClass +Scala.NewPackageObject +Scala.NewScalaWorksheet +Scala.RenameJavaToScala +Scala.RunConsole +Scala.RunWorksheet +Scala.Sbt.CommandMenu +Scala.Sbt.Help +Scala.Sbt.InspectSetting +Scala.Sbt.InspectTask +Scala.Sbt.RunCommand +Scala.Sbt.RunTask +Scala.Sbt.SettingMenu +Scala.Sbt.ShowSetting +Scala.Sbt.ShowTask +Scala.Sbt.TaskMenu +Scala.SendSelectionToConsole +Scala.ShowDiscoveredTests +Scala.ShowImplicitArguments +Scala.ShowImplicitConversions +Scala.ShowImplicits +Scala.ToggleMethodChainInlayHints +Scala.TypeInfo +ScalaConsole.Clean +ScalaConsole.Execute +ScalaConsole.NewLine +ScalaGenerateGroup +ScopeView.EditScopes +ScopeViewPopupMenu +Scratch.ChangeLanguage +ScrollPane-scrollDown +ScrollPane-scrollEnd +ScrollPane-scrollHome +ScrollPane-scrollLeft +ScrollPane-scrollRight +ScrollPane-scrollUp +ScrollPane-unitScrollDown +ScrollPane-unitScrollLeft +ScrollPane-unitScrollRight +ScrollPane-unitScrollUp +ScrollPaneActions +ScrollTreeToCenter +Seam.Create.Components.Xml +Seam.Create.Pageflow +Seam.Create.Pages.Xml +SearchAction +SearchEverywhere +SearchEverywhere.CompleteCommand +SearchEverywhere.NavigateToNextGroup +SearchEverywhere.NavigateToPrevGroup +SearchEverywhere.NextTab +SearchEverywhere.PrevTab +SearchEverywhere.SelectItem +SearchEverywhereActions +SelectAllOccurrences +SelectIn +SelectInProjectView +SelectInRemoteHost +SelectNextOccurrence +SendEOF +SendFeedback +SendToFavoritesGroup +Servers.Deploy +Servers.DeployWithDebug +Servers.Undeploy +ServersToolWindowToolbar +ServiceView.ActivateDatabaseServiceViewContributor +ServiceView.ActivateDefaultRemoteServersServiceViewContributor +ServiceView.ActivateDockerServiceViewContributor +ServiceView.ActivateRunDashboardServiceViewContributor +ServiceView.ActivateSshServiceViewContributor +ServiceView.AddService +ServiceView.Filter +ServiceView.GroupBy +ServiceView.GroupByContributor +ServiceView.GroupByServiceGroups +ServiceView.JumpToServices +ServiceView.OpenEachInNewTab +ServiceView.OpenInNewTab +ServiceView.OpenInNewTabGroup +ServiceView.ShowServices +ServiceView.SplitByType +ServiceViewItemPopup +ServiceViewItemPopupGroup +ServiceViewItemToolbar +ServiceViewItemToolbarGroup +ServiceViewTreeToolbar +Session.Client.Detach +Session.Close +Session.CloseAll +Session.Rename +SetJobsForChangeList +SetNextStatement +SetShortcutAction +SeverityEditorDialog +ShelfChanges.Settings +Shelve.KeymapGroup +ShelveChanges.UnshelveWithDialog +ShelvedChanges.CleanMarkedToDelete +ShelvedChanges.ImportPatches +ShelvedChanges.Rename +ShelvedChanges.Restore +ShelvedChanges.ShowHideDeleted +ShelvedChanges.ShowRecentlyDeleted +ShelvedChangesPopupMenu +ShelvedChangesToolbar +ShGenerateForLoop +ShGenerateGroup +ShGenerateUntilLoop +ShGenerateWhileLoop +Show.Current.Revision +ShowAnnotateOperationsPopupGroup +ShowAppliedStylesAction +ShowBackwardPackageDeps +ShowBlankDiffWindow +ShowBookmarks +ShowCdiDependenciesPopup +ShowColorPicker +ShowContent +ShowDependenciesOnTarget +ShowDetailsAction +ShowDiscoveredTests +ShowEmptyGroupsAction +ShowErrorDescription +ShowExecutionPoint +ShowExperiments +ShowFilePath +ShowFilterPopup +ShowFontsUsedByEditor +ShowFromLibrariesAction +ShowFromOpenedProjectsAction +ShowGruntTasks +ShowGulpTasks +ShowGutterIconsSettings +ShowIntentionActions +ShowIntentionsGroup +ShowLiveRunConfigurations +ShowLog +ShowModulesDependencies +ShowNavBar +ShowNpmScripts +ShowPackageCycles +ShowPackageDeps +ShowPackageDepsGroup +ShowParameterHintsSettings +ShowPopupMenu +ShowProcessWindow +ShowProjectStructureSettings +ShowRecentFindUsagesGroup +ShowRecentTests +ShowReformatFileDialog +ShowRegistry +ShowSeamDependenciesGraph +ShowSearchHistory +ShowSettings +ShowSettingsAndFindUsages +ShowSettingsWithAddedPattern +ShowSiblings +ShowSQLLog +ShowTips +ShowUmlDiagram +ShowUmlDiagramPopup +ShowUsages +SilentCodeCleanup +SliceBackward +SliceForward +SmartSearchAction +SmartSelect +SmartStepInto +SmartTypeCompletion +SmartUnSelect +SplitHorizontally +SplitVertically +Spring.Beans.Generate.Action +Spring.Beans.Generate.Constructor.Dependency.Action +Spring.Beans.Generate.Setter.Dependency.Action +Spring.Beans.Generate.Testing.Dependency.Action +Spring.Create.Context.File +Spring.Patterns.ActionGroup +SpringBootApplicationUrlPathEditAction +SpringChangeActiveProfiles +SpringGenerateGroup +Spy-js.AddLabel +Spy-js.CaptureOnlyEvent +Spy-js.CaptureOnlyFile +Spy-js.CaptureOnlyStackFile +Spy-js.CloseDocument +Spy-js.CloseTraceFiles +Spy-js.Context.Tree +Spy-js.Event.Tree +Spy-js.FileDependencyGraph.LocateEvent +Spy-js.FileDependencyGraph.SearchFunction +Spy-js.FileDependencyGraph.Tree +Spy-js.FindNextFunctionNextCallFromStack +Spy-js.FindNextFunctionPreviousCallFromStack +Spy-js.FindPrevFunctionNextCallFromStack +Spy-js.FindPreviousFunctionPreviousCallFromStack +Spy-js.FindThisFunctionNextCallFromStack +Spy-js.FindThisFunctionPreviousCallFromStack +Spy-js.GoToFirstFoundOccurence +Spy-js.GoToLastFoundOccurence +Spy-js.GoToNextFoundOccurence +Spy-js.GoToPreviousFoundOccurence +Spy-js.JumpToCaller +Spy-js.JumpToMappedTrace +Spy-js.JumpToPackageFile +Spy-js.JumpToSource +Spy-js.JumpToTrace +Spy-js.MuteEvent +Spy-js.MuteFile +Spy-js.MuteNodeModuleAction +Spy-js.MuteNodeModules +Spy-js.MuteStackFile +Spy-js.RefreshDocument +Spy-js.RemoveAndCloseTraceFiles +Spy-js.RemoveChildren +Spy-js.RemoveNode +Spy-js.SearchFunction +Spy-js.SearchFunctionFromStack +Spy-js.ShowAppDependencyGraph +Spy-js.ShowEventDependencyGraph +Spy-js.Stack.Toolbar +Spy-js.Stack.Tree +Spy-js.Stack.Tree.Navigate +Spy-js.Stack.Tree.Navigate.Next +Spy-js.Stack.Tree.Navigate.Previous +Spy-js.Stack.Tree.Navigate.This +sql.ChangeDialect +sql.ChangeDialect.toolbar +Sql.EditParameter +sql.ExtractFunctionAction +sql.ExtractNamedQueryAction +sql.IntroduceAliasAction +sql.SelectCurrentStatement +sql.SelectInDatabaseView +SqlGenerateGroup +StandardMacroActions +Start.Use.Vcs +StartStopMacroRecording +StepInto +StepIntoMyCode +StepOut +StepOver +Stop +StopBackgroundProcesses +StoreDefaultLayout +StreamTracerAction +StringManipulation.AlignCarets +StringManipulation.AlignCenterAction +StringManipulation.AlignLeftAction +StringManipulation.AlignRightAction +StringManipulation.AlignSelections +StringManipulation.AlignToColumns +StringManipulation.CreateSequenceAction +StringManipulation.DiacriticsToAsciiAction +StringManipulation.EditorPopupMenu +StringManipulation.Group.Main +StringManipulation.Group.SwitchCase +StringManipulation.IncrementDuplicateNumbersAction +StringManipulation.KeepOnlyDuplicateLines +StringManipulation.OpenSettingsAction +StringManipulation.RemoveDuplicateLines +StringManipulation.RemoveNewLinesAction +StringManipulation.ReverseAction +StringManipulation.ShiftQuote +StringManipulation.ShuffleLinesAction +StringManipulation.Sort +StringManipulation.SortLinesBySubSelectionAction +StringManipulation.SortTokens +StringManipulation.SwitchFilePathSeparators +StringManipulation.SwitchStyleAction +StringManipulation.SwitchStyleAction.Reverse +StringManipulation.ToCamelCase +StringManipulation.ToDotStyleAction +StringManipulation.ToHyphenCaseAction +StringManipulation.ToHyphenCaseOrCamelCase +StringManipulation.ToPascalCaseOrCamelCase +StringManipulation.ToSentenceCaseOrCamelCase +StringManipulation.ToSnakeCaseOrCamelCase +StructuralSearchActions +StructuralSearchPlugin.StructuralReplaceAction +StructuralSearchPlugin.StructuralSearchAction +StructureViewCompileGroup +StructureViewPopupMenu +Struts2.Create.StrutsXml +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 +SurroundWithEmmet +SurroundWithLiveTemplate +Svn.Show.Working.Copies +SwapSidesInDiffWindow +SwitchCoverage +Switcher +SwitcherIterateItems +SwitcherRecentEditedChangedToggleCheckBox +Synchronize +SynchronizeCurrentFile +SyncSettings +Table-scrollDownChangeSelection +Table-scrollDownExtendSelection +Table-scrollUpChangeSelection +Table-scrollUpExtendSelection +Table-selectFirstRow +Table-selectFirstRowExtendSelection +Table-selectLastRow +Table-selectLastRowExtendSelection +Table-selectNextColumn +Table-selectNextColumnExtendSelection +Table-selectNextRow +Table-selectNextRowExtendSelection +Table-selectPreviousColumn +Table-selectPreviousColumnExtendSelection +Table-selectPreviousRow +Table-selectPreviousRowExtendSelection +TableActions +TableResult.GrowSelection +TableResult.SelectAllOccurrences +TableResult.SelectNextOccurrence +TableResult.UnselectPreviousOccurrence +TabList +TabsActions +TagDocumentationNavigation +TalkToFdb.Flex.Debug +TapestryGroup +task.actions +tasks.analyze.stacktrace +tasks.and.contexts +tasks.close +tasks.configure.servers +tasks.create.changelist +tasks.edit +tasks.goto +tasks.group +tasks.open.in.browser +tasks.show.task.description +tasks.switch +tasks.toolbar.group +TechnicalSupport +TemplateParametersNavigation +TemplateProjectProperties +TemplateProjectStructure +Terminal.MoveToEditor +Terminal.MoveToolWindowTabLeft +Terminal.MoveToolWindowTabRight +Terminal.NextSplitter +Terminal.OpenInTerminal +Terminal.PrevSplitter +Terminal.RenameSession +Terminal.SwitchFocusToEditor +TerminalSplitActionBase$Horizontal +TerminalSplitActionBase$Vertical +TestData.Navigate +TestTreePopupMenu +TextComponent.ClearAction +TimeLapseView +TodoMainGroup +TodoViewGroupByFlattenPackage +TodoViewGroupByGroup +TodoViewGroupByShowModules +TodoViewGroupByShowPackages +ToggleBookmark +ToggleBookmark0 +ToggleBookmark1 +ToggleBookmark2 +ToggleBookmark3 +ToggleBookmark4 +ToggleBookmark5 +ToggleBookmark6 +ToggleBookmark7 +ToggleBookmark8 +ToggleBookmark9 +ToggleBookmarkWithMnemonic +ToggleBreakpointAction +ToggleBreakpointEnabled +ToggleCompletionHintsAction +ToggleContentUiTypeMode +ToggleDistractionFreeMode +ToggleDockMode +ToggleFieldBreakpoint +ToggleFindInSelection +ToggleFloatingMode +ToggleFullScreen +ToggleFullScreenGroup +ToggleInlayHintsGloballyAction +ToggleInlineHintsAction +ToggleLineBreakpoint +ToggleMethodBreakpoint +ToggleNodeCoreCodingAssistanceAction +TogglePinnedMode +TogglePopupHints +TogglePowerSave +TogglePresentationMode +ToggleProjectInspectionAction +ToggleReadOnlyAttribute +ToggleRenderedDocPresentation +ToggleRenderedDocPresentationForAll +ToggleSideMode +ToggleTemporaryLineBreakpoint +ToggleTypeHints +ToggleTypeMismatchHints +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 +Tree-scrollDownChangeSelection +Tree-scrollDownExtendSelection +Tree-scrollUpChangeSelection +Tree-scrollUpExtendSelection +Tree-selectChild +Tree-selectChildExtendSelection +Tree-selectFirst +Tree-selectFirstExtendSelection +Tree-selectLast +Tree-selectLastExtendSelection +Tree-selectNext +Tree-selectNextExtendSelection +Tree-selectParent +Tree-selectParentExtendSelection +Tree-selectPrevious +Tree-selectPreviousExtendSelection +TreeActions +TreeNodeExclusion +TsLintFileFixAction +TslintImportCodeStyleAction +TurnRefsToSuper +TW.MoveToGroup +TW.ViewModeGroup +TWViewModes +TWViewModesLegacy +TypeHierarchy +TypeHierarchy.Class +TypeHierarchy.Subtypes +TypeHierarchy.Supertypes +TypeHierarchyBase.BaseOnThisType +TypeHierarchyPopupMenu +TypeHintsMenu +TypeScript.Enable.Service +TypeScript.Include.Sources +TypeScript.Restart.Service +TypeScriptExtractTypeAlias +UiDebugger +UIToggleActions +Uml.Analyze +Uml.CollapseNodes +UML.DefaultGraphPopup +UML.EditorGroup +Uml.ExpandNodes +UML.Find +UML.Group +UML.Group.Simple +Uml.NewElement +Uml.NewGroup +Uml.NodeCellEditorPopup +Uml.NodeIntentions +Uml.PsiElement.Actions +Uml.Refactoring +UML.SaveDiagram +UML.ShowChanges +Uml.ShowDiff +UML.ShowStructure +UML.SourceActionsGroup +UndockMode +UnmarkGeneratedSourceRoot +UnmarkRoot +Unscramble +UnselectPreviousOccurrence +Unsplit +UnsplitAll +Unversioned.Files.Dialog +Unversioned.Files.Dialog.Popup +Unwrap +UnwrapTagAction +UpdateActionGroup +UpdateCopyright +UpdateFiles +UpdateIdeFromSources +UpdateIdeFromSourcesSettings +UpdateRunningApplication +UsageView.Exclude +UsageView.Include +UsageView.Popup +UsageView.Remove +UsageView.Rerun +UsageView.ShowRecentFindUsages +v8.profiling +ValidateJsp +ValidateXml +Vcs.ApplySelectedChanges +Vcs.Browse +Vcs.CheckinProjectMenu +Vcs.CheckinProjectToolbar +Vcs.CherryPick +Vcs.CommitExecutor.Actions +Vcs.CopyRevisionNumberAction +Vcs.Diff.ExcludeChangedLinesFromCommit +Vcs.Diff.IncludeOnlyChangedLinesIntoCommit +Vcs.EditSource +Vcs.FileHistory.ContextMenu +Vcs.FileHistory.PresentationSettings +Vcs.FileHistory.Toolbar +Vcs.Force.Push +Vcs.GetVersion +Vcs.History +Vcs.Import +Vcs.IntegrateProject +Vcs.KeymapGroup +Vcs.Log.AlignLabels +Vcs.Log.AnnotateRevisionAction +Vcs.Log.ChangesBrowser.Popup +Vcs.Log.ChangesBrowser.Toolbar +Vcs.Log.CollapseAll +Vcs.Log.CompactReferencesView +Vcs.Log.CompareRevisions +Vcs.Log.ContextMenu +Vcs.Log.EnableFilterByRegexAction +Vcs.Log.ExpandAll +Vcs.Log.FocusTextFilter +Vcs.Log.GetVersion +Vcs.Log.GoToChild +Vcs.Log.GoToParent +Vcs.Log.GoToRef +Vcs.Log.HighlightersActionGroup +Vcs.Log.IntelliSortChooser +Vcs.Log.LayoutConfiguration +Vcs.Log.MatchCaseAction +Vcs.Log.OpenAnotherTab +Vcs.Log.OpenRepositoryVersion +Vcs.Log.PreferCommitDate +Vcs.Log.PresentationSettings +Vcs.Log.Refresh +Vcs.Log.ResumeIndexing +Vcs.Log.ShowAllAffected +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 button=2 clickCount=1 modifiers=512 +Vcs.Log.TextFilterSettings +Vcs.Log.ToggleColumns +Vcs.Log.Toolbar +Vcs.Log.Toolbar.Internal +Vcs.Log.Toolbar.LeftCorner +Vcs.Log.Toolbar.RightCorner +Vcs.MessageActionGroup +Vcs.MoveChangedLinesToChangelist +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 +Vcs.Push.Actions +Vcs.QuickListPopupAction +Vcs.ReformatCommitMessage +Vcs.RefreshFileHistory +Vcs.RefreshStatuses +Vcs.RepositoryChangesBrowserMenu +Vcs.RepositoryChangesBrowserToolbar +Vcs.RevertSelectedChanges +Vcs.RollbackChangedLines +Vcs.Show.Local.Changes +Vcs.Show.Log +Vcs.Show.Shelf +Vcs.Show.Toolwindow.Tab +Vcs.ShowDiffWithLocal +Vcs.ShowDiffWithLocal.Before +Vcs.ShowHistoryForBlock +Vcs.ShowHistoryForRevision +Vcs.ShowMessageHistory +Vcs.ShowTabbedFileHistory +Vcs.Specific +Vcs.ToggleAmendCommitMode +Vcs.UpdateProject +Vcs.VcsClone +VcsFileGroupPopup +VcsGeneral.KeymapGroup +VcsGlobalGroup +VcsGroup +VcsGroups +VcsHistory.ShowAllAffected +VcsHistoryActionsGroup +VcsHistoryActionsGroup.Toolbar +VcsHistoryInternalGroup.Popup +VcsHistoryInternalGroup.Toolbar +VcsNavBarToobarActions +VcsSelectionHistoryDialog.Popup +VcsShowCurrentChangeMarker +VcsShowNextChangeMarker +VcsShowPrevChangeMarker +VcsToobarActions +VcsToolbarLabelAction +VersionControlsGroup +ViewAppearanceGroup +ViewBreakpoints +ViewGrailsEditorToolbarAction +ViewImportPopups +ViewInplaceComments +ViewMainMenu +ViewMembersInNavigationBar +ViewMenu +ViewNavigationBar +ViewOfflineInspection +ViewRecentActions +ViewSource +ViewStatusBar +ViewStatusBarWidgetsGroup +ViewToolBar +ViewToolButtons +VimActions +VimPluginToggle +VimShortcutKeyAction +VisualizeSourceMap +WD.UploadCurrentRemoteFileAction +WebDeployment.BrowseServers +WebDeployment.Configuration +WebDeployment.Options +WebDeployment.ToggleAutoUpload +Webflow.Create.Context.File +WebOpenInAction +WebResourcesGroup +WebServicesActions +WebServicesPlugin.CreateRESTClient +WebServicesPlugin.CreateRestfulWebService +WebServicesPlugin.CreateRestfulWebServiceClient +WebServicesPlugin.CreateWebService +WebServicesPlugin.CreateWebServiceClient +WebServicesPlugin.GenerateJavaFromJAXBSchemas +WebServicesPlugin.GenerateJavaFromWsdl +WebServicesPlugin.GenerateJavaFromXmlBeansSchemas +WebServicesPlugin.GenerateJAXBSchemasFromJava +WebServicesPlugin.GenerateWsdlFromJava +WebServicesPlugin.MonitorSoapMessages +WebServicesPlugin.ShowDeployedWebServices +WeighingNewGroup +WelcomeScreen.ChangeProjectIcon +WelcomeScreen.Configure +WelcomeScreen.Configure.CollectZippedLogs +WelcomeScreen.Configure.DesktopEntry +WelcomeScreen.Configure.Export +WelcomeScreen.Configure.Import +WelcomeScreen.Configure.ProjectStructure +WelcomeScreen.Configure.Properties +WelcomeScreen.Configure.RestoreDefault +WelcomeScreen.Configure.VMOptions +WelcomeScreen.CopyProjectPath +WelcomeScreen.CreateNewProject +WelcomeScreen.CreateWebProject +WelcomeScreen.DevelopPlugins +WelcomeScreen.Documentation +WelcomeScreen.Documentation.IDEA +WelcomeScreen.EditGroup +WelcomeScreen.ManageLicense +WelcomeScreen.MoveToGroup +WelcomeScreen.NewGroup +WelcomeScreen.OpenProject +WelcomeScreen.OpenSelected +WelcomeScreen.Plugins +WelcomeScreen.QuickStart +WelcomeScreen.QuickStart.IDEA +WelcomeScreen.QuickStart.Platform +WelcomeScreen.Register +WelcomeScreen.RemoveSelected +WelcomeScreen.Settings +WelcomeScreen.Update +WelcomeScreenRecentProjectActionGroup +WhatsNewAction +WindowMenu +WindowMode +working.context +WrapReturnValue +WrapTagAction +WrapTagContentsAction +XDebugger.Actions +XDebugger.AttachGroup +XDebugger.AttachToProcess +XDebugger.CompareValueWithClipboard +XDebugger.CopyName +XDebugger.CopyValue +XDebugger.CopyWatch +XDebugger.EditWatch +XDebugger.Evaluate.Code.Fragment.Editor.Popup +XDebugger.Evaluation.Dialog.Tree.Popup +XDebugger.Frames.TopToolbar +XDebugger.Frames.Tree.Popup +XDebugger.Inline +XDebugger.Inspect +XDebugger.Inspect.Tree.Popup +XDebugger.JumpToSource +XDebugger.JumpToTypeSource +XDebugger.MoveWatchDown +XDebugger.MoveWatchUp +XDebugger.MuteBreakpoints +XDebugger.NewWatch +XDebugger.PinToTop +XDebugger.RemoveAllWatches +XDebugger.RemoveWatch +XDebugger.Settings +XDebugger.SetValue +XDebugger.SwitchWatchesInVariables +XDebugger.ToggleSortValues +XDebugger.ToolWindow.LeftToolbar +XDebugger.ToolWindow.TopToolbar +XDebugger.UnmuteOnStop +XDebugger.ValueGroup +XDebugger.ValueGroup.CopyJson +XDebugger.Variables.Tree.Popup +XDebugger.Variables.Tree.Toolbar +XDebugger.Watches.Tree.Popup +XDebugger.Watches.Tree.Toolbar +XmlBeans +XmlGenerateToolsGroup +XMLRefactoringMenu +XPathView.Actions.Evaluate +XPathView.Actions.FindByExpression +XPathView.Actions.ShowPath +XPathView.EditorPopup +XPathView.MainMenu.Search +XPathView.XSLT.Associations +XSD2Document +ZoomCurrentWindow