aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/keys.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2013-07-08 16:07:05 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2013-07-08 16:07:05 -0400
commit7d1f21b44479d8b4484f8e27872eafd203b0e727 (patch)
tree68d47d0b8b33581ec3235891ff3be224e14be305 /modules/textadept/keys.lua
parent49a4d17618c2e3454c5f5fe37492a283c7c55cc2 (diff)
downloadtextadept-7d1f21b44479d8b4484f8e27872eafd203b0e727.tar.gz
textadept-7d1f21b44479d8b4484f8e27872eafd203b0e727.zip
Added curses keys to key bindings documentation; modules/textadept/keys.lua
Diffstat (limited to 'modules/textadept/keys.lua')
-rw-r--r--modules/textadept/keys.lua37
1 files changed, 24 insertions, 13 deletions
diff --git a/modules/textadept/keys.lua b/modules/textadept/keys.lua
index 672c7994..44ba66b8 100644
--- a/modules/textadept/keys.lua
+++ b/modules/textadept/keys.lua
@@ -189,19 +189,30 @@ local M = {}
-- N/A |N/A |^] |Swap caret and mark anchor
-- **Other** | | |
-- Ctrl+Shift+U, xxxx, Enter|None|None|Input Unicode character U-xxxx.
--- **curses CDK Fields**| | |
--- N/A |N/A|^B<br/>Left |Cursor left
--- N/A |N/A|^F<br/>Right|Cursor right
--- N/A |N/A|Del |Delete forward
--- N/A |N/A|^H<br/>Bksp |Delete back
--- N/A |N/A|^V |Paste
--- N/A |N/A|^X |Cut all
--- N/A |N/A|^Y |Copy all
--- N/A |N/A|^U |Erase all
--- N/A |N/A|^A |Home
--- N/A |N/A|^E |End
--- N/A |N/A|^T |Transpose characters
--- N/A |N/A|^L |Refresh
+-- **Entry Fields**| | |
+-- Left |⇠<br/>^B |^B<br/>Left |Cursor left
+-- Right |⇢<br/>^F |^F<br/>Right|Cursor right
+-- Del |⌦ |Del |Delete forward
+-- Bksp |⌫ |^H<br/>Bksp |Delete back
+-- Ctrl+V |⌘V |^V |Paste
+-- N/A |N/A |^X |Cut all
+-- N/A |N/A |^Y |Copy all
+-- N/A |N/A |^U |Erase all
+-- Home |↖<br/>⌘⇠<br/>^A|^A |Home
+-- End |↘<br/>⌘⇢<br/>^E|^E |End
+-- N/A |N/A |^T |Transpose characters
+-- N/A |N/A |^L |Refresh
+-- **Find Fields**| | |
+-- N/A |N/A|Tab |Focus find buttons
+-- N/A |N/A|S-Tab|Focus replace buttons
+-- Tab |⇥ |Down |Focus replace field
+-- Shift+Tab |⇧⇥ |Up |Focus find field
+-- Down |⇣ |^P |Cycle back through find/replace history
+-- Up |⇡ |^N |Cycle forward through find/replace history
+-- N/A |N/A|F1 |Toggle "Match Case"
+-- N/A |N/A|F2 |Toggle "Whole Word"
+-- N/A |N/A|F3 |Toggle "Lua Pattern"
+-- N/A |N/A|F4 |Toggle "Find in Files"
--
-- †: Ctrl+Enter in Win32 curses.
module('_M.textadept.keys')]]