aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2012-05-22 17:44:25 +1200
committerTom Ryder <tom@sanctum.geek.nz>2012-05-22 17:44:25 +1200
commitf047aeaea57014f76893e53ab557a5135c5c5217 (patch)
tree9aa6e5d90d455c103aed5b9193cf321b71d85dc7
parentSpecify the plugin is for Vim (diff)
downloadvim-kimble-f047aeaea57014f76893e53ab557a5135c5c5217.tar.gz
vim-kimble-f047aeaea57014f76893e53ab557a5135c5c5217.zip
New README.md file
-rw-r--r--README36
-rw-r--r--README.md19
2 files changed, 19 insertions, 36 deletions
diff --git a/README b/README
deleted file mode 100644
index 87ab3c2..0000000
--- a/README
+++ /dev/null
@@ -1,36 +0,0 @@
-kimble - Simple Subversion wrappers for Vim
-
-Author: Tom Ryder <tom@sanctum.geek.nz>
-License: Same terms as Vim itself
-
-Some simple Subversion command wrappers to ease the pain of developing with
-Subversion as a VCS. This is very experimental and will be developed more as I
-have time and/or inclination.
-
-:Sstatus Runs 'svn status' and prints its output in a scratch buffer at
- the bottom of the screen.
-
-:Scommit Runs 'svn commit' and prints its output in a scratch buffer at
- the bottom of the screen.
-
-:Sinfo Runs 'svn info' and prints its output in a scratch buffer at
- the bottom of the screen.
-
-:Supdate Runs 'svn update' and prints its output in a scratch buffer at
- the bottom of the screen.
-
-:Sadd Runs 'svn add' and prints its output in a scratch buffer at the
- bottom of the screen. Accepts an optional argument, otherwise
- assumes you mean the current file.
-
-:Sblame Runs 'svn blame' and prints its output in a scratch buffer at
- left of the screen. Accepts an optional argument, otherwise
- assumes you mean the current file.
-
-:Sdiff Runs 'svn diff' and prints its output in a scratch buffer at
- bottom of the screen. Accepts an optional argument, otherwise
- assumes you mean the current file.
-
-:Slog Runs 'svn log' and prints its output in a scratch buffer at the
- bottom of the screen. Accepts an optional argument, otherwise
- assumes you mean the current file.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..da1c830
--- /dev/null
+++ b/README.md
@@ -0,0 +1,19 @@
+Kimble
+======
+
+Some simple Subversion command wrappers for Vim to ease the pain of developing with Subversion as a VCS. This is very experimental and will be developed more as I have time and/or inclination.
+
+* `:Sstatus` -- Runs `svn status` and prints its output in a scratch buffer at the bottom of the screen.
+* `:Scommit` -- Runs `svn commit` and prints its output in a scratch buffer at the bottom of the screen.
+* `:Sinfo` -- Runs `svn info` and prints its output in a scratch buffer at the bottom of the screen.
+* `:Supdate` -- Runs `svn update` and prints its output in a scratch buffer at the bottom of the screen.
+* `:Sadd` -- Runs `svn add` and prints its output in a scratch buffer at the bottom of the screen. Accepts an optional argument, otherwise assumes you mean the current file.
+* `:Sblame` -- Runs `svn blame` and prints its output in a scratch buffer at left of the screen. Accepts an optional argument, otherwise assumes you mean the current file.
+* `:Sdiff` -- Runs `svn diff` and prints its output in a scratch buffer at bottom of the screen. Accepts an optional argument, otherwise assumes you mean the current file.
+* `:Slog` -- Runs `svn log` and prints its output in a scratch buffer at the bottom of the screen. Accepts an optional argument, otherwise assumes you mean the current file.
+
+License
+-------
+
+Copyright (c) [Tom Ryder](http://www.sanctum.geek.nz/about/tom-ryder/). Distributed under the same terms as Vim itself. See `:help license`.
+