From: Bernard D. <bde...@us...> - 2017-04-27 17:34:38
|
This is fixed now by implementing a *command-clear* binding bound to the new *endLineDelete* proc. Not entirely satisfactory though since laptops usually do not have a *forward-delete* (aka *Clear* or *Suppr*) key. Implementing a *cmd-fn-backward* binding is feasible but that would have to be done in the core as a special non-standard case, which I am reluctant to do. Using the new *endLineDelete* proc, you might create your own binding for this: for instance ``` binding create {cov delete} endLineDelete ``` which binds to `Option-Command-Delete` (this is *backward-delete*) . Changes committed to the repository ([rev. 1327](http://sourceforge.net/p/alphacocoa/code/1327/)). --- ** [tickets:#132] keyboard shortcut for moving and deleting text** **Status:** open **Created:** Wed Apr 26, 2017 10:12 AM UTC by Sylvain Loiseau **Last Updated:** Thu Apr 27, 2017 10:09 AM UTC **Owner:** nobody - alt-left or alt-right arrow: move one word backward / forward - alt-backward or alt-fn-backward : delete one word backward / forward - cmd-left or cmd-right arrow: move at the begining or the end of the line - cmd-backward: delete up to the begining of the line What about having the symetrical : cmd-fn-backward: for deleting up to the end of the line? Maybe inconsistent with other keyboards convention... --- Sent from sourceforge.net because alp...@li... is subscribed to https://sourceforge.net/p/alphacocoa/tickets/ To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/alphacocoa/admin/tickets/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |