eddie-vim icon indicating copy to clipboard operation
eddie-vim copied to clipboard

I have some error after follow your step by step..

Open chiakeyo0o opened this issue 11 years ago • 6 comments
trafficstars

I am new in vim and git ,and I have some error when I use VI after follow your instruction.

My Error... Error detected while processing /home/chiakey/.vimrc: line 10: E117: Unknown function: pathogen#incubate line 12: E117: Unknown function: pathogen#infect line 13: E117: Unknown function: pathogen#helptags Press ENTER or type command to continue

Another two question, How to change the background color and text color to default in your vimrc ? If i want to add another plugin , where should i place my .vim file ??

Thanks ^^

chiakeyo0o avatar Apr 24 '14 16:04 chiakeyo0o

I'm no vim pro, but I'll try my best to help you out. If I answer something wrong, somebody please correct me.

For the first part, I think you didn't run "./update.sh" in the eddie-vim directory. It's in the Readme. As for the background and text color, you can look up colorscheme commands for vim and vim-colorselector plugin (use by eddie-vim). New plugins goes in eddie-vim/bundle/.

Hope it helps.

yuchunc avatar Apr 27 '14 09:04 yuchunc

I had the same symptoms and it appears that the ./update.sh fails at some point, so the install is incomplete:

Entering 'bundle/vim-airline'
Permission denied (publickey).
fatal: The remote end hung up unexpectedly
Stopping at 'bundle/vim-airline'; script returned non-zero status.

mose avatar May 02 '14 21:05 mose

I got it fixed by running

sed -i "[email protected]:~git://github.com/~" eddie-vim/.gitmodules

in a fresh clone and then after that ./update.sh is happy.

mose avatar May 02 '14 21:05 mose

Check your ssh key was correctly config in your github account.

tonywang0122 avatar Jun 03 '14 03:06 tonywang0122

But that is exactly the point.

I was installing eddie-vim on a server where I don't have the need to have my ssh key uploaded to github. The url git@github... requires a valid ssh key present even for public repos, while git://github does not.

All the other urls in the .gitmodule use git://, that vim-airline, added recently, didn't.

mose avatar Jun 03 '14 06:06 mose

I had the same problem as yours. And after a half-an-hour hacking, I found there's no pathogen.vim in my .vim folder at all. So I run the following command:

$ curl https://raw.githubusercontent.com/tpope/vim-pathogen/master/autoload/pathogen.vim > ~/.vim/autoload/pathogen.vim

And it turned out working fine. If you don't have the autoload folder in your .vim, just mkdir one.

a0x avatar Aug 10 '14 05:08 a0x