prompt-toolkit / pyvim

Pure Python Vim clone.
BSD 3-Clause "New" or "Revised" License
2.52k stars 161 forks source link

mistune missing in pip install dependencies #24

Closed lunemec closed 9 years ago

lunemec commented 9 years ago

Mistune module is missing from pip installer and the pyvim crashes after opening a file.

lunemec commented 9 years ago

Added mistune to setup.py: https://github.com/jonathanslenders/pyvim/pull/35

lunemec commented 9 years ago

It seems that mistune is not dependency for pyvim after all. It gets loaded as a plugin by pygments when you have ipython installed for ipython's markdown parsing. This is rather unfortunate because most python developers have ipython installed. However I removed the mistune from the pull request.