Komodo / KomodoEdit

Komodo Edit is a fast and free multi-language code editor. Written in JS, Python, C++ and based on the Mozilla platform.
http://www.komodoide.com/komodo-edit
Other
2.15k stars 301 forks source link

Cannot disable text cut CTRL-X #2174

Open ghost opened 7 years ago

ghost commented 7 years ago

Short Summary

Cut with CTRL+X will not disable in key bindings.

Steps to Reproduce

  1. Goto Edit / Preferences / Key Bindings

  2. Disable key sequences for all Cut operations

  3. Press CTRL+X at any line and the text still cuts. If i paste with CTRL+V the cut text is pasted.

Expected results

Cut disabled

Actual results

Text is cut anyway.

Platform Information

Komodo Edit or IDE? Edit Komodo Version? 9.3.2 Operating System (and version)? Ubuntu 14.04 64Bit

Additional Information

Nope!

-- eg. Error logs, screenshots, workarounds --

mitchell-as commented 7 years ago

Thanks for the report.

Dev note: Scintilla has its own internal key bindings, and one of them is Ctrl+X: Cut. The solution here would be to clear the keybinding in Scintilla too. (See http://scintilla.org/ScintillaDoc.html#KeyBindings for more information.)