Reprogram side buttons on mac for browser

broken image
broken image
broken image

Also make sure your editor does not append TXT to the end of it! Note that you need to reboot after creating this file for it to take effect. Shift Ctrl Home and Shift Ctrl End will select to start and end of document.Ctrl Home and Ctrl End will go to start and end of document.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