Sublime Text 2 – Key Bindings para Apple Bluetooth Keyboard no Ubuntu / * buntu

Você está usando:

  • Ubuntu em seu antigo MacBook
  • Teclado Apple Bluetooth
  • Sublime Text 2

E quer que a Commandchave trabalhe para você?

Inicie o Sublime Text 2 e vá para Preferences> Key Bindings - User, e o arquivo Default (Linux).sublime-keymapserá aberto. Adicione essas linhas para obter a tecla Command de volta.

[
{ "keys": ["super+n"], "command": "new_file" },
{ "keys": ["super+c"], "command": "copy" },
{ "keys": ["super+x"], "command": "cut" },
{ "keys": ["super+v"], "command": "paste" },
{ "keys": ["super+z"], "command": "undo" },
{ "keys": ["super+y"], "command": "redo" },
{ "keys": ["super+shift+z"], "command": "redo" },
{ "keys": ["super+s"], "command": "save" },
{ "keys": ["super+left"], "command": "move_to", "args": { "to": "bol" } },
{ "keys": ["super+right"], "command": "move_to", "args": { "to": "eol" } },
{ "keys": ["super+a"], "command": "select_all" }
]

Referências: