geeeek
geeeek

Reputation: 425

can I select it without more alphabet in emacs?

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?

Upvotes: 0

Views: 101

Answers (2)

Stefan
Stefan

Reputation: 28581

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.

Upvotes: 1

Navy Cheng
Navy Cheng

Reputation: 613

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

Upvotes: 1

Related Questions