This file is indexed.

/usr/share/bluefish/bflang/sass.bflang2 is in bluefish-data 2.2.10-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
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?xml version="1.0"?>
<!--
	Bluefish HTML Editor
	sass.bflang2 $Revision: 8559 $

	Copyright 2016 Olivier Sessink

    This program is free software: you can redistribute it and/or modify
	it under the terms of the GNU General Public License as published by
	the Free Software Foundation, either version 3 of the License, or
	(at your option) any later version.

	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
	GNU General Public License for more details.

	You should have received a copy of the GNU General Public License
	along with this program.  If not, see <http://www.gnu.org/licenses/>.
-->
<!DOCTYPE bflang [
	<!ENTITY css-selectors SYSTEM "css-selectors.bfinc">
	<!ENTITY css-rules SYSTEM "css-rules.bfinc">
]>
<bflang name="Sass" version="2.0">
<header>
	<mime type="text/plain?sass" />
	<mime type="application/octet-stream?sass" />
	<option name="load_reference" default="1" />
	<option name="load_completion" default="1" />
	<option name="show_in_menu" default="0" />

	<highlight name="sass-comment" style="comment" />
	<highlight name="sass-flag" style="special-tag2" />
	<highlight name="sass-variable" style="variable" />
	<highlight name="sass-keyword" style="keyword" />
	<highlight name="sass-brackets" style="brackets" />

	<highlight name="css-brackets" style="brackets" />
	<highlight name="css-comment" style="comment" />
	<highlight name="css-html-tag" style="tag" />
	<highlight name="css-html-classid" style="tag" />
	<highlight name="css-html-media" style="special-tag" />
	<highlight name="css-keyword" style="keyword" />
	<highlight name="css-property" style="special-keyword" />
	<highlight name="css-draft-property" style="special-tag3" />
	<highlight name="css-string" style="string" />
	<highlight name="css-value" style="value" />
	<highlight name="css-operator" style="operator" />
</header>
<properties>
	<comment type="block" start="/*" end="*/" />
	<comment type="line" start="//" />
	<smartindent characters="{" />
	<smartoutdent characters="}" />
</properties>
<definition>
	<context id="c.html.css.main" symbols=" &#9;&#10;&#13;{}./*&lt;&gt;:$@+~[]()#,@">

		<element id="e.sass.variable" pattern="$[a-z0-9_-]+" is_regex="1" case_insens="1" highlight="sass-variable" />
		
		<group highlight="sass-flag">
		<element pattern="!global"  />
		<element pattern="!default" />
		</group>
		
		<group highlight="sass-keyword">
		<autocomplete enable="1" />
		<element pattern="@mixin" />
		<element pattern="@if" />
		<element pattern="@content" />
		<element pattern="@include" />
		<element pattern="@each" />
		<element pattern="@media" />
		</group>
		
		<element id="e.sass.comment" pattern="//" highlight="sass-comment">
			<context symbols="&#10;&#13;&#9; " highlight="sass-comment">
				<element pattern="(&#10;|&#13;|&#13;&#10;)" is_regex="1" highlight="sass-comment" ends_context="1" />
			</context>
		</element>
		
		<element id="e.css.lcomment" pattern="/*" starts_block="1" highlight="css-comment">
			<context symbols="*/&#9;&#10;&#13;@ " highlight="css-comment">
				<element pattern="*/" ends_block="1" blockstartelement="e.css.lcomment" highlight="css-comment" ends_context="1" />
			</context>
		</element>

		&css-selectors;

		<group highlight="css-html-media" >
			<autocomplete enable="1" />
			<element pattern="all" />
			<element pattern="aural" />
			<element pattern="braille" />
			<element pattern="embossed" />
			<element pattern="handheld" />
			<element pattern="print" />
			<element pattern="projection" />
			<element pattern="screen" />
			<element pattern="tty" />
			<element pattern="tv" />
		</group>
		
		&css-rules;
		
		<element id="e.css.lbrace" pattern="{" starts_block="1" highlight="css-brackets" />
		<element id="e.css.rbrace" pattern="}" ends_block="1" blockstartelement="e.css.lbrace" highlight="css-brackets" />

		<element pattern="(" id="sass.lparen" starts_block="1" highlight="sass-brackets" />
		<element pattern=")" highlight="sass-brackets" ends_block="1" blockstartelement="sass.lparen" />


	</context>
</definition>
</bflang>