Changing colors of a Python for-loop in Vim -
Changing colors of a Python for-loop in Vim -
i've started learning python , i'm using macvim editor jellybeans color scheme. when write for-loop in python 'for' colored blue(ish) while 'in' not. see in other themes both colored same. how edit jellybeans theme that?
here's image showing mean:
vim's python syntax file defines in
part of pythonoperator
syntax group. pythonoperator
grouping linked to built-in operator
group, (by default) linked in turn statement
.
jellybeans instead links operator
normal
uncolored symbolic operators (+
, *
, etc) without changing statement
.
adding special case link straight pythonoperator
statement
restores coloring.
tl;dr i fixed it. grab new re-create github repo.
python vim colors
Comments
Post a Comment