This commit is contained in:
parent
61f73a3132
commit
94f5ede090
1 changed files with 2 additions and 3 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Reference in a new issue