aboutsummaryrefslogtreecommitdiff
path: root/core/ext
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2010-04-05 15:32:33 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2010-04-05 15:32:33 -0400
commitc9780bff7285d4bf756c689229add52b4701570b (patch)
tree8d491e3eb516fde0b5dac4786003016504d13404 /core/ext
parente20531bcb0cdd582c82a5083f917fb1b94557087 (diff)
downloadtextadept-c9780bff7285d4bf756c689229add52b4701570b.tar.gz
textadept-c9780bff7285d4bf756c689229add52b4701570b.zip
Code cleanup.
Diffstat (limited to 'core/ext')
-rw-r--r--core/ext/key_commands.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/ext/key_commands.lua b/core/ext/key_commands.lua
index 7150be0c..162f97a9 100644
--- a/core/ext/key_commands.lua
+++ b/core/ext/key_commands.lua
@@ -210,7 +210,7 @@ if not MAC then
keys['f2'] = { t.command_entry.focus }
-- Run
local m_run = _m.textadept.run
- keys.cr = { m_run.run }
+ keys.cr = { m_run.run }
keys.cR = { m_run.compile }
-- Snippets
local m_snippets = _m.textadept.lsnippets
@@ -281,7 +281,7 @@ else
-- Mac OSX key commands
--[[
- C: J L M U W X Z
+ C: J M U W X Z
A: D E H J K L U
CS: C D G H I J K L M O Q S T U V W X Y Z
SA: A B C D H I J K L M N O Q R T U V X
@@ -355,7 +355,7 @@ else
}
-- Search
- keys.af = { t.find.focus } -- find/replace
+ keys.af = { t.find.focus } -- find/replace
keys.ag = { t.find.find_next }
keys.aG = { t.find.find_prev }
keys.ar = { t.find.replace }