Sublime Text – Ende/End Pos1/Home Knöpfe springen an das Ende / Anfang der Datei am Mac

Unter Preferences > User Bindings folgendes eintragen:

 { "keys": ["end"], "command": "move_to", "args": {"to": "eol"} },
 { "keys": ["home"], "command": "move_to", "args": {"to": "bol"} },
 { "keys": ["shift+end"], "command": "move_to", "args": { "to": "eol", "extend": true } },
 { "keys": ["shift+home"], "command": "move_to", "args": { "to": "bol", "extend": true } },

Quelle: https://www.sublimetext.com/forum/viewtopic.php?f=3&t=5830

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert