This file is indexed.

/usr/share/pgmodeler/conf/pattern-highlight.conf is in pgmodeler-common 0.9.1~beta-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="UTF-8"?>
<!--
  CAUTION: Do not modify this file directly on it's code unless you know what you are doing.
           Unexpected results may occur if the code is changed deliberately.
-->
<source-code-highlight>
  <word-delimiters value="{}"/>
  <word-separators value="{}"/>
  <ignored-chars value=""/>

  <highlight-order>
    <group name="token"/>
    <group name="string"/>
  </highlight-order>

  <group name="token" case-sensitive="false"
         bold="true" italic="false" underline="false"
	 background-color="#ffffff" foreground-color="#008000">
   <element regexp="true" value="(\{)" type="initial-exp"/>
   <element regexp="true" value="(\})" type="final-exp"/>
  </group>
  
  <group name="string" case-sensitive="false"
         bold="false" italic="false" underline="false"
	 background-color="#ffffff" foreground-color="#347AB3">
   <element regexp="true" value="(.)*"/>
  </group>
</source-code-highlight>