aboutsummaryrefslogtreecommitdiffhomepage
path: root/init.lua
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2010-06-10 23:39:07 -0400
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2010-06-10 23:39:07 -0400
commitfbe7fcf467bd7f947da72cc7a098728d4a6bf364 (patch)
tree9ade80c8665f21d3b23bf58669c73c3fc3119f6f /init.lua
parent023a2f69f2f18787520c70b933b2f86a9cacef9c (diff)
Moved core/ext/keys.lua into core/ext/key_commands.lua.
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua3
1 files changed, 1 insertions, 2 deletions
diff --git a/init.lua b/init.lua
index 18cfb431..672fd668 100644
--- a/init.lua
+++ b/init.lua
@@ -14,7 +14,6 @@ package.path = table.concat(paths, ';')
if not textadept.user_dofile('init.lua') then
-- Core extension modules to load on startup.
-require 'ext/keys' -- provides key command support
require 'ext/find' -- provides functionality for find/replace
require 'ext/command_entry' -- provides tab-completion for the command entry
require 'ext/mime_types' -- provides support for language detection based on
@@ -26,7 +25,7 @@ require 'textadept'
-- Core extension modules that must be loaded last.
require 'ext/menu' -- provides the menu bar
-require 'ext/key_commands' -- key commands
+require 'ext/key_commands' -- provides key command support
end
if not RESETTING then