From e058f514a540cfa242460bbbe4a2405335333a9f Mon Sep 17 00:00:00 2001 From: Christian Date: Wed, 13 Nov 2013 16:59:58 -0500 Subject: [PATCH 1/2] Pathogen defacto standard is to use 'git clone'. Moreover, the 'unzip /path/to/emmet-vim.zip' command does not work because a parent directory (e.g. emmit-vim) needs to be created within the ~/.vim/bundle dir for vim to pickup the plugin correctly. Lastly, use the SSH url as it is the cloning default standard. --- README.mkd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.mkd b/README.mkd index 07ca3d8..92c1405 100644 --- a/README.mkd +++ b/README.mkd @@ -16,7 +16,7 @@ which provides support for expanding abbreviations similar to To install using pathogen.vim: cd ~/.vim/bundle - unzip /path/to/emmet-vim.zip + git clone git@github.com:mattn/emmet-vim.git To install using [Vundle|https://github.com/gmarik/vundle]: #add this line to your .vimrc file @@ -25,11 +25,11 @@ To install using [Vundle|https://github.com/gmarik/vundle]: To checkout the source from repository: cd ~/.vim/bundle - git clone http://github.com/mattn/emmet-vim.git + git clone git@github.com:mattn/emmet-vim.git or: - git clone http://github.com/mattn/emmet-vim.git + git clone git@github.com:mattn/emmet-vim.git cd emmet-vim cp plugin/emmet.vim ~/.vim/plugin/ cp autoload/emmet.vim ~/.vim/autoload/ From 55eb236bd8a58eace8bcda7f10fc465cfdfa10ae Mon Sep 17 00:00:00 2001 From: Christian Date: Thu, 14 Nov 2013 15:31:16 -0500 Subject: [PATCH 2/2] Revert back to https:// url type as this is Github's recommended type. See http://stackoverflow.com/questions/11041729/why-does-github-recommend-https-over-ssh --- README.mkd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.mkd b/README.mkd index 92c1405..63c9b8f 100644 --- a/README.mkd +++ b/README.mkd @@ -16,7 +16,7 @@ which provides support for expanding abbreviations similar to To install using pathogen.vim: cd ~/.vim/bundle - git clone git@github.com:mattn/emmet-vim.git + git clone https://github.com/mattn/emmet-vim.git To install using [Vundle|https://github.com/gmarik/vundle]: #add this line to your .vimrc file @@ -25,11 +25,11 @@ To install using [Vundle|https://github.com/gmarik/vundle]: To checkout the source from repository: cd ~/.vim/bundle - git clone git@github.com:mattn/emmet-vim.git + git clone https://github.com/mattn/emmet-vim.git or: - git clone git@github.com:mattn/emmet-vim.git + git clone https://github.com/mattn/emmet-vim.git cd emmet-vim cp plugin/emmet.vim ~/.vim/plugin/ cp autoload/emmet.vim ~/.vim/autoload/