From 153b09143622b828931bd5a3911047927ef5d4fe Mon Sep 17 00:00:00 2001 From: Levi Olson Date: Mon, 20 Jul 2015 15:01:04 -0500 Subject: [PATCH] Create gh-pages branch via GitHub --- index.html | 138 +++++++++++++++++++ javascripts/scale.fix.js | 17 +++ params.json | 1 + stylesheets/github-light.css | 116 ++++++++++++++++ stylesheets/styles.css | 255 +++++++++++++++++++++++++++++++++++ 5 files changed, 527 insertions(+) create mode 100644 index.html create mode 100644 javascripts/scale.fix.js create mode 100644 params.json create mode 100644 stylesheets/github-light.css create mode 100644 stylesheets/styles.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..7fef405 --- /dev/null +++ b/index.html @@ -0,0 +1,138 @@ + + + + + + Vim-makecols by leothelocust + + + + + + + +
+
+

Vim-makecols

+

makecols.vim: converting lists to columns made simple

+ +

View the Project on GitHub leothelocust/vim-makecols

+ + + +
+
+

+makecols

+ +

Makecols.vim is intended to easily convert lists into column based +layouts.

+ +

The easiest way to explain is with examples.

+ +

Say you have a list of things (in this case numbers)

+ +
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+
+ +

and you’d like it to look neater

+ +
1       2
+3       4
+5       6
+7       8
+9       10
+
+ +

That’s pretty neat

+ +

+Usage

+ +

Here’s how you do it.

+ +

Start with a list like above.

+ +
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+
+ +

Then visual select the rows you’d like to make neat.

+ +

Then type mc and viola! The data has automagically been reconstructed +into a satisfactory arrangement.

+ +
1       2
+3       4
+5       6
+7       8
+9       10
+
+ +

You are now free of the worry caused by inadequate single column list layouts. Carry on.

+ +

Additionally, you can do things like 3mcv which would make 3 columns, and arrange to a vertical sorting like so:

+ +
1       5      9
+2       6      10
+3       7
+4       8
+
+ +

+Installation

+ +

If you don't have a preferred installation method, I recommend +installing pathogen.vim, and +then simply copy and paste:

+ +
cd ~/.vim/bundle
+git clone git://github.com/leothelocust/vim-makecols.git
+
+ +

Once help tags have been generated, you can view the manual with +:help makecols.

+ +

+Contributing

+ +

Just pull, make some changes, and create a merge request.

+ +

+License

+ +

Copyright (c) Levi Olson. Distribution under the same terms as Vim itself. +See :help license.

+
+ +
+ + + + diff --git a/javascripts/scale.fix.js b/javascripts/scale.fix.js new file mode 100644 index 0000000..87a40ca --- /dev/null +++ b/javascripts/scale.fix.js @@ -0,0 +1,17 @@ +var metas = document.getElementsByTagName('meta'); +var i; +if (navigator.userAgent.match(/iPhone/i)) { + for (i=0; i