allow single letter words in latex (#171981)

fixes https://github.com/microsoft/vscode/issues/170588
This commit is contained in:
Johannes Rieken
2023-01-23 14:25:37 +01:00
committed by GitHub
parent 3db45fbd42
commit b9bb22d1ba

View File

@@ -114,7 +114,7 @@
}, },
"autoCloseBefore": ";:.,={}])>\\` \n\t$", "autoCloseBefore": ";:.,={}])>\\` \n\t$",
"wordPattern": { "wordPattern": {
"pattern": "(\\p{Alphabetic}|\\p{Number}|\\p{Nonspacing_Mark}){2,}", "pattern": "(\\p{Alphabetic}|\\p{Number}|\\p{Nonspacing_Mark}){1,}",
"flags": "u" "flags": "u"
} }
} }