崇高的复古键重新映射

Sublime vintage key remapping

我正在使用 ST3 并尝试将此键重新映射为 shift+k

{ "keys": ["$"], "command": "set_motion", "args": {
    "motion": "vi_move_to_hard_eol",
    "motion_args": {"repeat": 1, "extend": true},
    "inclusive": true,
    "clip_to_line": true },
    "context": [{"key": "setting.command_mode"}]
},

此外,我尝试将此键重新映射到 shift+j...但没有成功

{ "keys": ["^"], "command": "set_motion", "args": {
    "motion": "vi_move_to_first_non_white_space_character",
    "motion_args": {"extend": true },
    "clip_to_line": true },
    "context": [{"key": "setting.command_mode"}]
},

请告诉我如何让它工作

只使用大写字符:

{ "keys": ["K"], "command": "set_motion", "args": {
    "motion": "vi_move_to_hard_eol",
    "motion_args": {"repeat": 1, "extend": true},
    "inclusive": true,
    "clip_to_line": true },
    "context": [{"key": "setting.command_mode"}]
},