dotfiles/.config/nvim/tree.nvim/plugin/tree.vim
2021-11-13 19:24:20 +01:00

15 lines
472 B
VimL
Executable File

"=============================================================================
" FILE: tree.vim
" AUTHOR: Shougo Matsushita <Shougo.Matsu at gmail.com>
" License: MIT license
"=============================================================================
if exists('g:loaded_tree')
finish
endif
let g:loaded_tree = 1
command! -nargs=* -range -bar -complete=customlist,v:lua.complete
\ Tree
\ call luaeval('require("tree").call_tree("Tree", _A)', <q-args>)