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 }
    ]
}

]

posted @ 2025-08-05 09:05  神一样的存在  阅读(12)  评论(0)    收藏  举报