-
-
Notifications
You must be signed in to change notification settings - Fork 274
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
Current argument in function signature preview of jedi-vim not properly highlighted #14
Comments
I'll test it next weekend, but as far as I've seen your suggestion with overriding the methods sounds like a clean solution. |
I've tested the auto completion feature today and for me the list looks fine. Can you please post a screenshot of your view, your And by the way, this plugin is awesome! 😄 |
Thanks, this looks definitely worng 😆 |
This actually includes two groups which had to be adjusted. Both are used for a parameter popup in functions. The background color and the color of the current parameter at the cursor are now colored explicitly instead of the default syntax link to the "TabLine" and "CursorLine" groups.
Jedi-vim is a popular Vim plugin for python programming.
One of its features is a live preview of the signature of the function that is being currently typed. Current position in the argument list is highlighted, but in nord-vim this is not visible. That's because jedi-vim assumes that
TabLine
andCursorLine
groups are highlighted differently, but they aren't in nord-vim.From https://github.com/davidhalter/jedi-vim/blob/master/after/syntax/python.vim:
Either
TabLine
andCursorLine
should be highlighted differently, or the plugin-specificjediFunction
andjediFat
overridden (jediFat
is the one that should stand out more).The text was updated successfully, but these errors were encountered: