feat:use selection text when searching

pr675
Hufe921 3 years ago
parent 172cb6d88c
commit bcdb2340ae

@ -1071,8 +1071,14 @@ window.onload = function () {
key: KeyMap.F,
ctrl: true,
isGlobal: true,
callback: () => {
callback: (command: Command) => {
const text = command.getRangeText()
searchDom.click()
if (text) {
searchInputDom.value = text
instance.command.executeSearch(text)
setSearchResult()
}
}
},
{

Loading…
Cancel
Save