diff options
| author | nyamatongwe <unknown> | 2000-03-22 12:16:54 +0000 |
|---|---|---|
| committer | nyamatongwe <unknown> | 2000-03-22 12:16:54 +0000 |
| commit | 8215e26730058344bf706cafd76048703a283151 (patch) | |
| tree | 7c44f53d74ea3a4303084e24b5a40e8139bc9a01 /include | |
| parent | e20515d797effa6a135a714a90841c55f89c6111 (diff) | |
| download | scintilla-mirror-8215e26730058344bf706cafd76048703a283151.tar.gz | |
Split UndoHistory out of CellBuffer.
Fixed coalescing of nodes in the undo history.
Added LineCut, LineDelete, LineTranspose, UpperCase and LowerCase keyboard
commands and added keys for them.
Added UUID lexical class to CPP lexer.
Diffstat (limited to 'include')
| -rw-r--r-- | include/SciLexer.h | 1 | ||||
| -rw-r--r-- | include/Scintilla.h | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index f3f97b7ae..1e6542219 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -52,6 +52,7 @@ #define SCE_C_OPERATOR 10 #define SCE_C_IDENTIFIER 11 #define SCE_C_STRINGEOL 12 +#define SCE_C_UUID 13 // Lexical states for SCLEX_HTML, SCLEX_xML #define SCE_H_DEFAULT 0 diff --git a/include/Scintilla.h b/include/Scintilla.h index a320fccbd..822b2ea9d 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -279,6 +279,11 @@ extern "C" { #define SCI_ZOOMOUT SCI_START + 334 #define SCI_DELWORDLEFT SCI_START + 335 #define SCI_DELWORDRIGHT SCI_START + 336 +#define SCI_LINECUT SCI_START + 337 +#define SCI_LINEDELETE SCI_START + 338 +#define SCI_LINETRANSPOSE SCI_START + 339 +#define SCI_LOWERCASE SCI_START + 340 +#define SCI_UPPERCASE SCI_START + 341 #define SCI_LINELENGTH SCI_START + 350 #define SCI_BRACEHIGHLIGHT SCI_START + 351 |
