From 803873f4912964c6c57dd338b88a0c77ca631951 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Tue, 12 Sep 2023 00:00:35 +0800 Subject: [PATCH] :art: fix https://github.com/siyuan-note/siyuan/issues/9158 --- app/src/protyle/hint/index.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/src/protyle/hint/index.ts b/app/src/protyle/hint/index.ts index b018508b1..5ab933e38 100644 --- a/app/src/protyle/hint/index.ts +++ b/app/src/protyle/hint/index.ts @@ -159,8 +159,11 @@ ${unicode2Emoji(emoji.unicode)}`; const currentLineValue = protyle.toolbar.range.startContainer.textContent.substring(0, start) || ""; const key = this.getKey(currentLineValue, protyle.options.hint.extend); if (typeof key === "undefined" || - ( // 除 emoji 提示外,其余在 inline-code 内移动不进行提示 - this.splitChar !== ":" && hasClosestByAttribute(protyle.toolbar.range.startContainer, "data-type", "NodeCodeBlock") + ( // 除 emoji 提示外,其余在 code 内移动不进行提示 + this.splitChar !== ":" && ( + hasClosestByAttribute(protyle.toolbar.range.startContainer, "data-type", "NodeCodeBlock") || + hasClosestByAttribute(protyle.toolbar.range.startContainer, "data-type", "code") + ) ) ) { this.element.classList.add("fn__none");