대체 명령은 here으로 정의됩니다.가 + R
editor.commands.addCommand({
name: "replace",
bindKey: {win: "Ctrl-R", mac: "Command-Option-F"},
exec: function(editor) {
require("ace/config").loadModule("ace/ext/searchbox", function(e) {
e.Search(editor, true)
// take care of keybinding inside searchbox
// this is too hacky :(
var kb = editor.searchBox.$searchBarKb
command = kb.commandKeyBinding["ctrl-h"]
if (command && command.bindKey.indexOf("Ctrl-R") == -1) {
command.bindKey += "|Ctrl-R"
kb.addCommand(command)
}
});
}
});
하지만 내부 명령 부분은 아주 못생긴, 난 문제를 만들기 위해 좋을 것 에 대한 Ctrl 키를 Ctrl 키 + H을 변경하려면 다음 코드를 사용할 수있다
참고 용으로 - 오늘은 작동하지 않습니다. –