0

this is in my init.vim

nmap <leader>ca <Plug>(coc-codeaction-line)

which opens a small menu of actions to choose from, i want to map said menu to use <a-n> for scrolling down and <a-e> for scrolling up

is this possible?

Akuseru
  • 13
  • 7

1 Answers1

0

You can't do key-mappings for menu by now, you can use <C-f> and <C-b> to scroll up/down. You can also use the follows:

  • g: move to first menu item
  • G: move to last item
  • j: move to next
  • k: move to preview item
fannheyward
  • 18,599
  • 12
  • 71
  • 109