aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/keys.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2011-06-24 17:41:51 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2011-06-24 17:41:51 -0400
commite192e73a92eb896f9c8623d11a8c49ebbcb4c291 (patch)
tree7c09774b3fa143126e8373c2a0c3d901f3e7273c /modules/textadept/keys.lua
parent282c7dd9fe5c903a4620d41c9498153e83867119 (diff)
downloadtextadept-e192e73a92eb896f9c8623d11a8c49ebbcb4c291.tar.gz
textadept-e192e73a92eb896f9c8623d11a8c49ebbcb4c291.zip
Removed '_G' prefix from globals where necessary.
Diffstat (limited to 'modules/textadept/keys.lua')
-rw-r--r--modules/textadept/keys.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/textadept/keys.lua b/modules/textadept/keys.lua
index b4da1271..634e61e8 100644
--- a/modules/textadept/keys.lua
+++ b/modules/textadept/keys.lua
@@ -1,13 +1,13 @@
-- Copyright 2007-2011 Mitchell mitchell<att>caladbolg.net. See LICENSE.
-local L = _G.locale.localize
+local L = locale.localize
---
-- Defines key commands for Textadept.
-- This set of key commands is pretty standard among other text editors.
module('_m.textadept.keys', package.seeall)
-local keys = _G.keys
+local keys = keys
local _buffer, _view = buffer, view
local gui, m_textadept = gui, _m.textadept