Fix section header capitalization.
author |
Steve Losh <steve@stevelosh.com> |
date |
Wed, 20 Oct 2010 19:14:38 -0400 |
parents |
ed2ba1f7cd27
|
children |
9d0c32dd7651
|
branches/tags |
(none) |
files |
plugin/gundo.vim |
Changes
--- a/plugin/gundo.vim Wed Oct 20 19:12:32 2010 -0400
+++ b/plugin/gundo.vim Wed Oct 20 19:14:38 2010 -0400
@@ -89,7 +89,7 @@
endfunction
"}}}
-"{{{ Gundo Buffer Mappings
+"{{{ Gundo buffer mappings
function! s:GundoMapGraph()
nnoremap <script> <silent> <buffer> <CR> :call <sid>GundoRevert()<CR>
nnoremap <script> <silent> <buffer> j :call <sid>GundoMove(1)<CR>
@@ -106,7 +106,7 @@
endfunction
"}}}
-"{{{ Buffer/Window Management
+"{{{ Buffer/window management
function! s:GundoResizeBuffers(backto)
exe bufwinnr(bufnr('__Gundo__')) . "wincmd w"
exe "vertical resize " . g:gundo_width
@@ -238,7 +238,7 @@
endfunction
"}}}
-"{{{ Mercurial's Graphlog Code
+"{{{ Mercurial's graphlog code
python << ENDPYTHON
def asciiedges(seen, rev, parents):
"""adds edge info to changelog DAG walk suitable for ascii()"""
@@ -689,7 +689,7 @@
endfunction
"}}}
-"{{{ Preview Rendering
+"{{{ Preview rendering
function! s:GundoRenderPreview(target)
python << ENDPYTHON
import difflib
@@ -773,7 +773,7 @@
endfunction
"}}}
-"{{{ Undo/Redo Commands
+"{{{ Undo/redo commands
function! s:GundoRevert()
let target_line = matchstr(getline("."), '\v\[[0-9]+\]')
let target_num = matchstr(target_line, '\v[0-9]+')