diff options
author | 2010-04-05 15:32:33 -0400 | |
---|---|---|
committer | 2010-04-05 15:32:33 -0400 | |
commit | c9780bff7285d4bf756c689229add52b4701570b (patch) | |
tree | 8d491e3eb516fde0b5dac4786003016504d13404 /core/ext/key_commands.lua | |
parent | e20531bcb0cdd582c82a5083f917fb1b94557087 (diff) | |
download | textadept-c9780bff7285d4bf756c689229add52b4701570b.tar.gz textadept-c9780bff7285d4bf756c689229add52b4701570b.zip |
Code cleanup.
Diffstat (limited to 'core/ext/key_commands.lua')
-rw-r--r-- | core/ext/key_commands.lua | 6 |
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 } |