Skip to content

Commit

Permalink
Merge pull request #658 from fatih/fix-multiline-test
Browse files Browse the repository at this point in the history
tool: add back valid items to the filter
  • Loading branch information
fatih committed Dec 14, 2015
2 parents 727cb80 + b4bb12f commit 70c3630
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion autoload/go/tool.vim
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ function! go#tool#FilterValids(items)
elseif has_key(item, 'filename')
let filename = item.filename
else
echohl Identifier | echon "no filename available" | echohl None
" nothing to do, add item back to the list
call add(filtered, item)
continue
endif

Expand Down

0 comments on commit 70c3630

Please sign in to comment.