aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2012-05-28 10:11:36 +1200
committerTom Ryder <tom@sanctum.geek.nz>2012-05-28 10:11:36 +1200
commit40ce4807ec4493e5a27a401dfab22a5bf4bc4733 (patch)
tree9ce2bfd9a2af02a9758dcf0f9be6ec674795ede7
parentNew README.md file. (diff)
downloadvim-vawk-40ce4807ec4493e5a27a401dfab22a5bf4bc4733.tar.gz
vim-vawk-40ce4807ec4493e5a27a401dfab22a5bf4bc4733.zip
Reworking README file.
-rw-r--r--README.markdown25
-rw-r--r--README.md17
2 files changed, 25 insertions, 17 deletions
diff --git a/README.markdown b/README.markdown
new file mode 100644
index 0000000..7003b44
--- /dev/null
+++ b/README.markdown
@@ -0,0 +1,25 @@
+Vawk
+====
+
+Work with Awk-friendly columnar data in Vim. Provides a simple wrapper to Awk
+as well as a few useful functions for chopping and changing columnar data.
+Requires Awk to be installed, of course.
+
+All commands accept a range which defaults to the entire file. For commands
+which accept columns, these should be comma-separated; you can also use ranges
+as a shorthand, e.g. `1,3-6,10,11`.
+
+* `:[range]Vawk <script>` -- Run an arbitrary Awk script.
+* `:[range]Vcut <columns>` -- Delete the columns specified.
+* `:[range]Vonly <columns>` -- Delete all columns except for the specified.
+* `g:vawksep` -- The record separator to use for the data. Defaults to Awk's
+ usual whitespace delimiting.
+
+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 915bca0..0000000
--- a/README.md
+++ /dev/null
@@ -1,17 +0,0 @@
-Vawk
-====
-
-Work with Awk-friendly columnar data in Vim. Provides a simple wrapper to Awk as well as a few useful functions for chopping and changing columnar data. Requires Awk to be installed, of course.
-
-All commands accept a range which defaults to the entire file. For commands which accept columns, these should be comma-separated; you can also use ranges as a shorthand, e.g. `1,3-6,10,11`.
-
-* `:[range]Vawk <script>` -- Run an arbitrary Awk script.
-* `:[range]Vcut <columns>` -- Delete the columns specified.
-* `:[range]Vonly <columns>` -- Delete all columns except for the specified.
-* `g:vawksep` -- The record separator to use for the data. Defaults to Awk's usual whitespace delimiting.
-
-License
--------
-
-Copyright (c) [Tom Ryder](http://www.sanctum.geek.nz/about/tom-ryder/). Distributed under the same terms as Vim itself. See `:help license`.
-