You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When changing the vim_markdown_preview_toggle option whe get the following error:
Error detected while processing function Vim_Markdown_Preview_Local:
line 17:
E484: Can't open file /tmp/vTWTit6/3
Press ENTER or type command to continue
Does not have any issues:
let vim_markdown_preview_toggle=0
let vim_markdown_preview_toggle=3
Has issues:
let vim_markdown_preview_toggle=1
let vim_markdown_preview_toggle=2
Can I confirm if JihongJu's commit has been merged into main? Or if not, what remains to be worked out before it can be? As far as I can tell the missing ' remains missing.
(I don't know if this is the same or a separate issue, but even after I put in the missing ' on my local copy, I still can't get vim_markdown_preview_toggle=1 to render at all. Having vim_markdown_preview_toggle=0 works fine, however.)
When changing the vim_markdown_preview_toggle option whe get the following error:
Error detected while processing function Vim_Markdown_Preview_Local:
line 17:
E484: Can't open file /tmp/vTWTit6/3
Press ENTER or type command to continue
Does not have any issues:
let vim_markdown_preview_toggle=0
let vim_markdown_preview_toggle=3
Has issues:
let vim_markdown_preview_toggle=1
let vim_markdown_preview_toggle=2
A fix was proposed by dexpota in Issue#38
#38
There is a missing single quote on line 132:
From:
let chrome_wid = system("xdotool search --name vim-markdown-preview.html - " . g:vim_markdown_preview_browser . "'")
To:
let chrome_wid = system("xdotool search --name 'vim-markdown-preview.html - " . g:vim_markdown_preview_browser . "'")
Let me know if you want a PR for this.
Thanks
The text was updated successfully, but these errors were encountered: