name = "Pico-8 Lua" grammar = "pico8_lua" path_suffixes = ["p8lua"] line_comments = ["-- "] block_comment = ["--[[", "]]"] hard_tabs = false tab_size = 1 autoclose_before = ";:.,=}])>" brackets = [ { start = "{", end = "}", close = true, newline = true }, { start = "[", end = "]", close = true, newline = true }, { start = "(", end = ")", close = true, newline = true }, { start = "\"", end = "\"", close = true, newline = false, not_in = ["string"] }, { start = "'", end = "'", close = true, newline = false, not_in = ["string", "comment"] }, { start = "[[", end = "]]", close = true, newline = true }, ]