diff options
author | 2009-07-19 21:14:31 -0400 | |
---|---|---|
committer | 2009-07-19 21:14:31 -0400 | |
commit | 49ba42eff07ce4260f34de2fba8725378777ad21 (patch) | |
tree | 07283b31bf8c8e485d7100c64aca92266253edce /core | |
parent | 27e48dc858760edd53c71d3b832e4a78f120c594 (diff) | |
download | textadept-49ba42eff07ce4260f34de2fba8725378777ad21.tar.gz textadept-49ba42eff07ce4260f34de2fba8725378777ad21.zip |
Fix core/ext/key_commands.lua to run on OSX.
Diffstat (limited to 'core')
-rw-r--r-- | core/ext/key_commands.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ext/key_commands.lua b/core/ext/key_commands.lua index f8e3ceec..9a98612c 100644 --- a/core/ext/key_commands.lua +++ b/core/ext/key_commands.lua @@ -281,7 +281,7 @@ else keys.ag = { t.find.call_find_next } keys.sag = { t.find.call_find_prev } keys.ar = { t.find.call_replace } - keys.ai = { f.find.find_incremental } + keys.ai = { t.find.find_incremental } keys.saf = { function() t.find.in_files = true |