diff options
Diffstat (limited to '.mbs/modules')
| -rw-r--r-- | .mbs/modules/lua.lua | 8 | ||||
| -rw-r--r-- | .mbs/modules/pager.lua | 6 | ||||
| -rw-r--r-- | .mbs/modules/readline.lua | 2 |
3 files changed, 8 insertions, 8 deletions
diff --git a/.mbs/modules/lua.lua b/.mbs/modules/lua.lua index d9453e6..b470f0b 100644 --- a/.mbs/modules/lua.lua +++ b/.mbs/modules/lua.lua @@ -10,7 +10,7 @@ return { dependencies = { "bin/lua.lua", - "lib/stack_trace.lua" + "lib/stack_trace.lua", }, -- When updating the defaults, one should also update bin/lua.lua @@ -36,13 +36,13 @@ return { default = true, }, { - name= "mbs.lua.pretty_height", + name = "mbs.lua.pretty_height", description = "The height to fit the pretty-printer output to. Set to " .. "false to disable, true to use the terminal height or a number for a constant height.", default = true, }, { - name= "mbs.lua.highlight", + name = "mbs.lua.highlight", description = "Whether to apply syntax highlighting to the REPL's input.", default = true, }, @@ -54,5 +54,5 @@ return { lib_load(path, "stack_trace") shell.setAlias("lua", "/" .. fs.combine(path, "bin/lua.lua")) - end + end, }
\ No newline at end of file diff --git a/.mbs/modules/pager.lua b/.mbs/modules/pager.lua index 7c25afb..663c7fa 100644 --- a/.mbs/modules/pager.lua +++ b/.mbs/modules/pager.lua @@ -2,7 +2,7 @@ return { description = "Replaces the textutils pagers with something akin to less", dependencies = { - "bin/help.lua" + "bin/help.lua", }, settings = { @@ -15,7 +15,7 @@ return { name = "mbs.pager.mode", description = "The mode for the alternative pager.", default = "default", - } + }, }, enabled = function() return settings.get("mbs.pager.enabled") end, @@ -44,5 +44,5 @@ return { return native_ptabulate(...) end end - end + end, }
\ No newline at end of file diff --git a/.mbs/modules/readline.lua b/.mbs/modules/readline.lua index 4dea9eb..0bb4c67 100644 --- a/.mbs/modules/readline.lua +++ b/.mbs/modules/readline.lua @@ -31,7 +31,7 @@ return { name = "mbs.readline.complete_fg", description = "The foreground colour for completions.", default = "grey", - } + }, }, enabled = function() return settings.get("mbs.readline.enabled") end, |
