diff options
author | nyamatongwe <unknown> | 2002-11-17 03:21:17 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2002-11-17 03:21:17 +0000 |
commit | 720734fe8d17e760216d1127a0ae440204826c03 (patch) | |
tree | f8016351fc37db822f86bdb13158ac648d4a1954 /src/KeyMap.cxx | |
parent | 562fe1ca25bbcaa8f7aab46ca4a3b080969cbb9f (diff) | |
download | scintilla-mirror-720734fe8d17e760216d1127a0ae440204826c03.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 'src/KeyMap.cxx')
-rw-r--r-- | src/KeyMap.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/KeyMap.cxx b/src/KeyMap.cxx index c91e6c6cc..4e580e8e6 100644 --- a/src/KeyMap.cxx +++ b/src/KeyMap.cxx @@ -127,6 +127,7 @@ const KeyToCommand KeyMap::MapDefault[] = { {'L', SCI_CTRL, SCI_LINECUT}, {'L', SCI_CSHIFT, SCI_LINEDELETE}, {'T', SCI_CTRL, SCI_LINETRANSPOSE}, + {'D', SCI_CTRL, SCI_LINEDUPLICATE}, {'U', SCI_CTRL, SCI_LOWERCASE}, {'U', SCI_CSHIFT, SCI_UPPERCASE}, {0,0,0}, |