Last active
December 12, 2015 06:48
-
-
Save alfredbaudisch/4732057 to your computer and use it in GitHub Desktop.
Sublime Text 2 Lua language file with support to stored functions. With it Go to Symbol captures all of the following scenarios:
local stored; stored = function() end / local class = {}; local stored; class:stored = function() end / class.stored1 = function () end / local function loc(params) end / function glob(params) end
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>comment</key> | |
| <string>Lua Syntax: version 0.8</string> | |
| <key>fileTypes</key> | |
| <array> | |
| <string>lua</string> | |
| </array> | |
| <key>foldingStartMarker</key> | |
| <string>^\s*\b(function|local\s+function|if|for)\b|{[ \t]*$|\[\[</string> | |
| <key>foldingStopMarker</key> | |
| <string>\bend\b|^\s*}|\]\]</string> | |
| <key>keyEquivalent</key> | |
| <string>^~L</string> | |
| <key>name</key> | |
| <string>Lua</string> | |
| <key>patterns</key> | |
| <array> | |
| <dict> | |
| <key>captures</key> | |
| <dict> | |
| <key>1</key> | |
| <dict> | |
| <key>name</key> | |
| <string>entity.name.function.scope.lua</string> | |
| </dict> | |
| <key>2</key> | |
| <dict> | |
| <key>name</key> | |
| <string>entity.name.function.lua</string> | |
| </dict> | |
| <key>3</key> | |
| <dict> | |
| <key>name</key> | |
| <string>keyword.control.lua</string> | |
| </dict> | |
| <key>4</key> | |
| <dict> | |
| <key>name</key> | |
| <string>punctuation.definition.parameters.begin.lua</string> | |
| </dict> | |
| <key>5</key> | |
| <dict> | |
| <key>name</key> | |
| <string>variable.parameter.function.lua</string> | |
| </dict> | |
| <key>6</key> | |
| <dict> | |
| <key>name</key> | |
| <string>punctuation.definition.parameters.end.lua</string> | |
| </dict> | |
| </dict> | |
| <key>match</key> | |
| <string>\b([a-zA-Z_.:]+[.:])?([a-zA-Z_]\w*)\s*=\s*(function)\s*(\()([^)]*)(\))</string> | |
| <key>name</key> | |
| <string>meta.function.lua</string> | |
| </dict> | |
| <dict> | |
| <key>captures</key> | |
| <dict> | |
| <key>1</key> | |
| <dict> | |
| <key>name</key> | |
| <string>keyword.control.lua</string> | |
| </dict> | |
| <key>2</key> | |
| <dict> | |
| <key>name</key> | |
| <string>entity.name.function.scope.lua</string> | |
| </dict> | |
| <key>3</key> | |
| <dict> | |
| <key>name</key> | |
| <string>entity.name.function.lua</string> | |
| </dict> | |
| <key>4</key> | |
| <dict> | |
| <key>name</key> | |
| <string>punctuation.definition.parameters.begin.lua</string> | |
| </dict> | |
| <key>5</key> | |
| <dict> | |
| <key>name</key> | |
| <string>variable.parameter.function.lua</string> | |
| </dict> | |
| <key>6</key> | |
| <dict> | |
| <key>name</key> | |
| <string>punctuation.definition.parameters.end.lua</string> | |
| </dict> | |
| </dict> | |
| <key>match</key> | |
| <string>\b(function)\s+([a-zA-Z_.:]+[.:])?([a-zA-Z_]\w*)\s*(\()([^)]*)(\))</string> | |
| <key>name</key> | |
| <string>meta.function.lua</string> | |
| </dict> | |
| <dict> | |
| <key>match</key> | |
| <string>(?<![\d.])\s0x[a-fA-F\d]+|\b\d+(\.\d+)?([eE]-?\d+)?|\.\d+([eE]-?\d+)?</string> | |
| <key>name</key> | |
| <string>constant.numeric.lua</string> | |
| </dict> | |
| <dict> | |
| <key>begin</key> | |
| <string>'</string> | |
| <key>beginCaptures</key> | |
| <dict> | |
| <key>0</key> | |
| <dict> | |
| <key>name</key> | |
| <string>punctuation.definition.string.begin.lua</string> | |
| </dict> | |
| </dict> | |
| <key>end</key> | |
| <string>'</string> | |
| <key>endCaptures</key> | |
| <dict> | |
| <key>0</key> | |
| <dict> | |
| <key>name</key> | |
| <string>punctuation.definition.string.end.lua</string> | |
| </dict> | |
| </dict> | |
| <key>name</key> | |
| <string>string.quoted.single.lua</string> | |
| <key>patterns</key> | |
| <array> | |
| <dict> | |
| <key>match</key> | |
| <string>\\.</string> | |
| <key>name</key> | |
| <string>constant.character.escape.lua</string> | |
| </dict> | |
| </array> | |
| </dict> | |
| <dict> | |
| <key>begin</key> | |
| <string>"</string> | |
| <key>beginCaptures</key> | |
| <dict> | |
| <key>0</key> | |
| <dict> | |
| <key>name</key> | |
| <string>punctuation.definition.string.begin.lua</string> | |
| </dict> | |
| </dict> | |
| <key>end</key> | |
| <string>"</string> | |
| <key>endCaptures</key> | |
| <dict> | |
| <key>0</key> | |
| <dict> | |
| <key>name</key> | |
| <string>punctuation.definition.string.end.lua</string> | |
| </dict> | |
| </dict> | |
| <key>name</key> | |
| <string>string.quoted.double.lua</string> | |
| <key>patterns</key> | |
| <array> | |
| <dict> | |
| <key>match</key> | |
| <string>\\.</string> | |
| <key>name</key> | |
| <string>constant.character.escape.lua</string> | |
| </dict> | |
| </array> | |
| </dict> | |
| <dict> | |
| <key>begin</key> | |
| <string>(?<!--)\[(=*)\[</string> | |
| <key>beginCaptures</key> | |
| <dict> | |
| <key>0</key> | |
| <dict> | |
| <key>name</key> | |
| <string>punctuation.definition.string.begin.lua</string> | |
| </dict> | |
| </dict> | |
| <key>end</key> | |
| <string>\]\1\]</string> | |
| <key>endCaptures</key> | |
| <dict> | |
| <key>0</key> | |
| <dict> | |
| <key>name</key> | |
| <string>punctuation.definition.string.end.lua</string> | |
| </dict> | |
| </dict> | |
| <key>name</key> | |
| <string>string.quoted.other.multiline.lua</string> | |
| </dict> | |
| <dict> | |
| <key>begin</key> | |
| <string>--\[(=*)\[</string> | |
| <key>captures</key> | |
| <dict> | |
| <key>0</key> | |
| <dict> | |
| <key>name</key> | |
| <string>punctuation.definition.comment.lua</string> | |
| </dict> | |
| </dict> | |
| <key>end</key> | |
| <string>\]\1\]</string> | |
| <key>name</key> | |
| <string>comment.block.lua</string> | |
| </dict> | |
| <dict> | |
| <key>captures</key> | |
| <dict> | |
| <key>1</key> | |
| <dict> | |
| <key>name</key> | |
| <string>punctuation.definition.comment.lua</string> | |
| </dict> | |
| </dict> | |
| <key>match</key> | |
| <string>(--)(?!\[\[).*$\n?</string> | |
| <key>name</key> | |
| <string>comment.line.double-dash.lua</string> | |
| </dict> | |
| <dict> | |
| <key>match</key> | |
| <string>\b(break|do|else|for|if|elseif|return|then|repeat|while|until|end|function|local|in)\b</string> | |
| <key>name</key> | |
| <string>keyword.control.lua</string> | |
| </dict> | |
| <dict> | |
| <key>match</key> | |
| <string>(?<![^.]\.|:)\b(false|nil|true|_G|_VERSION|math\.(pi|huge))\b|(?<![.])\.{3}(?!\.)</string> | |
| <key>name</key> | |
| <string>constant.language.lua</string> | |
| </dict> | |
| <dict> | |
| <key>match</key> | |
| <string>(?<![^.]\.|:)\b(self)\b</string> | |
| <key>name</key> | |
| <string>variable.language.self.lua</string> | |
| </dict> | |
| <dict> | |
| <key>match</key> | |
| <string>(?<![^.]\.|:)\b(assert|collectgarbage|dofile|error|getfenv|getmetatable|ipairs|loadfile|loadstring|module|next|pairs|pcall|print|rawequal|rawget|rawset|require|select|setfenv|setmetatable|tonumber|tostring|type|unpack|xpcall)\b(?=[( {])</string> | |
| <key>name</key> | |
| <string>support.function.lua</string> | |
| </dict> | |
| <dict> | |
| <key>match</key> | |
| <string>(?<![^.]\.|:)\b(coroutine\.(create|resume|running|status|wrap|yield)|string\.(byte|char|dump|find|format|gmatch|gsub|len|lower|match|rep|reverse|sub|upper)|table\.(concat|insert|maxn|remove|sort)|math\.(abs|acos|asin|atan2?|ceil|cosh?|deg|exp|floor|fmod|frexp|ldexp|log|log10|max|min|modf|pow|rad|random|randomseed|sinh?|sqrt|tanh?)|io\.(close|flush|input|lines|open|output|popen|read|tmpfile|type|write)|os\.(clock|date|difftime|execute|exit|getenv|remove|rename|setlocale|time|tmpname)|package\.(cpath|loaded|loadlib|path|preload|seeall)|debug\.(debug|[gs]etfenv|[gs]ethook|getinfo|[gs]etlocal|[gs]etmetatable|getregistry|[gs]etupvalue|traceback))\b(?=[( {])</string> | |
| <key>name</key> | |
| <string>support.function.library.lua</string> | |
| </dict> | |
| <dict> | |
| <key>match</key> | |
| <string>\b(and|or|not)\b</string> | |
| <key>name</key> | |
| <string>keyword.operator.lua</string> | |
| </dict> | |
| <dict> | |
| <key>match</key> | |
| <string>\+|-|%|#|\*|\/|\^|==?|~=|<=?|>=?|(?<!\.)\.{2}(?!\.)</string> | |
| <key>name</key> | |
| <string>keyword.operator.lua</string> | |
| </dict> | |
| </array> | |
| <key>scopeName</key> | |
| <string>source.lua</string> | |
| <key>uuid</key> | |
| <string>93E017CC-6F27-11D9-90EB-000D93589AF7</string> | |
| </dict> | |
| </plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Does this work with Sublime Text 2?