简体   繁体   中英

vim - how do I set a shortcut?

I'm trying to follow the instructions for configuring NeoComplete

The config example is this:

inoremap <expr><C-l>     neocomplete#complete_common_string()

I'm assuming this means, press Ctrl-L to accept the first completion. It doesn't work.

Can someone explain the <expr><Cl> bit?

if you used <expr> mapping, it means, the string returned by given expression will be {rhs} mapping.

Eg you have a function return a string abc , then with nnoremap <expr> , your mapping will do same in normal mode pressing abc

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM