Pressing home key crashes the app

What I did: Pressing the home key on a to-do task

32 AM

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:

  1. Created DefaultKeyBinding.dict in ~/Library

  2. 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 */
    }

Sorry about that. This is a known issue, and we have fixed it in an upcoming release.

It seems to only affect the first line of a note, when it is a list. If you avoid that for now, it should be OK.

Thanks! Looking forward to the update.

1 Like