# HG changeset patch # User Steve Losh # Date 1306507937 14400 # Node ID 8a4ae04d66d4c50521468d5417c3e284a82a1ea2 # Parent 887d515b2f460d885faa976bb3d029500c4c36cd gundo.vim: Update documentation. diff -r 887d515b2f46 -r 8a4ae04d66d4 gundo.vim/index.html --- a/gundo.vim/index.html Wed Nov 24 00:16:02 2010 -0500 +++ b/gundo.vim/index.html Fri May 27 10:52:17 2011 -0400 @@ -11,11 +11,11 @@ /* */ @@ -51,7 +51,7 @@ title="gundo by stevelosh, on Flickr" >gundo - +

You know that Vim lets you undo changes like any text editor. What you might @@ -96,6 +96,8 @@

  • g:gundo_right
  • g:gundo_help
  • g:gundo_disable
  • +
  • g:gundo_map_move_[older/newer]
  • +
  • g:gundo_close_on_revert
  • License
  • @@ -302,6 +304,28 @@

    Default: 0 (Gundo is enabled as usual)

    + + +

    g:gundo_map_move_[older/newer]

    + +

    + These options let you change the keys that navigate the + undo graph. This is useful if you use a Dvorak keyboard and + have changed your movement keys. +

    + +

    + Default:
    + gundo_map_move_older: "j"
    + gundo_map_move_newer: "k" +

    + + +

    g:gundo_close_on_revert

    + +

    Set this to 1 to automatically close the Gundo windows when reverting.

    + +

    Default: 0 (windows do not automatically close)

    @@ -341,8 +365,49 @@

    Changelog

    - +
      +
    1. v2.2.0 +
        +
      • + Add the g:gundo_close_on_revert setting. +
      • +
      • + Fix a bug with the splitbelow setting. +
      • +
      +
    2. +
    3. v2.1.1 +
        +
      • + Fix a bug with the movement key mappings. +
      • +
      +
    4. +
    5. v2.1.0 +
        +
      • + Warnings about having an incompatible Vim and/or + Python installation are now deferred until the + first time you try to use Gundo, instead of being + displayed on launch. +
      • +
      • + The j and k mappings are + now configurable with + g:gundo_map_move_older and + g:gundo_map_move_newer. +
      • +
      • + The o, Up and + Down keys are now mapped in the + Gundo pane. +
      • +
      • + Improve and add several unit tests for Gundo. +
      • +
      +
    6. v2.0.0
      • @@ -368,7 +433,7 @@

        Credits

        - +

        The graphing code was all taken from Mercurial, hence the GPLv2+ license. diff -r 887d515b2f46 -r 8a4ae04d66d4 gundo.vim/publish.sh --- a/gundo.vim/publish.sh Wed Nov 24 00:16:02 2010 -0500 +++ b/gundo.vim/publish.sh Fri May 27 10:52:17 2011 -0400 @@ -1,5 +1,6 @@ #!/usr/bin/env bash +hg -R ~/src/sjl.bitbucket.org pull -u rsync --delete -az . ~/src/sjl.bitbucket.org/gundo.vim hg -R ~/src/sjl.bitbucket.org commit -Am 'gundo.vim: Update documentation.' hg -R ~/src/sjl.bitbucket.org push