Debería haber cavado más antes de preguntar esto ... Se llaman "enlaces de teclas" y cada uno de ellos es configurable desde un archivo de texto. Haga clic en "Preferencias"> "Asignaciones de teclas predeterminadas" para verlas. Copie y pegue los que desea editar en "Preferencias"> "Vinculaciones de teclas de usuario" y cambie el contenido de su corazón.
Aquí está la documentación .
Mi problema era que estaba buscando "atajos de teclado" en lugar de "Atajos de teclas". Whoops ...
Para abordar específicamente la pregunta que tenía sobre cómo replicar las teclas Eliminar, Inicio, Fin y Flecha, modifiqué mi archivo "Vinculaciones de teclas de usuario" para que se vea así:
[
{ "keys": ["shift+backspace"], "command": "right_delete" },
{ "keys": ["ctrl+backspace"], "command": "right_delete" },
{ "keys": ["ctrl+j"], "command": "move", "args": {"by": "characters", "forward": false} },
{ "keys": ["ctrl+l"], "command": "move", "args": {"by": "characters", "forward": true} },
{ "keys": ["ctrl+i"], "command": "move", "args": {"by": "lines", "forward": false} },
{ "keys": ["ctrl+k"], "command": "move", "args": {"by": "lines", "forward": true} },
{ "keys": ["ctrl+shift+j"], "command": "move", "args": {"by": "characters", "forward": false, "extend": true} },
{ "keys": ["ctrl+shift+l"], "command": "move", "args": {"by": "characters", "forward": true, "extend": true} },
{ "keys": ["ctrl+shift+i"], "command": "move", "args": {"by": "lines", "forward": false, "extend": true} },
{ "keys": ["ctrl+shift+k"], "command": "move", "args": {"by": "lines", "forward": true, "extend": true} },
{ "keys": ["ctrl+alt+j"], "command": "move", "args": {"by": "words", "forward": false} },
{ "keys": ["ctrl+alt+l"], "command": "move", "args": {"by": "word_ends", "forward": true} },
{ "keys": ["ctrl+shift+alt+j"], "command": "move", "args": {"by": "words", "forward": false, "extend": true} },
{ "keys": ["ctrl+shift+alt+l"], "command": "move", "args": {"by": "word_ends", "forward": true, "extend": true} },
{ "keys": ["ctrl+,"], "command": "move_to", "args": {"to": "bol", "extend": false} },
{ "keys": ["ctrl+."], "command": "move_to", "args": {"to": "eol", "extend": false} },
{ "keys": ["ctrl+shift+,"], "command": "move_to", "args": {"to": "bol", "extend": true} },
{ "keys": ["ctrl+shift+."], "command": "move_to", "args": {"to": "eol", "extend": true} }
]