diff options
| author | nyamatongwe <devnull@localhost> | 2011-06-15 23:07:00 +1000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2011-06-15 23:07:00 +1000 |
| commit | 42b2771fab341485972a3084bba49d1f91137d34 (patch) | |
| tree | 31d8dfd3e22f066b94bcbe741ad6f05a5ac9711e /doc/ScintillaDoc.html | |
| parent | 3effc9e6e4668dc6100d70e76a03a63d5248f7f0 (diff) | |
| download | scintilla-mirror-42b2771fab341485972a3084bba49d1f91137d34.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" |
