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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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