Zulip Chat Archive
Stream: new members
Topic: Suggestion for web editor
Matt Diamond (Sep 02 2025 at 17:26):
Is there a way to change the web editor so that it doesn't show autocomplete suggestions if you're trying to type a symbol shortcut (e.g. \l to get the left arrow)? It makes it more difficult to use symbol shortcuts because hitting space or tab will often select the autocomplete suggestion rather than entering the symbol.
Matt Diamond (Jan 20 2026 at 03:58):
Just wanted to bump this in case anyone has a suggestion, as this continues to be a pain point whenever I'm using the web editor. It would be nice if the web editor temporarily disabled autocomplete while you're inputting a symbol shortcut (i.e. when you type \ and the subsequent text is underlined).
Jakub Nowak (Jan 20 2026 at 06:35):
Which web editor do you mean? I don't have this problem on https://live.lean-lang.org/. I typed the following, and it doesn't complete l for me.
example := \l
And it does complete if I type example := l
Matt Diamond (Jan 20 2026 at 15:41):
it looks like autocomplete draws from existing text... try this:
/-- lalala -/
example :=
Jakub Nowak (Jan 21 2026 at 02:06):
Ah, I see. I've never noticed this being a problem. For me it doesn't complete after clicking Space, nor Enter. Only with Tab.
Matt Diamond (Jan 21 2026 at 02:08):
that's a good point, I should just stick to using the space bar instead of tab
Jakub Nowak (Jan 21 2026 at 02:09):
It would be nice to add completions for \, so that it shows all abbreviations. Implementing this would also solve your problem.
Last updated: Feb 28 2026 at 14:05 UTC