This commit is contained in:
Vanessa 2022-10-13 11:53:26 +08:00
parent 61f73a3132
commit 94f5ede090

View file

@ -128,9 +128,8 @@ ${unicode2Emoji(emoji.unicode, true)}</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 提示外,其余在 tag/inline math/inline-code 内移动不进行提示
this.splitChar !== ":" &&
(protyle.toolbar.getCurrentType(protyle.toolbar.range).length > 0 || hasClosestByAttribute(protyle.toolbar.range.startContainer, "data-type", "NodeCodeBlock"))
( // 除 emoji 提示外,其余在 inline-code 内移动不进行提示
this.splitChar !== ":" && hasClosestByAttribute(protyle.toolbar.range.startContainer, "data-type", "NodeCodeBlock")
)
) {
this.element.classList.add("fn__none");