Shift Home and Shift End will select to start and end of line.Home and End will go to start and end of line.This remapping does the following in most Mac apps - including Chrome (some apps manage their key handling directly): '^$\UF72B' = moveToEndOfDocumentAndModifySelection: // ctrl-shift-end '^$\UF729' = moveToBeginningOfDocumentAndModifySelection: // ctrl-shift-home '^\UF72B' = moveToEndOfDocument: // ctrl-end '^\UF729' = moveToBeginningOfDocument: // ctrl-home '$\UF72B' = moveToEndOfParagraphAndModifySelection: // shift-end
'$\UF729' = moveToBeginningOfParagraphAndModifySelection: // shift-home '\UF729' = moveToBeginningOfParagraph: // home