Le macro di Maestro Maestro hanno spesso ritardi notevoli e non è proprio il metodo migliore per rimappare la tastiera.
Potresti creare ~/Library/KeyBindings/
e salvare una lista di proprietà come questa come DefaultKeyBinding.dict invece:
{
"~b" = moveWordBackward:;
"~f" = moveWordForward:;
"~F" = moveWordForwardAndModifySelection:;
"~B" = moveWordForwardAndModifySelection:;
"~d" = deleteWordForward:;
"~u" = (uppercaseWord:, moveForward:, moveForward:);
"~l" = (lowercaseWord:, moveForward:, moveForward:);
"~c" = (capitalizeWord:, moveForward:, moveForward:);
"~v" = pageUp:;
"~V" = pageUpAndModifySelection:;
"^V" = pageDownAndModifySelection:;
"^ " = setMark:;
"^w" = deleteToMark:;
"~<" = moveToBeginningOfDocument:;
"~>" = moveToEndOfDocument:;
"~/" = complete:;
"^l" = selectParagraph:;
"~h" = selectParagraph:;
"^_" = undo:;
"^/" = undo:;
"^x" = {
"^x" = swapWithMark:;
"^m" = selectToMark:;
};
}
DefaultKeyBinding.dict non funziona in alcune applicazioni come Xcode o Firefox. Le combinazioni di tasti che inseriscono gli stati di chiavi morte (come ⌥U nel layout di tastiera degli Stati Uniti) non possono essere riassegnate. Esistono anche metodi come performClose:
e openDocument:
, ma non funzionano in tutte le applicazioni. Vedi link o link .
Un'altra opzione è usare un private.xml come questo con KeyRemap4Macbook :
<?xml version="1.0"?>
<root>
<item>
<name>test</name>
<identifier>test</identifier>
<not>{{EMACS_MODE_IGNORE_APPS}}</not>
<autogen>__KeyToKey__ KeyCode::P, VK_CONTROL | ModifierFlag::NONE, KeyCode::CURSOR_UP</autogen>
<autogen>__KeyToKey__ KeyCode::N, VK_CONTROL | ModifierFlag::NONE, KeyCode::CURSOR_DOWN</autogen>
<autogen>__KeyToKey__ KeyCode::B, VK_CONTROL | ModifierFlag::NONE, KeyCode::CURSOR_LEFT</autogen>
<autogen>__KeyToKey__ KeyCode::F, VK_CONTROL | ModifierFlag::NONE, KeyCode::CURSOR_RIGHT</autogen>
<autogen>__KeyToKey__ KeyCode::P, VK_CONTROL | VK_SHIFT | ModifierFlag::NONE, KeyCode::CURSOR_UP, VK_SHIFT</autogen>
<autogen>__KeyToKey__ KeyCode::N, VK_CONTROL | VK_SHIFT | ModifierFlag::NONE, KeyCode::CURSOR_DOWN, VK_SHIFT</autogen>
<autogen>__KeyToKey__ KeyCode::B, VK_CONTROL | VK_SHIFT | ModifierFlag::NONE, KeyCode::CURSOR_LEFT, VK_SHIFT</autogen>
<autogen>__KeyToKey__ KeyCode::F, VK_CONTROL | VK_SHIFT | ModifierFlag::NONE, KeyCode::CURSOR_RIGHT, VK_SHIFT</autogen>
<autogen>__KeyToKey__ KeyCode::B, VK_OPTION | ModifierFlag::NONE, KeyCode::CURSOR_LEFT, VK_OPTION</autogen>
<autogen>__KeyToKey__ KeyCode::F, VK_OPTION | ModifierFlag::NONE, KeyCode::CURSOR_RIGHT, VK_OPTION</autogen>
<autogen>__KeyToKey__ KeyCode::B, VK_OPTION | VK_SHIFT | ModifierFlag::NONE, KeyCode::CURSOR_LEFT, VK_OPTION | VK_SHIFT</autogen>
<autogen>__KeyToKey__ KeyCode::F, VK_OPTION | VK_SHIFT | ModifierFlag::NONE, KeyCode::CURSOR_RIGHT, VK_OPTION | VK_SHIFT</autogen>
<autogen>__KeyToKey__ KeyCode::D, VK_OPTION | ModifierFlag::NONE, KeyCode::FORWARD_DELETE, VK_OPTION</autogen>
<autogen>__KeyToKey__ KeyCode::V, VK_OPTION | ModifierFlag::NONE, KeyCode::PAGEUP</autogen>
<autogen>__KeyToKey__ KeyCode::V, VK_OPTION | VK_SHIFT | ModifierFlag::NONE, KeyCode::PAGEUP, VK_SHIFT</autogen>
<autogen>__KeyToKey__ KeyCode::V, VK_CONTROL | VK_SHIFT | ModifierFlag::NONE, KeyCode::PAGEDOWN, VK_SHIFT</autogen>
</item>
</root>
I codici chiave devono essere modificati per layout di tastiera come Dvorak o Colemak. EMACS_MODE_IGNORE_APPS include emulatori di terminale, applicazioni Emacs e VM, ma puoi anche aggiungi elementi appdef personalizzati .
Esiste anche un gruppo modalità Emacs , ma ad esempio l'impostazione per cambiare da ⌥F a ⌥ → cambia anche ⌥⌘F a ⌥⌘ →.