Fix #819: associate .ltx with TeX filetype

This commit is contained in:
Jerome Lelong 2018-09-24 21:36:22 +02:00
parent 0214a09f80
commit 8cc7d68a22
3 changed files with 4 additions and 2 deletions

View File

@ -19,7 +19,7 @@ One million downloads! This project won't be successful without contributions fr
- View PDF on-the-fly (in VS Code or browser).
- Direct and reverse SyncTeX. Click to jump between location in `.tex` source and PDF and vice versa.
- Intellisense, including completions for bibliography keys (`\cite{}`) and labels (`\ref{}`).
- Syntax highlighting (colorized code) for `.tex` / `.bib` files and more (`.cls`, `.dtx`, `.sty`)
- Syntax highlighting (colorized code) for `.tex` / `.bib` files and more (`.cls`, `.dtx`, `.ltx`, `.sty`)
- LaTeX log parser, with errors and warnings in LaTeX build automatically reported in VS Code.
- Real-time linting of LaTeX with ChkTeX to pick up common LaTeX issues as you type.
- Code Actions (automatic fixes) are offered for many issues found by ChkTeX.

View File

@ -55,7 +55,8 @@
".sty",
".cls",
".bbx",
".cbx"
".cbx",
".ltx"
],
"configuration": "./syntax/syntax.json"
},

View File

@ -8,6 +8,7 @@
<string>cls</string>
<string>bbx</string>
<string>cbx</string>
<string>ltx</string>
</array>
<key>name</key>
<string>TeX</string>