gundo.vim: Update documentation.
author |
Steve Losh <steve@stevelosh.com> |
date |
Sun, 21 Feb 2021 12:18:04 -0500 |
parents |
eac576b62b8b
|
children |
55507a7c499d
|
branches/tags |
(none) |
files |
gundo.vim/index.html gundo.vim/publish.sh |
Changes
--- a/gundo.vim/index.html Sun Jul 19 11:36:41 2020 -0400
+++ b/gundo.vim/index.html Sun Feb 21 12:18:04 2021 -0500
@@ -36,10 +36,8 @@
<body>
<div id="repos">
- <a href="http://bitbucket.org/sjl/gundo.vim/">Mercurial Repository</a><br/>
- <a href="http://github.com/sjl/gundo.vim/">Git Repository</a><br/>
-
- <a class="FlattrButton" style="display:none;" rev="flattr;button:compact;" href="http://bitbucket.org/sjl/gundo.vim/"></a>
+ <a href="https://hg.stevelosh.com/gundo.vim/">Mercurial Repository</a><br/>
+ <a href="https://github.com/sjl/gundo.vim/">Git Repository</a><br/>
</div>
<div class="wrap">
<header>
@@ -75,12 +73,6 @@
Gundo is a plugin to make browsing this ridiculously powerful undo tree less
painful.
</p>
-
- <p>
- Check out this
- <a href="http://screenr.com/M9l">quick screencast</a>
- if you want to see it in action.
- </p>
</section>
<nav>
<ol>
@@ -124,10 +116,10 @@
<h1>Installation</h1>
<p>Use Pathogen. Don't use pathogen? Start.</p>
- <pre>hg clone http://bitbucket.org/sjl/gundo.vim ~/.vim/bundle/gundo</pre>
+ <pre>hg clone https://hg.stevelosh.com/gundo.vim ~/.vim/bundle/gundo</pre>
<p>There's a git mirror if you prefer:</p>
- <pre>git clone http://github.com/sjl/gundo.vim.git ~/.vim/bundle/gundo</pre>
+ <pre>git clone https://github.com/sjl/gundo.vim.git ~/.vim/bundle/gundo</pre>
<p>Add a mapping to your ~/.vimrc (change the key to suit your taste):</p>
<pre>nnoremap <F5> :GundoToggle<CR></pre>
@@ -381,7 +373,7 @@
<p>
If you find a bug please post it on the
- <a href="http://bitbucket.org/sjl/gundo.vim/issues?status=new&status=open">issue tracker</a>.
+ <a href="https://github.com/sjl/gundo.vim/issues">issue tracker</a>.
</p>
</section>
<section>
@@ -389,11 +381,11 @@
<h1>Contributing</h1>
<p>
- Fork the repository on
- <a href="http://bitbucket.org/sjl/gundo.vim/">BitBucket</a>
+ Get the repository via
+ <a href="https://hg.stevelosh.com/gundo.vim/">Mercurial</a>
or
- <a href="http://github.com/sjl/gundo.vim/">GitHub</a>
- and send a pull request.
+ <a href="https://github.com/sjl/gundo.vim/">GitHub</a>
+ and send a patch or pull request.
</p>
<p>Make sure you document your changes in the following places:</p>
--- a/gundo.vim/publish.sh Sun Jul 19 11:36:41 2020 -0400
+++ b/gundo.vim/publish.sh Sun Feb 21 12:18:04 2021 -0500
@@ -1,6 +1,8 @@
#!/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
+set -euo pipefail
+
+hg -R ~/src/docs.stevelosh.com pull -u
+rsync --delete -az . ~/src/docs.stevelosh.com/gundo.vim
+hg -R ~/src/docs.stevelosh.com commit -Am 'gundo.vim: Update documentation.'
+hg -R ~/src/docs.stevelosh.com push