Number-based completion no longer works on Linux platforms
Closed this issue · 2 comments
alex-laties commented
After updating to head, number-based tab completion no longer works on my install.
raymond-w-ko commented
Please try putting this in your .vimrc
let g:omegacomplete_server_side_disambiguate=1
This is necessary because it has switched to client side disambiguation (ALT + number) since it is faster and doesn't need to contact the server twice. The above setting should turn back on the old behavior.
alex-laties commented
That fixed it! Thanks dude!