aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/keys.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2010-06-11 19:18:34 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2010-06-11 19:18:34 -0400
commitf0c0e4d8c11843fb6b5dc4c6f590fa25714ab949 (patch)
tree69f582f799ed0cb851d1b44d15a7d5a9b58290cf /modules/textadept/keys.lua
parent9cc9f312c3c156aaf2f97713bb3a760bd224c52d (diff)
downloadtextadept-f0c0e4d8c11843fb6b5dc4c6f590fa25714ab949.tar.gz
textadept-f0c0e4d8c11843fb6b5dc4c6f590fa25714ab949.zip
Cleanup.
Diffstat (limited to 'modules/textadept/keys.lua')
-rw-r--r--modules/textadept/keys.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/textadept/keys.lua b/modules/textadept/keys.lua
index cdfda538..6e44ba50 100644
--- a/modules/textadept/keys.lua
+++ b/modules/textadept/keys.lua
@@ -108,10 +108,10 @@ module('_m.textadept.keys', package.seeall)
--
-- ## Configuration
--
--- It is not recommended to edit Textadept's `core/ext/key_commands.lua`. You
+-- It is not recommended to edit Textadept's `modules/textadept/keys.lua`. You
-- can either override or add to default key commands in your
--- `~/.textadept/key_commands.lua` or `require` a separate module in your
--- `~/.textadept/init.lua` instead of `ext/key_commands`.
+-- `~/.textadept/keys.lua` or `require` a separate module in your
+-- `~/.textadept/init.lua` instead of `modules/textadept/keys`.
-- Windows and Linux key commands are listed in the first block.
-- Mac OSX key commands are listed in the second block.
@@ -477,7 +477,7 @@ else
keys.cad = { 'del_word_right', b }
end
-user_dofile('key_commands.lua') -- load user key commands
+user_dofile('keys.lua') -- load user key commands
-- Do not edit below this line.