Skip to content

Commit

Permalink
Fix #30 async flag problem
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Sep 7, 2015
1 parent a0abf4f commit 615de75
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions autoload/unite/sources/tag.vim
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ function! s:source_files.gather_candidates(args, context)
endif
call extend(files, tagdata.files)
if has_key(tagdata, 'cont')
let a:context.is_async = 1
call add(a:context.source__continuation, tagdata)
endif
endfor
Expand Down Expand Up @@ -250,6 +251,7 @@ function! s:source_include.gather_candidates(args, context)
endif
let result += tagdata.tags
if has_key(tagdata, 'cont')
let a:context.is_async = 1
call add(a:context.source__continuation, tagdata)
endif
endfor
Expand Down

0 comments on commit 615de75

Please sign in to comment.