Created
October 9, 2011 04:46
-
-
Save lukeorland/1273312 to your computer and use it in GitHub Desktop.
vim-pandoc git commit error
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git commit | |
Error detected while processing /Users/orluke/src/newnew_dotvim/.vim/bundle/vim-pandoc/plugin/pandoc.vim: | |
line 1: | |
E319: Sorry, the command is not available in this version: python<<EOF | |
line 2: | |
E488: Trailing characters: # We register openers with PandocRegisterExecutor. | |
line 3: | |
E488: Trailing characters: # We take its first argument as the name of a vim ex command, the second | |
line 4: | |
E488: Trailing characters: # argument as a mapping, and the rest as the description of a command, | |
line 5: | |
E488: Trailing characters: # which we'll pass to pandoc_open. | |
line 7: | |
E488: Trailing characters: # pandoc_register_executor(...) adds a tuple of those elements to a list of | |
line 8: | |
E488: Trailing characters: #executors. This list will be # read from by ftplugin/pandoc.vim and commands | |
line 9: | |
E488: Trailing characters: #and mappings will be created from it. | |
line 10: | |
E492: Not an editor command: pandoc_executors = [] | |
line 12: | |
E492: Not an editor command: def pandoc_register_executor(com_ref):"=" [New File] | |
line 14: | |
E492: Not an editor command: ^Iname = args[0] | |
line 15: | |
E492: Not an editor command: ^Imapping = args[1] | |
line 16: | |
E492: Not an editor command: ^Itype = args[2] | |
line 17: | |
E182: Invalid command name | |
line 18: | |
E492: Not an editor command: ^Ipandoc_executors.append((name, mapping, type, " ".join(command))) | |
line 19: | |
E492: Not an editor command: EOF | |
line 27: | |
E319: Sorry, the command is not available in this version: py pandoc_register_executor("PandocHtml <LocalLeader>html html pandoc -t html -Ss -o %:r.html %%") | |
line 29: | |
E319: Sorry, the command is not available in this version: py pandoc_register_executor("PandocPdf <LocalLeader>pdf pdf markdown2pdf --xetex PANDOC#P_BIBS -o %:r.pdf %%") | |
line 31: | |
E319: Sorry, the command is not available in this version: py pandoc_register_executor("PandocOdt <LocalLeader>odt odt pandoc -t odt PANDOC#P_BIBS -o %:r.odt %%") | |
Press ENTER or type command to continue |
You should make sure the version you are using is compiled with python support.
Also, see this: vim-pandoc/vim-pandoc#31
…On Sat, Mar 31, 2012 at 10:51 AM, Stephen Tudor ***@***.*** wrote:
I seem to get exactly the same error as you just from running `vim` from the command line with the vim-pandoc plugin installed. Did you ever find a resolution?
---
Reply to this email directly or view it on GitHub:
https://gist.github.com/1273312
Awesome, thanks so much for the quick reply.
On Sat, Mar 31, 2012 at 10:59 AM, Luke Orland <
[email protected]
… wrote:
You should make sure the version you are using is compiled with python
support.
Also, see this: vim-pandoc/vim-pandoc#31
On Sat, Mar 31, 2012 at 10:51 AM, Stephen Tudor
***@***.***
wrote:
> I seem to get exactly the same error as you just from running `vim` from
> the command line with the vim-pandoc plugin installed. Did you ever find a
> resolution?
> ---
>
> Reply to this email directly or view it on GitHub:
> https://gist.github.com/1273312
---
Reply to this email directly or view it on GitHub:
https://gist.github.com/1273312
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I seem to get exactly the same error as you just from running
vim
from the command line with the vim-pandoc plugin installed. Did you ever find a resolution?