mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 05:30:07 +08:00
15 lines
455 B
VimL
15 lines
455 B
VimL
|
"=============================================================================
|
||
|
" FILE: defx.vim
|
||
|
" AUTHOR: Shougo Matsushita <Shougo.Matsu at gmail.com>
|
||
|
" License: MIT license
|
||
|
"=============================================================================
|
||
|
|
||
|
if exists('g:loaded_defx')
|
||
|
finish
|
||
|
endif
|
||
|
let g:loaded_defx = 1
|
||
|
|
||
|
command! -nargs=* -range -bar -complete=customlist,defx#util#complete
|
||
|
\ Defx
|
||
|
\ call defx#util#call_defx('Defx', <q-args>)
|