diff options
author | nyamatongwe <devnull@localhost> | 2002-11-17 03:21:17 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2002-11-17 03:21:17 +0000 |
commit | a77e6114d5f88b32e2abb8f3bcb58e583b0a4fe0 (patch) | |
tree | f8016351fc37db822f86bdb13158ac648d4a1954 /include/Scintilla.h | |
parent | f3c7458a480cd229e7273da85291c74f50847ee6 (diff) | |
download | scintilla-mirror-a77e6114d5f88b32e2abb8f3bcb58e583b0a4fe0.tar.gz |
Jakub Vrána has added a CSS (Cascading Style Sheet) lexer to Scintilla.
This is separate to the HTML lexer and is only invoked for stand-alone
CSS files, not for the STYLE section of HTML files. He also made some
other additions. There is a Line Duplicate command which is bound to
Ctrl+D. PHP lexing has been improved.
Diffstat (limited to 'include/Scintilla.h')
-rw-r--r-- | include/Scintilla.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index f81646e39..7cc9c6aad 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -432,6 +432,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCI_LINECUT 2337 #define SCI_LINEDELETE 2338 #define SCI_LINETRANSPOSE 2339 +#define SCI_LINEDUPLICATE 2404 #define SCI_LOWERCASE 2340 #define SCI_UPPERCASE 2341 #define SCI_LINESCROLLDOWN 2342 |