Matching keyword highlight color in editor

前端 未结 2 1953
臣服心动
臣服心动 2021-02-05 14:08

I am using a clone of the wombat Vim color scheme in eclipse for Python development and it works well apart from the matching keyword highlight (whatever that is named), which i

2条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-02-05 14:44

    Agree with Paul this is a mess; you have to know the name of what you're looking for in order to find it. Bleh. However, here are actual locations for the underlying settings strings (with thanks to Frederic):

    In the file {Eclipse workspace directory}/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.editors.prefs :

    Here are the python-specific and general text colors for matching keywords (they call it "Indication"):

    pydevOccurrenceIndicationColor=106,105,146
    occurrenceIndicationColor=97,97,97
    

    Also, if you're looking for a specific value that you can find in the UI but not in a file you can change it in Eclipse to a known RGB value and grep for that in the .settings dir.

提交回复
热议问题