From: Simon Ruderich Date: Sun, 7 Oct 2012 23:11:00 +0000 (+0200) Subject: vimrc: Show completion menu even if only one entry matches. X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=0c40bebfe732f379daa3826b8be1acf90bb33052 vimrc: Show completion menu even if only one entry matches. --- diff --git a/vimrc b/vimrc index ed6ce3b..48f52f3 100644 --- a/vimrc +++ b/vimrc @@ -70,6 +70,11 @@ if exists('+wildignorecase') set wildignorecase endif +" Show completion menu even if only one entry matches. +if exists('+completeopt') + set completeopt+=menuone +endif + " Increase history of executed commands (:). set history=1000