Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extend range of matching tex keywords #1827

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5068,12 +5068,13 @@
<_comment>TeX Source</_comment>
<alias type="text/x-tex"/>
<magic priority="50">
<match value="\\documentclass" type="string" offset="0:8192"/>
<match value="\\usepackage" type="string" offset="0:8192"/>
<match value="\\documentstyle" type="string" offset="0:8192"/>
<match value="\\input" type="string" offset="0"/>
<match value="\\section" type="string" offset="0"/>
<match value="\\setlength" type="string" offset="0"/>
<match value="\\documentstyle" type="string" offset="0"/>
<match value="\\chapter" type="string" offset="0"/>
<match value="\\documentclass" type="string" offset="0"/>
<match value="\\relax" type="string" offset="0"/>
<match value="\\contentsline" type="string" offset="0"/>
</magic>
Expand Down