https://github.com/vim/vim/pull/19370
(1 file)
—
Reply to this email directly, view it on GitHub.
You are receiving this because you are subscribed to this thread.![]()
Hmm. I don't have linux. Could anybody help?
The purpose of this pr is to fix it working on GUI MS-Windows.
It was failed to open files
:!unzip -p -- "C:/abc.zip" > "C:\a.temp"
caution: filename not matched: >
caution: filename not matched: C:/a.temp
—
Reply to this email directly, view it on GitHub.
You are receiving this because you are subscribed to this thread.![]()
unzip has pretty nasty command line parsing rules. It seems to see the > as part a file name.
Perhaps this works:
:!cmd /c "unzip -p -- "C:\abc.zip" > "C:/a.temp""
Oh wrong, I think I misunderstood. What issue are you facing on Linux?
—
Reply to this email directly, view it on GitHub.
You are receiving this because you are subscribed to this thread.![]()
Oh wrong, I think I misunderstood. What issue are you facing on Linux?
After using system(), the linux test was failed.
—
Reply to this email directly, view it on GitHub.
You are receiving this because you are subscribed to this thread.![]()
When replacing :! with system(), s:Escape()'s second argument should also be altered with 0, since this argument is passed to shellescape() actually.
—
Reply to this email directly, view it on GitHub.
You are receiving this because you are subscribed to this thread.![]()
@mao-yining pushed 1 commit.
—
View it on GitHub or unsubscribe.
You are receiving this because you are subscribed to this thread.![]()
@mao-yining pushed 1 commit.
You are receiving this because you are subscribed to this thread.![]()