diff options
author | 2011-07-31 22:18:59 -0400 | |
---|---|---|
committer | 2011-07-31 22:18:59 -0400 | |
commit | 998ec908cc5a7fccbf7fbe41b5cb84ab5faed0cc (patch) | |
tree | 5191e1158cb89a2790e2312e05c0c8f8000fb3f8 | |
parent | 9e4de74131d31730c8dabd1c13bb9a86a7e9d281 (diff) | |
download | textadept-998ec908cc5a7fccbf7fbe41b5cb84ab5faed0cc.tar.gz textadept-998ec908cc5a7fccbf7fbe41b5cb84ab5faed0cc.zip |
Updated documentation; modules/textadept/keys.lu
-rw-r--r-- | modules/textadept/keys.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/textadept/keys.lua b/modules/textadept/keys.lua index a29d79d9..573782bc 100644 --- a/modules/textadept/keys.lua +++ b/modules/textadept/keys.lua @@ -196,8 +196,13 @@ keys.cG = gui.find.find_prev if not OSX then keys.sf3 = keys.cG end keys.cr = gui.find.replace keys.cR = gui.find.replace_all +-- Find Next is an when find pane is focused. +-- Find Prev is ap when find pane is focused. +-- Replace is ar when find pane is focused. +-- Replace All is aa when find pane is focused. keys.caf = gui.find.find_incremental keys.cF = utils.find_in_files +-- Find in Files is ai when find pane is focused. keys.cag = { gui.find.goto_file_in_list, true } keys.caG = { gui.find.goto_file_in_list, false } keys.cj = m_editing.goto_line |