-
Notifications
You must be signed in to change notification settings - Fork 91
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
:call Vim_Markdown_Preview() changes plugin/applescript/files on Mac OSX #63
Comments
I am unable to reproduce this behavior. Are you using any of this plugin's options? What has the contents of the applescripts changed to? |
They seem to be some kind of binaries; no idea. |
Can you run |
Content of tell application "Google Chrome"
set windowList to every window
repeat with aWindow in windowList
set tabList to every tab of aWindow
set i to 1
repeat with atab in tabList
if (URL of atab contains "vim-markdown-preview.html") then
tell atab to reload
set active tab index of first window to i
end if
set i to i + 1
end repeat
end repeat
end tell Content of tell application "Google Chrome"
repeat with w in windows
set i to 1
repeat with t in tabs of w
if URL of t ends with "vim-markdown-preview.html" then
return 0
end if
set i to i + 1
end repeat
end repeat
return 1
end tell |
Hi
:call Vim_Markdown_Preview()
modifies plugin/applescript/files on Mac OSX:It makes
:PluginUpdate
to fail for this repository so that I have to git checkout the files to their last version first and rerun:PluginUpdate
again.Greetings,
Matus
The text was updated successfully, but these errors were encountered: