diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2013-03-17 15:06:31 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2013-03-17 15:06:31 +0100 |
commit | c0ae618dc5e53e03d56a36dc4495e8f59579cefc (patch) | |
tree | 487017132c6bd1fbacea16fe7f380d8badda01a5 | |
parent | a03cc4fc7714d9d81c83c090a37f043d3bcc5f9f (diff) | |
download | sciteco-c0ae618dc5e53e03d56a36dc4495e8f59579cefc.tar.gz |
document buffer editing hooks (ED hooks)
-rw-r--r-- | doc/sciteco.7.template | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/doc/sciteco.7.template b/doc/sciteco.7.template index e2606d7..84e10cc 100644 --- a/doc/sciteco.7.template +++ b/doc/sciteco.7.template @@ -506,6 +506,57 @@ codepoint instead of byte-sized integer. For more details, please refer to this manual's command reference. . +.SS Buffer Editing Hooks +. +When opening or editing a file with the \fBEB\fP command +or when closing a file with the \fBEF\fP command, you +often want to configure the editor for a particular language. +For instance, when opening C++ files you might want to +enable C++ lexing and syntax highlighting automatically. +\*(ST thus provides user-configurable hooks into buffer +editing operations. +Hooks are by default disabled. +To enable them, set bit 5 in the \fBED\fP flags: +.EX +0,32ED +.EE +\*(ST will now execute the macro in Q-Register \(lq0\(rq +(zero) whenever a relevant operation is performed. +The macro will be passed an argument that specifies the +type of operation that has just been performed or is +just about to be performed. +Possible values are defined consecutively so the macro +can branch to the operation using a computed goto. +The different values are defined as follows: +.TP +.B 1 +A file has been \fBadded\fP to the buffer ring. +It may or may not already exist in the file system. +Scintilla lexing should be configured in this hook - it +only has to be done once. +.TP +.B 2 +A buffer has been \fBedited\fP (made the current file). +This hook is also executed after a file has been added to +the buffer ring. +In this hook you may define language-specific auxiliary +macros, for instance. +.TP +.B 3 +A buffer is about to be \fBclosed\fP (removed from the +buffer ring). +.TP +.B 4 +\*(ST is about to \fBexit\fP. +.LP +The side-effects of the hook executions are reversed +when rubbing out the command that resulted in its +execution. +The \*(ST standard library contains a framework +for configuring Scintilla lexing and other useful +hooks (see +.BR lexer.tes ). +. . .SH COMMAND SYNTAX . |