mirror of
https://github.com/notwa/rc
synced 2025-02-05 15:43:22 -08:00
ignore image files in vim autocomplete
This commit is contained in:
parent
f6db858b6a
commit
15aa4a4d2c
1 changed files with 2 additions and 1 deletions
|
@ -100,12 +100,13 @@ endif " it's really just annoying though
|
||||||
if has('wildignore')
|
if has('wildignore')
|
||||||
" a bunch of stuff that may or may not do any good
|
" a bunch of stuff that may or may not do any good
|
||||||
set wildignore=""
|
set wildignore=""
|
||||||
set wildignore+=.git,.svn,.hg,pkg,tmp,crap
|
set wildignore+=.git,.svn,.hg,pkg,tmp
|
||||||
set wildignore+=*.bak,*.tmp,*.log,*.cache,
|
set wildignore+=*.bak,*.tmp,*.log,*.cache,
|
||||||
set wildignore+=Desktop.ini,Thumbs.db,*.lnk,.DS_Store
|
set wildignore+=Desktop.ini,Thumbs.db,*.lnk,.DS_Store
|
||||||
set wildignore+=*.zip,*.tar,*.tar.*,
|
set wildignore+=*.zip,*.tar,*.tar.*,
|
||||||
set wildignore+=*.suo,*.sln,*.pch,*.pdb,*.pgc,*.pgd
|
set wildignore+=*.suo,*.sln,*.pch,*.pdb,*.pgc,*.pgd
|
||||||
set wildignore+=*.o,*.obj,*.elf,*.lib,*.a,*.dll,*.so,*.so.*,*.exe,*.out
|
set wildignore+=*.o,*.obj,*.elf,*.lib,*.a,*.dll,*.so,*.so.*,*.exe,*.out
|
||||||
|
set wildignore+=*.png,*.jpg,*.jpeg,*.gif,*.pdf
|
||||||
set wildignore+=__pycache__,*.pyc,*.pyo,*.pyd
|
set wildignore+=__pycache__,*.pyc,*.pyo,*.pyd
|
||||||
set wildignore+=*.gem,.bundle
|
set wildignore+=*.gem,.bundle
|
||||||
set wildignore+=CMake*,cmake_install.cmake,install_manifest.txt
|
set wildignore+=CMake*,cmake_install.cmake,install_manifest.txt
|
||||||
|
|
Loading…
Add table
Reference in a new issue