1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
" File: voom.vim
" Last Modified: 2017-02-20
" Version: 5.3
" Description: VOoM -- two-pane outliner plugin for Python-enabled Vim
" Website: http://www.vim.org/scripts/script.php?script_id=2657
" Author: Vlad Irnov (vlad DOT irnov AT gmail DOT com)
" License: CC0, see http://creativecommons.org/publicdomain/zero/1.0/
if exists('g:voom_did_load_plugin')
finish
endif
let g:voom_did_load_plugin = 'v5.3'
com! -complete=custom,voom#Complete -nargs=? Voom call voom#Init(<q-args>)
com! -complete=custom,voom#Complete -nargs=? VoomToggle call voom#Init(<q-args>, 1, 1)
com! Voomhelp call voom#Help()
com! Voomlog call voom#LogInit()
com! -nargs=? Voomexec call voom#Exec(<q-args>)
" other commands are defined in ../autoload/voom.vim
" support for Vim sessions (:mksession)
au BufFilePost __PyLog__ call voom#LogSessionLoad()
au BufFilePost *_VOOM\d\+ call voom#TreeSessionLoad()
|