diff options
author | 2014-03-27 13:45:29 -0400 | |
---|---|---|
committer | 2014-03-27 13:45:29 -0400 | |
commit | 7785897657cd9c3a5e1483ebacad73939f375a7e (patch) | |
tree | b168e4ec9c72248be21841807177870a07f32659 /doc/06_AdeptEditing.md | |
parent | f65b2b2a66f05b20010256ca1d81cc3252ea1471 (diff) | |
download | textadept-7785897657cd9c3a5e1483ebacad73939f375a7e.tar.gz textadept-7785897657cd9c3a5e1483ebacad73939f375a7e.zip |
Added basic project support for snapopen and build scripts.
Also fixed some curses errors introduced by the last commit.
Diffstat (limited to 'doc/06_AdeptEditing.md')
-rw-r--r-- | doc/06_AdeptEditing.md | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/doc/06_AdeptEditing.md b/doc/06_AdeptEditing.md index b5e66b88..fd59b9d8 100644 --- a/doc/06_AdeptEditing.md +++ b/doc/06_AdeptEditing.md @@ -298,13 +298,16 @@ Pressing `Ctrl+/` (`⌘/` on Mac OSX | `M-/` in curses) comments or uncomments t code on the selected lines. Selecting any part of a line renders the entire line eligible for commenting or uncommenting. -### Compile and Run +### Compile, Run, and Build Textadept knows most of the commands that compile and/or run code in source -files. Pressing `Ctrl+Shift+R` (`⌘⇧R` on Mac OSX | `M-^R` in curses) executes -the command for compiling code in the current file and `Ctrl+R` (`⌘R` | `^R`) -executes the command for running code. A new buffer shows the output from the -command and marks any recognized warnings and errors. Pressing `Ctrl+Alt+E` +files. It can also sometimes detect your project's build file and run that. +Pressing `Ctrl+Shift+R` (`⌘⇧R` on Mac OSX | `M-^R` in curses) executes the +command for compiling code in the current file, `Ctrl+R` (`⌘R` | `^R`) executes +the command for running code, and `Ctrl+Shift+B` (`⌘⇧B` on Mac OSX | `M-^B` in +curses) executes the command for building a project. `Ctrl+Shift+X` (`⌘⇧X` | +`N/A`) stops the currently running process. A new buffer shows the output from +the command and marks any recognized warnings and errors. Pressing `Ctrl+Alt+E` (`^⌘E` | `M-X`) attempts to jump to the source of the next recognized warning or error and `Ctrl+Alt+Shift+E` (`^⌘⇧E` | `M-S-X`) attempts to jump to the previous one. Double-clicking on warnings and errors also jumps to their sources. If |