Vanessa 2025-11-23 11:53:10 +08:00
parent 347a0473c3
commit 63f2d72673
5 changed files with 17 additions and 8 deletions

View file

@ -99,12 +99,13 @@ export const searchKeydown = (app: App, event: KeyboardEvent) => {
if (searchType !== "asset") {
if (matchHotKey(window.siyuan.config.keymap.editor.general.insertRight.custom, event)) {
const id = currentList.getAttribute("data-node-id");
checkFold(id, (zoomIn, action) => {
checkFold(id, (zoomIn) => {
openFileById({
app,
id,
position: "right",
action: [...action, Constants.CB_GET_HL],
action: zoomIn ? [Constants.CB_GET_FOCUS, Constants.CB_GET_ALL, Constants.CB_GET_HL] :
[Constants.CB_GET_FOCUS, Constants.CB_GET_CONTEXT, Constants.CB_GET_HL],
zoomIn,
scrollPosition: "center"
});
@ -222,11 +223,12 @@ export const searchKeydown = (app: App, event: KeyboardEvent) => {
replace(element, config, edit, false);
} else {
const id = currentList.getAttribute("data-node-id");
checkFold(id, (zoomIn, action) => {
checkFold(id, (zoomIn) => {
openFileById({
app,
id,
action: [...action, Constants.CB_GET_HL],
action: zoomIn ? [Constants.CB_GET_FOCUS, Constants.CB_GET_ALL, Constants.CB_GET_HL] :
[Constants.CB_GET_FOCUS, Constants.CB_GET_CONTEXT, Constants.CB_GET_HL],
zoomIn,
scrollPosition: "center"
});