# HG changeset patch # User Steve Losh # Date 1289406544 18000 # Node ID 63383a27b03d3d83e54bb5cea918b24fc39ce4a8 # Parent 6a58cd3cb6616c993a929dddf858cbf28e023987 gundo.vim: Update documentation. diff -r 6a58cd3cb661 -r 63383a27b03d gundo.vim/index.html --- a/gundo.vim/index.html Fri Oct 29 16:35:33 2010 -0400 +++ b/gundo.vim/index.html Wed Nov 10 11:29:04 2010 -0500 @@ -93,6 +93,8 @@
  • g:gundo_preview_height
  • g:gundo_preview_bottom
  • g:gundo_right
  • +
  • g:gundo_help
  • +
  • g:gundo_disable
  • License
  • @@ -197,8 +199,14 @@

    - Pressing return on a state (or double clicking on it) will revert the contents - of the file to match that state. + Pressing return on a state (or double clicking on it) will + revert the contents of the file to match that state. +

    + +

    + You can use p on a state to make the preview window show the + diff between your current state and the selected state, instead of a preview + of what the selected state changed.

    @@ -274,6 +282,25 @@

    Default: 0 (off, open on the left side)

    + + +

    g:gundo_help

    + +

    Set this to 0 to disable the help text in the Gundo graph window.

    + +

    Default: 1 (show the help)

    + + +

    g:gundo_disable

    + +

    Set this to 1 to disable Gundo entirely.

    + +

    + Useful if you use the same ~/.vim folder on + multiple machines, and some of them may not have Python support. +

    + +

    Default: 0 (Gundo is enabled as usual)

    @@ -315,6 +342,21 @@

    Changelog

      +
    1. v2.0.0 +
        +
      • + Make GundoToggle close the Gundo windows if they're + visible but not the current window, instead of moving to them. +
      • +
      • Add the g:gundo_disable setting.
      • +
      • Add the g:gundo_help setting.
      • +
      • + Add the p mapping to preview the result of + reverting to the selected state. +
      • +
      • Fix movement commands with counts in the graph.
      • +
      +
    2. v1.0.0
      • Initial stable release.