MacOS Tips: Difference between revisions
Jump to navigation
Jump to search
Hoppinglife (talk | contribs) Created page with "* Use Magnet for snapping windows. * You can use brew cask for app installations * Use /etc/paths.d for paths." |
Hoppinglife (talk | contribs) mNo edit summary |
||
| (One intermediate revision by the same user not shown) | |||
| Line 2: | Line 2: | ||
* You can use brew cask for app installations | * You can use brew cask for app installations | ||
* Use /etc/paths.d for paths. | * Use /etc/paths.d for paths. | ||
=== Making home and end navigate in-line === | |||
<syntaxhighlight> | |||
$ 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 | |||
} | |||
</syntaxhighlight> | |||
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
}