From 4b45cac860a6eb86815c5af85bd6adb6098ac6c7 Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Tue, 24 Jan 2012 21:48:39 -0500 Subject: Rename module shortcut variables. --- modules/lua/init.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'modules/lua/init.lua') diff --git a/modules/lua/init.lua b/modules/lua/init.lua index ce22d8bb..c224ea9d 100644 --- a/modules/lua/init.lua +++ b/modules/lua/init.lua @@ -26,12 +26,12 @@ module('_M.lua')]] -- -- * `sense`: The Lua [Adeptsense](_M.textadept.adeptsense.html). -local Mediting, Mrun = _M.textadept.editing, _M.textadept.run +local m_editing, m_run = _M.textadept.editing, _M.textadept.run -- Comment string tables use lexer names. -Mediting.comment_string.lua = '--' +m_editing.comment_string.lua = '--' -- Compile and Run command tables use file extensions. -Mrun.run_command.lua = 'lua %(filename)' -Mrun.error_detail.lua = { +m_run.run_command.lua = 'lua %(filename)' +m_run.error_detail.lua = { pattern = '^lua: (.-):(%d+): (.+)$', filename = 1, line = 2, message = 3 } -- cgit v1.2.3