<div id="__MailbirdStyleContent" style="font-size: 10pt;font-family: Arial;color: #000000">Hi all!<div class="mb_sig"></div><div><br></div><div>We have the preference "duplicate (all) CTRL and ALT keys", which makes CTRL-key and ALT/CMD-key combinations identical across all kinds of applications. So, t<span style="font-size: 10pt">hat preference will also work in text fields by default. Workspace, debugger, browse, everywhere.</span></div><div><br></div><div>HOWEVER, there is EXTRA duplication effort in TextEditor's (shifted)-command keyboard shortcut list. There are duplicate entries. See the bottom of TextEditor class >> #initializeShiftCmdKeyShortcuts:</div><div><br></div><div><div><span style="font-size: 13.3333px"><span style="white-space:pre"> </span>1 to: cmds size by: 2 do: [ :i |</span></div><div><span style="font-size: 13.3333px"><span style="white-space:pre">              </span>cmdMap at: ((cmds at: i) asciiValue + 1) put: (cmds at: i + 1).<span style="white-space:pre">                      </span>"plain keys"</span></div><div><span style="font-size: 13.3333px"><span style="white-space:pre">                </span>cmdMap at: ((cmds at: i) asciiValue - 32 + 1) put: (cmds at: i + 1).<span style="white-space:pre">         </span>"shifted keys"</span></div><div><span style="font-size: 13.3333px"><span style="white-space:pre">              </span>cmdMap at: ((cmds at: i) asciiValue - 96 + 1) put: (cmds at: i + 1).<span style="white-space:pre">         </span>"ctrl keys"</span></div><div><span style="font-size: 13.3333px"><span style="white-space:pre"> </span>].</span></div></div><div><br></div><div>Do you need that extra duplication? So, do you want to DISABLE that preference BUT STILL be able to use, for example CTRL+D to trigger a DO-IT in text fields?</div><div><br></div><div>I would say: NO. If I disable the key-duplication PREFERENCE, I want CTRL+H to trigger BACKSPACE and CTRL+D to move the cursor to the end of the line. That's just how control keys work. It would also simplify the code base.</div><div><br></div><div>Your call. :-)</div><div><br></div><div>Happy holidays,</div><div>Marcel</div></div>