aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2012-07-16 11:03:37 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2012-07-16 11:03:37 -0400
commit3d718af477180031d94434ab6372e889174ba7c1 (patch)
tree0a99ca86fffcab9649907ec8fdbc1b59ad7a6c6f /modules/textadept
parentf2422ed988425464c2c02f03b8d0981635be903f (diff)
downloadtextadept-3d718af477180031d94434ab6372e889174ba7c1.tar.gz
textadept-3d718af477180031d94434ab6372e889174ba7c1.zip
Reverted r1189; ncurses command entry key command is M-C again.
Diffstat (limited to 'modules/textadept')
-rw-r--r--modules/textadept/keys.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/textadept/keys.lua b/modules/textadept/keys.lua
index 4cc75d8e..e3d7eaed 100644
--- a/modules/textadept/keys.lua
+++ b/modules/textadept/keys.lua
@@ -158,7 +158,7 @@ local utils = M.utils
-- Unassigned keys (~ denotes keys reserved by the operating system):
-- c: g~~ ~ ^]
-- cm: bcd g~~ k ~ pq t v xyz
--- m: c J qQ sS u vVw xXyYzZ*
+-- m: e J qQ sS u vVw xXyYzZ*
-- Note: m[befhstv] may be used by GUI terminals.
--
-- CTRL = 'c' (Control ^)
@@ -268,7 +268,8 @@ end
keys[not OSX and 'cj' or 'mj'] = m_editing.goto_line
-- Tools.
-keys[not OSX and not NCURSES and 'ce' or 'me'] = gui.command_entry.focus
+keys[not OSX and (not NCURSES and 'ce' or 'mc')
+ or 'me'] = gui.command_entry.focus
keys[not OSX and (not NCURSES and 'cE' or 'mC')
or 'mE'] = utils.select_command
keys[not OSX and 'cr' or 'mr'] = m_textadept.run.run