Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
- Fixed statusline.
  • Loading branch information
Shougo committed Oct 13, 2012
1 parent 020a20d commit 766ba59
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autoload/unite.vim
@@ -1,7 +1,7 @@
"=============================================================================
" FILE: unite.vim
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
" Last Modified: 11 Oct 2012.
" Last Modified: 14 Oct 2012.
" License: MIT license {{{
" Permission is hereby granted, free of charge, to any person obtaining
" a copy of this software and associated documentation files (the
Expand Down Expand Up @@ -367,7 +367,7 @@ endfunction"}}}
function! unite#loaded_source_names_with_args()"{{{
return map(copy(unite#loaded_sources_list()), "
\ join(insert(filter(copy(v:val.args),
\ 'type(v:val) < 1'), s:convert_source_name(v:val.name)), ':')
\ 'type(v:val) <= 1'), s:convert_source_name(v:val.name)), ':')
\ . (v:val.unite__len_candidates == 0 ? '' :
\ printf(' (%s/%s)', v:val.unite__len_candidates,
\ v:val.unite__orig_len_candidates))
Expand Down
3 changes: 3 additions & 0 deletions doc/unite.txt
Expand Up @@ -2741,6 +2741,9 @@ A: You can use below mappings.
==============================================================================
CHANGELOG *unite-changelog*

2012-10-14
- Fixed statusline.

2012-10-11
- Fixed for unite-source.

Expand Down

0 comments on commit 766ba59

Please sign in to comment.