Giter VIP home page Giter VIP logo

Comments (10)

cdelahousse avatar cdelahousse commented on May 18, 2024

It works when I run call vundle#rc without the argument. I thought you could pass that method a argument because of this comment: #62 (comment)

Now, everything installs to my ~/.vim folder in Cygwin, but I'd really love the bundles to download and run from my dropbox folder (hence, running vundle#rc with an argument in my vimrc). So, the problem still remains.

from vundle.vim.

0 avatar 0 commented on May 18, 2024

I don't have the time right now to find where the problem happens (since shellescape is being called), but the exclamation mark in your path in the call to vundle#rc causes the issue.

from vundle.vim.

0 avatar 0 commented on May 18, 2024

It turns out that :! kindly replaces all instances of ! in the current command with the previous command run from Vim, before the current command reaches the shell, and shellescape does not escape ! unless told to.

As far as I can tell, the proper solution is to add a "non-zero-arg" in the 2nd position to all four calls to shellescape. For example, shellescape(a:bundle.path(), 1) at installer.vim:81.

from vundle.vim.

cdelahousse avatar cdelahousse commented on May 18, 2024

Darn it. I'm just getting use to POSIX systems. Ok, I'll change the
path. Thanks a million.

On 22 July 2011 10:53, 0
[email protected]
wrote:

It turns out that :! kindly replaces all instances of ! in the current command with the previous command run from Vim, before the current command reaches the shell, and shellescape does not escape ! unless told to.

As far as I can tell, the proper solution is to add a "non-zero-arg" in the 2nd position to all four calls to shellescape. For example, shellescape(a:bundle.path(), 1) at installer.vim:81.

Reply to this email directly or view it on GitHub:
#64 (comment)

from vundle.vim.

gmarik avatar gmarik commented on May 18, 2024

@0 thanks for taking time to look into this issue!

from vundle.vim.

gmarik avatar gmarik commented on May 18, 2024

Hey @cdelahousse are you still having this issue?!

from vundle.vim.

cdelahousse avatar cdelahousse commented on May 18, 2024

I'm not sure if the issue is still a problem.

I changed my directory structure to work around the problem.

from vundle.vim.

gmarik avatar gmarik commented on May 18, 2024

Apparently this had been already fixed after we replaced :exec with system() calls
Here's prove:

:exec '!ls /tmp/!path'
>E34: No previous command

vs

:echo system('ls /tmp/!path')
>ls: /tmp/!path: No such file or directory

from vundle.vim.

gmarik avatar gmarik commented on May 18, 2024

The commit @rson refers to installer.vim:81

Fixed with eca5e06

from vundle.vim.

gmarik avatar gmarik commented on May 18, 2024

Also 73daf4e was required.
Should be fine now!

from vundle.vim.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.