chat: fix autocompletion for usernames with dash (#7514)
Github usernames are allowed to contain `-`, but the autocompletion was not working correctly. We added `-` as an allowed character for markdown files. We are not aware of any completions for markdown files, so this should be fine to add. Before:  After:  Release Notes: - Fixed autocompletion for usernames with dash character in the chat message editor Co-authored-by: Remco Smits <62463826+RemcoSmitsDev@users.noreply.github.com>
This commit is contained in:
parent
c1ada087b4
commit
6b598a07d9
1 changed files with 1 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
|||
name = "Markdown"
|
||||
path_suffixes = ["md", "mdx"]
|
||||
word_characters = ["-"]
|
||||
brackets = [
|
||||
{ start = "{", end = "}", close = true, newline = true },
|
||||
{ start = "[", end = "]", close = true, newline = true },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue