Sé que es posible en xcode con + + [ o + + ] . Pero no funciona en Notes. ¿Alguna idea?
Respuestas
¿Demasiados anuncios?Construyendo sobre Respuesta de David P. y un poco de Google-fu, he llegado a lo siguiente. He incluido los comentarios explicativos porque me han resultado muy útiles.
/* ~/Library/KeyBindings/DefaultKeyBinding.Dict
Here is a rough cheatsheet for syntax.
Key Modifiers
^ : Ctrl
$ : Shift
~ : Option (Alt)
@ : Command (Apple)
# : Numeric Keypad
Non-Printable Key Codes
Standard
Up Arrow: \UF700 Backspace: \U0008 F1: \UF704
Down Arrow: \UF701 Tab: \U0009 F2: \UF705
Left Arrow: \UF702 Escape: \U001B F3: \UF706
Right Arrow: \UF703 Enter: \U000A ...
Insert: \UF727 Page Up: \UF72C
Delete: \UF728 Page Down: \UF72D
Home: \UF729 Print Screen: \UF72E
End: \UF72B Scroll Lock: \UF72F
Break: \UF732 Pause: \UF730
SysReq: \UF731 Menu: \UF735
Help: \UF746
OS X
delete: \U007F
For a good reference see http://osxnotes.net/keybindings.html.
NOTE: typically the Windows 'Insert' key is mapped to what Macs call 'Help'.
Regular Mac keyboards don't even have the Insert key, but provide 'Fn' instead,
which is completely different.
*/
{
"~\UF700" = (
"moveToBeginningOfLine:",
"deleteToEndOfLine:",
"deleteForward:",
"moveUp:",
"yank:",
"insertNewline:",
"moveUp:"
);
"~\UF701" = (
"moveToBeginningOfLine:",
"deleteToEndOfLine:",
"deleteForward:",
"moveDown:",
"yank:",
"insertNewline:",
"moveUp:"
);
}
El comportamiento imita el de las combinaciones de teclas Opción Arriba y Opción Abajo de Visual Studio Code, que mueven la línea hacia arriba o hacia abajo respectivamente y hacen que el cursor siga la línea. (Sin embargo, el cursor salta al principio de la línea)
Esto debería ser posible utilizando los enlaces de Cocoa - ver esta respuesta:
https://superuser.com/a/283948/659069
--
El ejemplo siguiente (tomado del enlace anterior) vincula un atajo de "mover la línea hacia abajo" a Opt-DownArrow - usted debería ser capaz de modificar esto para satisfacer sus necesidades.
Create the file ~/Library/Keybindings/DefaultKeyBinding.dict and enter the following:
{
"~\UF701" = (
"moveToBeginningOfLine:",
"deleteToEndOfLine:",
"deleteForward:",
"moveDown:",
"yank:",
"insertNewline:",
"moveUp:"
);
}
This will add the shortcut Opt-DownArrow for a line-swap command (with the line below) to every application supporting the Cocoa text system.