I trying to rebind ctrl/shift + ins to copy/paste commands for text selection.
This binding works fine:
<!-- Copy to clipboard (ctrl + ins) -->
<binding>
<keyPressed code="INSERT" modifiers = "ctrl"/>
<command name="copy"/>
</binding>
But this not works:
<!-- Paste from clipboard (shift + ins) -->
<binding>
<keyPressed code="INSERT" modifiers = "shift"/>
<command name="paste" parameter="toOrInto"/>
</binding>
Can you help me?
--
The End

