# HG changeset patch # User Steve Losh # Date 1309294680 14400 # Node ID 4639797cbea28213335127d4c9df4fe98f2b68be # Parent 220b0be0ab038d80e36d7c74085a32a97b176e92 Formatting. diff -r 220b0be0ab03 -r 4639797cbea2 autoload/gundo.py --- a/autoload/gundo.py Wed Jun 29 03:06:37 2011 +0700 +++ b/autoload/gundo.py Tue Jun 28 16:58:00 2011 -0400 @@ -14,7 +14,8 @@ import time import vim -# Mercurial's graphlog code + +# Mercurial's graphlog code -------------------------------------------------------- def asciiedges(seen, rev, parents): """adds edge info to changelog DAG walk suitable for ascii()""" if rev not in seen: @@ -193,8 +194,8 @@ ascii(buf, state, 'C', char, [line], edgefn(seen, node, parents)) return buf.b -# Mercurial age function +# Mercurial age function ----------------------------------------------------------- agescales = [("year", 3600 * 24 * 365), ("month", 3600 * 24 * 30), ("week", 3600 * 24 * 7), @@ -227,8 +228,8 @@ if n >= 2 or s == 1: return '%s ago' % fmt(t, n) -# Python Vim utility functions +# Python Vim utility functions ----------------------------------------------------- normal = lambda s: vim.command('normal %s' % s) MISSING_BUFFER = "Cannot find Gundo's target buffer (%s)" @@ -278,8 +279,8 @@ ''' -# Python undo tree data structures and functions +# Python undo tree data structures and functions ----------------------------------- class Buffer(object): def __init__(self): self.b = '' @@ -325,10 +326,10 @@ current = int(vim.eval('changenr()')) return current -# Gundo rendering + +# Gundo rendering ------------------------------------------------------------------ # Rendering utility functions - def _fmt_time(t): return time.strftime('%Y-%m-%d %I:%M:%S %p', time.localtime(float(t))) @@ -499,8 +500,8 @@ _goto_window_for_buffer_name('__Gundo__') + # Gundo undo/redo - def GundoRevert(): if not _check_sanity(): return