Merge pull request #306 from dmitmel/master

[pull] master from dmitmel:master
This commit is contained in:
pull[bot] 2021-07-03 07:39:59 +00:00 committed by GitHub
commit 76670a567b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,3 +1,9 @@
" Replicate the behavior of Zsh's complist module under my configuration.
" 1st <Tab> - complete till the longest common prefix (longest).
" 2nd <Tab> - list the matches, but don't select or complete anything yet (list).
" 3rd <Tab> - start the selection menu (i.e. wildmenu), select and complete the first match (full).
set wildmenu wildmode=longest,list,full
" always show the sign column
set signcolumn=yes