diff options
author | 2011-07-13 20:51:17 -0400 | |
---|---|---|
committer | 2011-07-13 20:51:17 -0400 | |
commit | 8ecc8aa21bf61063a8e2d0ef29a78d4a62616d29 (patch) | |
tree | ffe7a2317ddb80c558f28039a3120c8a3876afaa /doc/manual/7_Modules.md | |
parent | 57101e2742f9385602c367fc054363c1e52e33a2 (diff) | |
download | textadept-8ecc8aa21bf61063a8e2d0ef29a78d4a62616d29.tar.gz textadept-8ecc8aa21bf61063a8e2d0ef29a78d4a62616d29.zip |
Refactored key commands and added menu accelerators.
Key commands are now in keys.conf and keys.osx.conf which are loaded by the
_m.textadept.menu module.
Diffstat (limited to 'doc/manual/7_Modules.md')
-rw-r--r-- | doc/manual/7_Modules.md | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/doc/manual/7_Modules.md b/doc/manual/7_Modules.md index 72880974..917a0b33 100644 --- a/doc/manual/7_Modules.md +++ b/doc/manual/7_Modules.md @@ -37,13 +37,13 @@ is loaded or a buffer's lexer is set to that language. #### Snippets Most language-specific modules have a set of -[snippets](../modules/_m.textadept.snippets.html). Press `Ctrl+Alt+Shift+I` -(`Ctrl+Apple+Shift+I` on Mac OSX) for a list of available snippets or see the -module's Lua code. To insert a snippet, type its trigger followed by the `Tab` -key. Subsequent presses of `Tab` causes the caret to enter tab stops in -sequential order, `Shift+Tab` goes back to the previous tab stop, and -`Ctrl+Alt+I` (`Ctrl+Apple+I` on Mac OSX) cancels the current snippet. Snippets -can be nested (inserted from within another snippet). +[snippets](../modules/_m.textadept.snippets.html). Press `Ctrl+K` (`⌥⇥` on Mac +OSX) for a list of available snippets or see the module's Lua code. To insert a +snippet, type its trigger followed by the `Tab` (`⇥`) key. Subsequent presses of +`Tab` (`⇥`) causes the caret to enter tab stops in sequential order, `Shift+Tab` +(`⇧⇥`) goes back to the previous tab stop, and `Ctrl+Shift+K` (`⌥⇧⇥` on Mac OSX) +cancels the current snippet. Snippets can be nested (inserted from within +another snippet).  @@ -53,21 +53,23 @@ can be nested (inserted from within another snippet). Most language-specific modules have a set of [key commands](../modules/_m.textadept.keys.html). See the module's Lua code for -which key commands are available. +which key commands are available. They are typically stored in the `Ctrl+L` +(`⌘L` on Mac OSX) key prefix. ##### Run Most language-specific modules have a command that runs the code in the current -file. Pressing `Ctrl+R` runs that command. +file. Pressing `Ctrl+Alt+R` (`^R` on Mac OSX) runs that command. ##### Compile Most language-specific modules have a command that compiles the code in the -current file. Pressing `Ctrl+Shift+R` runs that command. +current file. Pressing `Ctrl+Alt+Shift+R` (`^⇧R` on Mac OSX) runs that command. ##### Block Comments -Pressing `Ctrl+Q` comments or uncomments the code on the selected lines. +Pressing `Ctrl+/` (`⌘/` on Mac OSX) comments or uncomments the code on the +selected lines. #### Buffer Properties |