vim/bundle/gundo/plugin/gundo.vim @ 21d16bafb00b
git: add Kaleidoscope as a difftool
author |
Steve Losh <steve@dwaiter.com> |
date |
Fri, 25 Jun 2010 15:07:22 -0400 |
parents |
971a80a9a499 |
children |
(none) |
" if exists('loaded_gundo')
" finish
" endif
" let loaded_gundo = 1
if !hasmapto('<Plug>Gundo')
map <leader>u <Plug>GundoShowGraph
endif
noremap <unique> <script> <Plug>GundoShowGraph <SID>ShowGraph
noremap <SID>ShowGraph :call <SID>ShowGraph()<CR>
function s:ShowGraph()
echo "Show the graph here plz"
endfunction