aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2012-05-28 10:11:20 +1200
committerTom Ryder <tom@sanctum.geek.nz>2012-05-28 10:11:20 +1200
commit89a7e29676a6e40ee13912f072c0a91a6b4a2f6d (patch)
treee1d9e613ffcd7c94eea0f2fdf82f01989153a332
parentNew README.md file (diff)
downloadvim-kimble-89a7e29676a6e40ee13912f072c0a91a6b4a2f6d.tar.gz
vim-kimble-89a7e29676a6e40ee13912f072c0a91a6b4a2f6d.zip
Reworking README file.
-rw-r--r--README.markdown36
-rw-r--r--README.md19
2 files changed, 36 insertions, 19 deletions
diff --git a/README.markdown b/README.markdown
new file mode 100644
index 0000000..b493886
--- /dev/null
+++ b/README.markdown
@@ -0,0 +1,36 @@
+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][1]: Distributed under the same terms as Vim itself.
+See `:help license`.
+
+[1]: http://www.sanctum.geek.nz/about/tom-ryder
+
diff --git a/README.md b/README.md
deleted file mode 100644
index da1c830..0000000
--- a/README.md
+++ /dev/null
@@ -1,19 +0,0 @@
-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`.
-