What I did: Pressing the home key on a to-do task
What happened: The app becomes non-responding. Need to force-quit it.
What I expected: The keyboard cursor moves to the beginning of the line.
Things that might be helpful to know (Agenda version, OS and model, etc):
- Agenda version: 1.4 (downloaded directly from the Agenda site)
- OS & model: macOS 10.12.6 on iMac Mid 2011
I’ve obviously reconfigured the behaviour of the home key to expect it to go to the beginning of the line. Here’s what I did:
-
Created DefaultKeyBinding.dict in ~/Library
-
Runs the following code in DefaultKeyBinding.dict
{
/* Remap Home / End keys to be correct /
“\UF729” = “moveToBeginningOfLine:”; / Home /
“\UF72B” = “moveToEndOfLine:”; / End /
“\UF729" = "moveToBeginningOfLineAndModifySelection:"; /* Shift + Home */ "\UF72B” = “moveToEndOfLineAndModifySelection:”; / Shift + End /
“^\UF729” = “moveToBeginningOfDocument:”; / Ctrl + Home /
“^\UF72B” = “moveToEndOfDocument:”; / Ctrl + End /
“^\UF729" = "moveToBeginningOfDocumentAndModifySelection:"; /* Shift + Ctrl + Home */ "^\UF72B” = “moveToEndOfDocumentAndModifySelection:”; / Shift + Ctrl + End */
}