Are there any known issues with GoToNextError / GoToPreviousError ? #1025
-
Hey friends, I'm enjoying IdeaVim in Webstorm quite a bit, I'm just having some trouble with the What I've tried:
All my other keymaps are doing just fine. I've done some searching and haven't seen anybody else with my specific issue. Am I misunderstanding something about the functionality of the action? My ideavimrc is below. # .ideavimrc
set nu
set relativenumber
set scrolloff=5
imap jj <Esc>
let mapleader=" "
map \w :w<CR>
if has('ide')
" code actions
map K <Action>(ShowHoverInfo)
map \a <Action>(ShowIntentionActions)
map \e <Action>(RenameElement)
map \r <Action>(Javascript.Linters.EsLint.Fix)
map \f <Action>(ReformatCode)
map \s <Action>(SurroundWith)
map \0 <Action>(Run)
map \x <Action>(Stop)
map \t <Action>(ActivateTerminalToolWindow)
map \q <Action>(HideActiveWindow)
map \[ <Action>(ActivateCodeiumChatToolWindow)
map ,e <Action>(GoToNextError)
map ,E <Action>(GoToPreviousError)
" navigation
map <leader>e <Action>(SelectInProjectView)
map <leader>f <Action>(GotoFile)
map <leader>b <Action>(Switcher)
map <leader>x <Action>(CloseContent)
map <leader>p <Action>(SearchEverywhere)
map <Tab> <Action>(NextTab)
map <S-Tab> <Action>(PreviousTab)
map <leader><Tab> <Action>(NextSplitter)
nnoremap <leader>si :source ~/.ideavimrc<CR>
endif |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
I'm not aware of any issues. I haven't checked WebStorm, but I use a similar mapping in Rider and it works ok. Does the main WebStorm shortcut work to move to the next/previous error? |
Beta Was this translation helpful? Give feedback.
Please try the mapping with lowercase
t
-<Action>(GotoNextError)
and<Action>(GotoPreviousError)
. I didn't think action ID lookup was case sensitive, but I guess it is.