-
I'm trying to figure out how to call a JetBrains action such as My goal is trying to make Currently I have based of reading the function! ChooseCompletionAction()
:action EditorChooseLookupItem<CR>
:action InsertInlineCompletionAction<CR>
endfunction
imap <C-y> <Esc>:call ChooseCompletionAction()<CR>a |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 16 replies
-
It's not a mapping, but a Vim script command, so you don't need the |
Beta Was this translation helpful? Give feedback.
@JustBarnt so what about the
map <C-y> <Action>(EditorChooseLookupItem)<Action>(InsertInlineCompletionAction)
option? Is it working?