diff options
| author | nyamatongwe <unknown> | 2011-06-15 23:07:00 +1000 |
|---|---|---|
| committer | nyamatongwe <unknown> | 2011-06-15 23:07:00 +1000 |
| commit | e11e72222237c9b95cd2242aec88421a3dee3452 (patch) | |
| tree | 9587892f3fe3881aba224c4b840430a2e222ca5c /doc/ScintillaDoc.html | |
| parent | 3239f7cbe4d9f86b5eb2429a9819d0ce002659d9 (diff) | |
| download | scintilla-mirror-e11e72222237c9b95cd2242aec88421a3dee3452.tar.gz | |
Added SCMOD_META key modifier for the Control key on OS X.
New version of KeyDown, KeyDownWithModifiers uses a mask of modifiers.
Diffstat (limited to 'doc/ScintillaDoc.html')
| -rw-r--r-- | doc/ScintillaDoc.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 1e541bbb8..5ba329876 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -4446,7 +4446,10 @@ struct Sci_TextToFind { <code>SCK_WIN</code>.</p> <p>The modifiers are a combination of zero or more of <code>SCMOD_ALT</code>, - <code>SCMOD_CTRL</code>, and <code>SCMOD_SHIFT</code>. If you are building a table, you might + <code>SCMOD_CTRL</code>, <code>SCMOD_SHIFT</code>, and <code>SCMOD_META</code>. + On OS X, the Command key is mapped to <code>SCMOD_CTRL</code> and the Control key to + <code>SCMOD_META</code>. + If you are building a table, you might want to use <code>SCMOD_NORM</code>, which has the value 0, to mean no modifiers.</p> <p><b id="SCI_ASSIGNCMDKEY">SCI_ASSIGNCMDKEY(int <a class="jump" |
