Vim 7.4 won't let us quit windows from a script.
[profile.git] / .vim / plugin / gundo.vim
1 " ============================================================================
2 " File:        gundo.vim
3 " Description: vim global plugin to visualize your undo tree
4 " Maintainer:  Steve Losh <steve@stevelosh.com>
5 " License:     GPLv2+ -- look it up.
6 " Notes:       Much of this code was thiefed from Mercurial, and the rest was
7 "              heavily inspired by scratch.vim and histwin.vim.
8 "
9 " ============================================================================
10
11
12 "{{{ Init
13 if !exists('g:gundo_debug') && (exists('g:gundo_disable') || exists('loaded_gundo') || &cp)"{{{
14     finish
15 endif
16 let loaded_gundo = 1"}}}
17 "}}}
18
19 "{{{ Misc
20 command! -nargs=0 GundoToggle call gundo#GundoToggle()
21 command! -nargs=0 GundoShow call gundo#GundoShow()
22 command! -nargs=0 GundoHide call gundo#GundoHide()
23 command! -nargs=0 GundoRenderGraph call gundo#GundoRenderGraph()
24 "}}}