Code: Select all
cd ~/Library/
lsCode: Select all
mkdir KeyBindingsCode: Select all
cd KeyBindingsMake Code: Select all
nano DefaultKeyBinding.dictCode: Select all
{
/* Fix Home (insert mode and 'normal') */
"\\UF729" = "moveToBeginningOfLine:";
"$\\UF729" = "moveToBeginningOfLineAndModifySelection:";
/* Fix 'End (insert mode and normal) */
"\\UF72B" = "moveToEndOfLine:";
"$\\UF72B" = "moveToEndOfLineAndModifySelection:";
/* Fix Page Up / Down */
"\\UF72C" = "pageUp:";
"\\UF72D" = "pageDown:";
}