How can I get a list of potential methods for DefaultKeyBinding.dict?
4
votes
2
answers
718
views
I would like to take more advantage of being able to define shortcuts in the Mac
DefaultKeyBinding.dict
. However I cannot find a comprehensible list of what I can remap. Right now I am searching for every bit of functionality I want to find and hope that someone already posted an answer for that. I have just found that adding
{
"@\UF702" = moveWordLeft:;
"@\UF703" = moveWordRight:;
"@$\UF702" = moveWordLeftAndModifySelection:;
"@$\UF703" = moveWordRightAndModifySelection:;
}
enables me to use ⌘← and ⌘→ to move by word but I would like to extend this to ⌘⌫← and ⌘⌫→ to delete forward and backward until the end of word.
I was trying to find a Apple's Cocoa documentation to get the full list of methods, but so far this is the best I could find: http://www.hcs.harvard.edu/~jrus/site/cocoa-text.html
Any recommendations?
Asked by Ádám Hunyadi
(141 rep)
Apr 29, 2020, 08:12 AM
Last activity: Jun 2, 2024, 03:54 PM
Last activity: Jun 2, 2024, 03:54 PM