From 66d7eabf5a808a9182540738a140b917fb80a003 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Thu, 16 Mar 2023 11:16:36 +0800 Subject: [PATCH] :art: fix https://github.com/siyuan-note/siyuan/issues/7681 --- app/src/protyle/hint/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/protyle/hint/index.ts b/app/src/protyle/hint/index.ts index ac777580b..577bb311e 100644 --- a/app/src/protyle/hint/index.ts +++ b/app/src/protyle/hint/index.ts @@ -172,7 +172,7 @@ ${unicode2Emoji(emoji.unicode, true)}`; return; } // https://github.com/siyuan-note/siyuan/issues/5083 - if (this.splitChar === "/" || this.splitChar === "、") { + if (!isMobile() && (this.splitChar === "/" || this.splitChar === "、")) { clearTimeout(this.timeId); if (this.enableSlash) { this.genHTML(hintSlash(key, protyle), protyle);