Sublime Text小键盘回车失效解决办法

【首选项】-【快捷键设置】-【Default(Windows).sublime-keymap】

[
    //放前面,搜索就不会变成回车了
    { "keys": ["keypad_enter"], "command": "insert", "args": {"characters": "\n"} },
    { "keys": ["keypad_enter"], "command": "find_next", "context":
        [{"key": "panel", "operand": "find"}, {"key": "panel_has_focus"}]
    },
    { "keys": ["keypad_enter"], "command": "find_next", "context":
        [{"key": "panel", "operand": "replace"}, {"key": "panel_has_focus"}]
    },
    { "keys": ["keypad_enter"], "command": "hide_panel", "context":
        [{"key": "panel", "operand": "incremental_find"}, {"key": "panel_has_focus"}]
    }
]

你可能感兴趣的:(Sublime Text小键盘回车失效解决办法)