MacOS Tips: Difference between revisions
Jump to navigation
Jump to search
Hoppinglife (talk | contribs) No edit summary |
Hoppinglife (talk | contribs) mNo edit summary |
||
| Line 1: | Line 1: | ||
* Use Magnet for snapping windows. | * Use Magnet for snapping windows. | ||
* You can use brew cask for app installations | * You can use brew cask for app installations | ||
Latest revision as of 00:52, 17 June 2020
- Use Magnet for snapping windows.
- You can use brew cask for app installations
- Use /etc/paths.d for paths.
$ cat > ~/Library/KeyBindings/DefaultKeyBinding.dict
{
"\UF729" = moveToBeginningOfParagraph:; // home
"\UF72B" = moveToEndOfParagraph:; // end
"$\UF729" = moveToBeginningOfParagraphAndModifySelection:; // shift-home
"$\UF72B" = moveToEndOfParagraphAndModifySelection:; // shift-end
"^\UF729" = moveToBeginningOfDocument:; // ctrl-home
"^\UF72B" = moveToEndOfDocument:; // ctrl-end
"^$\UF729" = moveToBeginningOfDocumentAndModifySelection:; // ctrl-shift-home
"^$\UF72B" = moveToEndOfDocumentAndModifySelection:; // ctrl-shift-end
}