Apple Setup: Difference between revisions

From bibbleWiki
Jump to navigation Jump to search
Created page with "=Keyboard Mapping= To get the keyboard home + end keys<br> Create a file in ~/Library/KeyBindings/DefaultKeyBinding.dict<br> <syntaxhighlight> { "\UF729" = moveToBeginningOfParagraph:; // home "\UF72B" = moveToEndOfParagraph:; // end "$\UF729" = moveToBeginningOfParagraphAndModifySelection:; // shift-home "$\UF72B" = moveToEndOfParagraphAndModifySelection:; // shift-end "^\UF729" = moveToBeginningOfDocument:; // ctrl-home "^\UF72B" = moveToEndOfDocument:; /..."
 
 
Line 1: Line 1:
=Keyboard Mapping=
=Keyboard Mapping=
To get the keyboard home + end keys<br>
To get the keyboard home + end keys<br>
<br>
Create a file in ~/Library/KeyBindings/DefaultKeyBinding.dict<br>
Create a file in ~/Library/KeyBindings/DefaultKeyBinding.dict<br>
<syntaxhighlight>
<syntaxhighlight>

Latest revision as of 06:23, 9 July 2022

Keyboard Mapping

To get the keyboard home + end keys

Create a file in ~/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
}