Netbeans Vertical Strip Color

When you select a variable in NetBeans 7, working with PHP (works with other languages), the program selects all the places inside the file in which the same variable is used.

I know how to change the color of the actual selected text (in Options->Fonts & Colors->Syntax->PHP->Mark Occurrences), but NetBeans also marks matches in the vertical bar to the right of the editor’s scroll bar. This is the color that I want to change, because this panel also distinguishes differences when using version control, and the matches " mark occurrences" are not very clear when there are many differences.

+3
source share
1 answer

First I got the RGB color codes I need to find, 175, 172, 102 (html # AFAC66)

-, , , Netbeans, .

:
enter image description here

PHP :
  org.netbeans.modules.csl.editor.semantic.MarkOccurrencesHighlighter.java
/:
  $installation_folder/netbeans-8.0/ide/modules/org-netbeans-modules-csl-api.jar

http://hg.netbeans.org/, .

, , . , 3 (RGB), -. :

  • org-netbeans-modules-csl-api.jar (Im $folder).
  • org.netbeans.modules.csl.editor.semantic.MarkOccurrencesHighlighter.class org-netbeans-modules-csl-api.jar. , / ($folder), , :
    $folder/org/netbeans/modules/csl/editor/semantic/MarkOccurrencesHighlighter.class
    $folder/org-netbeans-modules-csl-api.jar
  • , JD (http://jd.benow.ca/)
  • , (ES_COLOR): enter image description here
  • -, reJ (http://rejava.sourceforge.net/) 175, 172, 102. ( bipush sipush, 127) enter image description here
  • , (0,0,255): enter image description here
  • .class , : enter image description here
  • $folder , :
    jar -uf org-netbeans-modules-csl-api.jar org/netbeans/modules/csl/editor/semantic/MarkOccurrencesHighlighter.class
  • , , jar .class
  • , jar/module $installation_folder/netbeans-8.0/ide/modules/ $user_directory/modules. , .
  • Netbeans .

:
enter image description here

, Java, org.netbeans.modules.java.editor.semantic.MarkOccurrencesHighlighter.java,   $installation_folder/netbeans-8.0/java/modules/org-netbeans-modules-java-editor.jar, .

- , , .

( Netbeans 8.0)

+3

All Articles