Browse Source

:art: fix https://github.com/siyuan-note/siyuan/issues/9158

Vanessa 1 year ago
parent
commit
070afd6ec0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/src/protyle/hint/index.ts

+ 1 - 1
app/src/protyle/hint/index.ts

@@ -159,7 +159,7 @@ ${unicode2Emoji(emoji.unicode)}</button>`;
         const currentLineValue = protyle.toolbar.range.startContainer.textContent.substring(0, start) || "";
         const key = this.getKey(currentLineValue, protyle.options.hint.extend);
         if (typeof key === "undefined" ||
-            (   // 除 emoji 提示外,其余在 code 内移动不进行提示
+            (   // 除 emoji 提示外,其余在 code 内移动不进行提示 https://github.com/siyuan-note/siyuan/issues/9158
                 this.splitChar !== ":" && (
                     hasClosestByAttribute(protyle.toolbar.range.startContainer, "data-type", "NodeCodeBlock") ||
                     hasClosestByAttribute(protyle.toolbar.range.startContainer, "data-type", "code")