X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=autoload%2Funite%2Fkinds%2Fmkbfiles.vim;fp=autoload%2Funite%2Fkinds%2Fmkbfiles.vim;h=0000000000000000000000000000000000000000;hb=ab52ca0533919db331b92b9bee03520b06f5f83a;hp=e7c2b4ca198880b3b069321d1c254d0295ee6933;hpb=efdf81b93665f15ea17ba7858e921663139e014c;p=vim-mkbuild.git diff --git a/autoload/unite/kinds/mkbfiles.vim b/autoload/unite/kinds/mkbfiles.vim deleted file mode 100644 index e7c2b4c..0000000 --- a/autoload/unite/kinds/mkbfiles.vim +++ /dev/null @@ -1,19 +0,0 @@ -let s:kind = { - \ 'name': 'mkbfiles', - \ 'default_action': 'execute', - \ 'action_table': {}, - \ 'parents': [], - \ 'description': 'files used in mkbuild project' - \ } - -let s:kind.action_table.execute = { 'is_selectable': 1 } - -function! s:kind.action_table.execute.func(candidates) - if len(a:candidates) == 1 - execute "e" a:candidates[0].word - endif -endfunction - -function! unite#kinds#mkbfiles#define() - return s:kind -endfunction