-
Notifications
You must be signed in to change notification settings - Fork 32
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
Error when using Python 2.6 #41
Comments
Thanks for the report. I'll check if the later |
Thanks. The two big changes I made were
You may not want to make the first change because I don't know if it is dependent on the version of vim. |
I've pushed the second change. Thanks! The first change ( |
It returns the information associated with this: |
@timlag1305 well, it just means that your vim does know about the operator |
Use {1**:.0f**} and {2**:.0f**}, top and bottom are floats for whatever reason. |
So the error message is as follows @andreibalandin's solution fixed the error. |
I am using Vim 7.4 with Python 2.6 (because CentOS) and I found that minimap doesn't work with this combination. You might want to either note the minimum version of python in the README.
I was able to get rid of the errors by changing the following line in minimap.py:
vim.command("match " + highlight_group + " /\%>0v\%<{}v\%>{}l\%<{}l./".for mat(WIDTH + 1, top, bottom))
to:
vim.command("match " + highlight_group + " /%>0v%<{0}v%>{1}l%<{2}l./".for mat(WIDTH + 1, top, bottom))
The text was updated successfully, but these errors were encountered: