sublime热键配置
[
// Home键跳转到行首
{
"keys": ["home"],
"command": "move_to",
"args": {"to": "bol", "extend": false},
"context": [
{ "key": "setting.is_widget", "operand": false }
]
},
// End键跳转到行尾
{
"keys": ["end"],
"command": "move_to",
"args": {"to": "eol", "extend": false},
"context": [
{ "key": "setting.is_widget", "operand": false }
]
},
// Shift+Home选中到行首
{
"keys": ["shift+home"],
"command": "move_to",
"args": {"to": "bol", "extend": true},
"context": [
{ "key": "setting.is_widget", "operand": false }
]
},
// Shift+End选中到行尾
{
"keys": ["shift+end"],
"command": "move_to",
"args": {"to": "eol", "extend": true},
"context": [
{ "key": "setting.is_widget", "operand": false }
]
}
]

浙公网安备 33010602011771号