0

enter image description here

I am in above picture. I want to select common-media-session.h, but I always select it using tab or c-n or c-p in vim.

Can I go to next candidate like vim?

geeeek
  • 375
  • 2
  • 13

2 Answers2

1

M-v to switch to the completion list and C-n to select. You can read more here.

Navy Cheng
  • 573
  • 4
  • 14
1

If you enable icomplete-mode, then you can use C-. and c-, to move to the next/previous candidate.

If you set completion-cycling to a non-nil value, then you can simply hit TAB several times until you get to the completion you want.

Personally, I'd just type com-s.h TAB instead.

Stefan
  • 27,908
  • 4
  • 53
  • 82