allow single letter words in latex (#171981)

fixes https://github.com/microsoft/vscode/issues/170588
pull/171990/head
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
1 changed files with 1 additions and 1 deletions

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"
}
}