Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
gbaptista committed Aug 16, 2020
0 parents commit ae4bc74
Show file tree
Hide file tree
Showing 38 changed files with 5,602 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Comment.tmPreferences
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<plist version="1.0">
<dict>
<key>name</key>
<string>Comment</string>
<key>scope</key>
<string>source.fennel</string>
<key>settings</key>
<dict>
<key>shellVariables</key>
<array>
<dict>
<key>name</key>
<string>TM_COMMENT_START</string>
<key>value</key>
<string>; </string>
</dict>
</array>
</dict>
</dict>
</plist>
223 changes: 223 additions & 0 deletions Fennel.sublime-completions
Original file line number Diff line number Diff line change
@@ -0,0 +1,223 @@
{
"scope": "source.fennel",
"completions": [
// Lua 5.4.0
"_G",
"_VERSION",

"true",
"false",
"nil",

// "and",

// "if",
// "not",
// "or",
// "while",
// "do",
"for",

// "fn",
// "lambda",
"local",
"let",

"assert",
"collectgarbage",
"dofile",
"error",
"getmetatable",
"ipairs",
"loadfile",
"load",
"next",
"pairs",
"pcall",
"print",
"rawequal",
"rawget",
"rawlen",
"rawset",
"require",
"select",
"setmetatable",
"tonumber",
"tostring",
"type",
"warn",
"xpcall",

"coroutine.close",
"coroutine.create",
"coroutine.isyieldable",
"coroutine.resume",
"coroutine.running",
"coroutine.status",
"coroutine.wrap",
"coroutine.yield",

"debug.debug",
"debug.gethook",
"debug.getinfo",
"debug.getlocal",
"debug.getmetatable",
"debug.getregistry",
"debug.getupvalue",
"debug.getuservalue",
"debug.setcstacklimit",
"debug.sethook",
"debug.setlocal",
"debug.setmetatable",
"debug.setupvalue",
"debug.setuservalue",
"debug.traceback",
"debug.upvalueid",
"debug.upvaluejoin",

"io.close",
"io.flush",
"io.input",
"io.lines",
"io.open",
"io.output",
"io.popen",
"io.read",
"io.stderr",
"io.stdin",
"io.stdout",
"io.tmpfile",
"io.type",
"io.write",

"math.abs",
"math.acos",
"math.asin",
"math.atan",
"math.atan2",
"math.ceil",
"math.cos",
"math.cosh",
"math.deg",
"math.exp",
"math.floor",
"math.fmod",
"math.frexp",
"math.huge",
"math.ldexp",
"math.log",
"math.maxinteger",
"math.max",
"math.mininteger",
"math.min",
"math.modf",
"math.pi",
"math.pow",
"math.rad",
"math.randomseed",
"math.random",
"math.sin",
"math.sinh",
"math.sqrt",
"math.tan",
"math.tanh",
"math.tointeger",
"math.type",
"math.ult",

"os.clock",
"os.date",
"os.difftime",
"os.execute",
"os.exit",
"os.getenv",
"os.remove",
"os.rename",
"os.setlocale",
"os.time",
"os.tmpname",

"package.config",
"package.cpath",
"package.loaded",
"package.loadlib",
"package.path",
"package.preload",
"package.searchers",
"package.searchpath",

"string.byte",
"string.char",
"string.dump",
"string.find",
"string.format",
"string.gmatch",
"string.gsub",
"string.len",
"string.lower",
"string.match",
"string.packsize",
"string.pack",
"string.rep",
"string.reverse",
"string.sub",
"string.unpack",
"string.upper",

"table.concat",
"table.insert",
"table.move",
"table.pack",
"table.remove",
"table.sort",
"table.unpack",

"utf8.charpattern",
"utf8.char",
"utf8.codepoint",
"utf8.codes",
"utf8.len",
"utf8.offset",

// Fennel 0.5.0
"not=",
"band",
"bnot",
"bor",
"bxor",
"doc",
"dotimes",
"doto",
"each",
"eval-compiler",
"global",
"hashfn",
"import-macros",
"include",
"length",
"lshift",
"macro",
"macrodebug",
"macros",
"match",
"partial",
"pick-args",
"pick-values",
"println",
"rshift",
"set",
"tset",
"unpack",
"values",
"var",
"when",
"with-open"
]
}







8 changes: 8 additions & 0 deletions Fennel.sublime-settings
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"word_separators": "/\\()[]{}\"'`,:;@#^~.",
"smart_indent": false,
"detect_indentation": false,
"tab_size": 1,
"draw_indent_guides": false,
"auto_complete_with_fields": false
}
Loading

0 comments on commit ae4bc74

Please sign in to comment.