This file is indexed.

/usr/share/highlight/langDefs/lua.lang is in highlight-common 3.41-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
Description="Lua"

Keywords={
  { Id=1,
    List={"and", "break", "do", "else", "elseif", "end", "false", "for",
          "function", "if", "in", "local", "nil", "not", "or", "repeat", "return", "then",
          "true", "until", "while"},
  },
  { Id=2,
    List={"number", "string", "function", "userdata", "table", "assert", "call",
          "collectgarbage", "copytagmethods", "dofile", "dostring", "error", "foreach",
          "foreachi", "getglobal", "getn", "gettagmethod", "globals", "newtag", "next",
          "print", "rawget", "rawset", "setglobal", "settag", "settagmethod", "sort",
          "tag", "tonumber", "tostring", "tinsert", "tremove", "type", "abs", "acos",
          "asin", "atan", "atan2", "ceil", "cos", "deg", "exp", "floor", "log", "log10",
          "max", "min", "mod", "rad", "sin", "sqrt", "tan", "frexp", "ldexp", "random",
          "randomseed", "openfile", "closefile", "readfrom", "writeto", "appendto",
          "remove", "rename", "flush", "seek", "tmpname", "read", "write", "clock",
          "date", "execute", "exit", "getenv", "setlocale", "strbyte", "strchar",
          "strfind", "strlen", "strlower", "strrep", "strsub", "strupper", "format",
          "gsub"},
  },
  { Id=4,
    Regex=[[(\w+)\s*\(]],
  },
}

Strings={
  Delimiter=[["|']],
  DelimiterPairs= {
    { Open=[[ \[=*\[ ]], Close=[[ \]=*\] ]], Raw=true }
  },
  AssertEqualLength=true
}

IgnoreCase=false

Comments={
  { Block=false,
    Delimiter= { [[\-\-(?!\[\[) ]] },
  },

  { Block=true,
    Nested=false,
    Delimiter= { [[ \-\-\[\[ ]],[[ \]\] ]],}
  }
}

Operators=[[\(|\)|\{|\}|\[|\]|\,|\;|\.|\:|\&|<|>|\!|\=|\/|\*|\%|\+|\-|\~|\#|\\]]


-- resolve issue with ]] close delimiter which ends comments and strings
function OnStateChange(oldState, newState, token)

   if token=="]]" and oldState==HL_STRING and newState==HL_BLOCK_COMMENT_END then
      return HL_STRING_END
   end
   
   return newState
end