Skip to content

Commit e058f51

Browse files
committed
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.
1 parent 55c0875 commit e058f51

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.mkd

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ which provides support for expanding abbreviations similar to
1616
To install using pathogen.vim:
1717

1818
cd ~/.vim/bundle
19-
unzip /path/to/emmet-vim.zip
19+
git clone [email protected]:mattn/emmet-vim.git
2020

2121
To install using [Vundle|https://github.com/gmarik/vundle]:
2222
#add this line to your .vimrc file
@@ -25,11 +25,11 @@ To install using [Vundle|https://github.com/gmarik/vundle]:
2525
To checkout the source from repository:
2626

2727
cd ~/.vim/bundle
28-
git clone http://github.com/mattn/emmet-vim.git
28+
git clone git@github.com:mattn/emmet-vim.git
2929

3030
or:
3131

32-
git clone http://github.com/mattn/emmet-vim.git
32+
git clone git@github.com:mattn/emmet-vim.git
3333
cd emmet-vim
3434
cp plugin/emmet.vim ~/.vim/plugin/
3535
cp autoload/emmet.vim ~/.vim/autoload/

0 commit comments

Comments
 (0)