diff options
author | Florian Pritz <bluewind@xinu.at> | 2019-03-25 08:36:08 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2019-03-27 14:38:08 +0100 |
commit | e611fe3e90e68a834306a85835acb36d447a834c (patch) | |
tree | f2fa47b202fb32c4cfcc0c63d920ad903d3be4ee | |
parent | 56234c05d26af4187f4748f422d66dd8ad292b42 (diff) | |
download | dotfiles-e611fe3e90e68a834306a85835acb36d447a834c.tar.gz dotfiles-e611fe3e90e68a834306a85835acb36d447a834c.tar.xz |
vimrc: Ignore vendor dir in unite search
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r-- | .vimrc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -304,7 +304,7 @@ call unite#custom#profile('default', 'context', \ 'start_insert' : '1'}) call unite#sources#rec#define() -call unite#custom#source('file_rec/async,file_mru,file,buffer,grep', 'ignore_pattern', 'blib/\|\.build/\|cover_db/') +call unite#custom#source('file_rec/async,file_mru,file,buffer,grep', 'ignore_pattern', 'blib/\|\.build/\|cover_db/\|.undodir/\|vendor/') call unite#custom#source('file_rec,file_rec/async', 'max_candidates', 0) function! s:unite_settings() |