-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PluginSearch Error #599
Comments
+1 UPD: Seems like a connection issue, because after several tries it worked |
I came to the solution, simply remove the recap steps as follow:
thks for this helpful issue posted by @phillipwei , related issues are #535 and #602 |
update at 20150924 I dived into the vim script and found that the reason is simple, because the command The main logic is as follows(located in So the solution is simple:
or use curl or wget to get the file(either is ok, pick one as you like), like:
or
Recommend use the second solution(ie. use curl or wget to download the file) |
I followed these steps to fix the scripts not found error...and found that the domain vim-scripts.org has expired. Is the file available anywhere else? |
it works for me: i can access the website and the json file. |
Just tried it. I was able to download the json file using wget as described above. :PluginSearch! works for me now. |
@nfischer @fourlincoln10 thanks for the feedback! |
Strangely this curl command that was listed above:
downloaded a 0-byte file, which caused But now it seems to be working. |
I tried every solution that is given above but I am still facing the same issue any help? |
I'm also facing this issue, I wonder if you have any update?? |
@yungha It looks like the site that used to serve that JSON file is no longer active. However, it looks like the JSON is simply a list of package names. I am looking into this ☕ |
The root of this problem is that PluginSearch queries http://vim-scripts.org, and this site no longer exists. This is because most vim plugin development and distribution occurs via github/gitlab now. I recommend searching for plugins directly, or searching for plugins on github. This functionality should be considered dead now. or use curl or wget to get the file(either is ok, pick one as you like), like:
or
|
there is no .vundle in ~/.vim/bundle instead of Vundle.vim.I change dir to ~/.vim/bundle/Vundle.vim/autoload,there is there files in it.then use "wget http://vim-scripts.org/api/scripts.json" to download this json file .it works.no errors report anymore. |
@i-cooltea ..all evening trying the different fixes for this issue and none worked but i-cooltea has it spot on. The vim-scripts site no longer exists. I deleted my current "script-names.vim-scripts.org.json" from the .vundle folder and ran: curl -v -o ~/.vim/bundle/.vundle/script-names.vim-scripts.org.json https://raw.githubusercontent.com/i-cooltea/resource/master/vim-api_scripts.json PluginSearch now works a charm. Thank you I-cooltea. |
@EI5JS I had success with your method, even after deleting my .vundle and having it remade by using :PluginInstall I believe. This is a weird little glitch. |
changing http://vim-scripts.org/api/scripts.json to https://raw.githubusercontent.com/i-cooltea/resource/master/vim-api_scripts.json In .vim/bundle/Vundle.vim/autoload/vundle/scripts.vim fixed problem for me. |
worked for me. thanks |
Gracie! |
after a lot of google search , this particular worked. I'm happy it worked but can anybody explain me how? |
Well the original URL is not available anymore. The code here needs to be fixed to point to a new properly downloadable resource: https://github.com/VundleVim/Vundle.vim/blob/master/autoload/vundle/scripts.vim#L237 |
Such behaviour creates a lot of confusion for such new users like me. Why this is not resolved yet with so many ( working ) proposed solutions/workarounds? |
I think the VundleVIM is not actively maintained any more. and the 'http://vim-scripts.org/api/scripts.json' in the search script doesn't exist any more. maybe someone can pick it up and start to maintain it. |
The text was updated successfully, but these errors were encountered: