Skip to content

Commit

Permalink
allow single letter words in latex (#171981)
Browse files Browse the repository at this point in the history
fixes #170588
  • Loading branch information
jrieken committed Jan 23, 2023
1 parent 3db45fb commit b9bb22d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/latex/latex-language-configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}

0 comments on commit b9bb22d

Please sign in to comment.