Hello,
It'd be nice if you could include the following in /etc/vim/vimrc
=================================================================================
$ diff -u vimrc.orig vimrc
--- vimrc.orig 2015-05-18 20:02:08.924015454 +0200
+++ vimrc 2015-05-18 20:02:50.180015600 +0200
@@ -44,6 +44,7 @@
"set autowrite " Automatically save before commands like :next and :make
"set hidden " Hide buffers when they are abandoned
"set mouse=a " Enable mouse usage (all modes)
+"set wildmenu " Tabcompletion in command line will show matches
" Source a global configuration file if available
if filereadable("/etc/vim/vimrc.local")
=================================================================================
It hugely improves discoverability in vim and thus helps new (and advanced)
user to find what they are looking for or find new things. It's unset above but
even if set it doesn't harm vim-tiny, so it's useful for both -tiny and -full/normal.
Thanks for maintaining vim!
*t