From 3ce63ea96c84a134c4e7c4482e8bbfe4fe47b66f Mon Sep 17 00:00:00 2001 From: Vyacheslav Oliyanchuk Date: Fri, 2 Dec 2011 17:18:45 +0300 Subject: [PATCH 1/5] edit readme --- README.md | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index fedded8..625f155 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,11 @@ -# CSScomb-vim -Vim plugin for http://csscomb.com/ +# CSScomb plugin for Vim + ## Installation -### pathogen: +### With Pathogen ``` cd ~/.vim/bundle -git clone https://github.com/batsuev/csscomb-vim.git +git clone https://github.com/miripiruni/csscomb-vim.git ``` -### manual: -``` -git clone https://github.com/batsuev/csscomb-vim.git -cp csscomb-vim/plugin/* ~/.vim/plugin/ -``` -## Usage -``` -:CSSComb +### Manual ``` +git clone https://github.com/ \ No newline at end of file From 138f1dbf00e0e05f38dc166ed9a1b0022d2d0e3b Mon Sep 17 00:00:00 2001 From: Vyacheslav Oliyanchuk Date: Fri, 2 Dec 2011 17:20:10 +0300 Subject: [PATCH 2/5] rename repo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 625f155..ad6376d 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ### With Pathogen ``` cd ~/.vim/bundle -git clone https://github.com/miripiruni/csscomb-vim.git +git clone https://github.com/miripiruni/csscomb-for-vim.git ``` ### Manual ``` From d4261bd998bf9cefbbca27ffd2da19faf2351c62 Mon Sep 17 00:00:00 2001 From: Vyacheslav Oliyanchuk Date: Fri, 2 Dec 2011 17:22:52 +0300 Subject: [PATCH 3/5] add info to readme --- README.md | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index ad6376d..ef50635 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,4 @@ # CSScomb plugin for Vim -## Installation -### With Pathogen -``` -cd ~/.vim/bundle -git clone https://github.com/miripiruni/csscomb-for-vim.git -``` -### Manual -``` -git clone https://github.com/ \ No newline at end of file +## About +Plugin based on CSScomb \ No newline at end of file From cb28660d442b67cb16be1144679dcd30d45ed70a Mon Sep 17 00:00:00 2001 From: miripiruni Date: Fri, 2 Dec 2011 18:49:37 +0300 Subject: [PATCH 4/5] edit README.md --- README.md | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ef50635..9b767df 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,28 @@ # CSScomb plugin for Vim ## About -Plugin based on CSScomb \ No newline at end of file +Plugin based on CSScomb algorithm. + +The algorithm of CSScomb simulates web-technologists actions upon working with CSS-code to the limit. Usually to re-order code you move lines over each other considering comments in the code, multilines records of property values, khaki and everything that could be found in the real file. CSScomb reproduces these actions for you. This means that the parser "thinks" as a person editing the text, not as a blind robot parsing CSS. + +For more info, online demo and tests see [http://csscomb.com/](csscomb.com) + +## Installation + +### With Pathogen + +``` +cd ~/.vim/bundle +git clone https://github.com/miripiruni/csscomb-for-vim.git +``` + +### With Vundle +Add this to .vimrc: +``` +Bundle 'git://github.com/miripiruni/csscomb-for-vim.git' +``` + +### Manual +``` +git clone https://github.com/ +``` From 50bf50ed554565dcace13d3182732dce1d8f2141 Mon Sep 17 00:00:00 2001 From: Aleksandr Batsuev Date: Fri, 2 Dec 2011 23:58:17 +0900 Subject: [PATCH 5/5] Fix link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9b767df..cdcce66 100644 --- a/README.md +++ b/README.md @@ -24,5 +24,5 @@ Bundle 'git://github.com/miripiruni/csscomb-for-vim.git' ### Manual ``` -git clone https://github.com/ +git clone https://github.com/miripiruni/csscomb-for-vim.git ```