Newer
Older
"name": "latex-workshop",
"displayName": "LaTeX Workshop",
"description": "Boost LaTeX typesetting efficiency with preview, compile, autocomplete, colorize, and more.",
"icon": "img/icon.png",
"version": "0.2.20",
"publisher": "James-Yu",
"license": "MIT",
"homepage": "https://github.com/James-Yu/LaTeX-Workshop",
"repository": {
"type": "git",
"url": "https://github.com/James-Yu/LaTeX-Workshop.git"
},
"engines": {
"vscode": "^1.8.0"
},
"categories": [
"Languages",
"Snippets"
],
"keywords": [
"latex",
"tex",
"compile",
"preview",
"hint"
],
"activationEvents": [
"onLanguage:LaTeX"
],
"main": "./out/src/main",
"contributes": {
"languages": [
{
"id": "TeX",
"aliases": [
"TeX",
"tex"
],
"extensions": [
".sty",
".cls",
".bbx",
".cbx"
],
"configuration": "./syntax/syntax.json"
},
{
"id": "LaTeX",
"aliases": [
"LaTeX",
"latex"
],
"extensions": [
".tex"
],
},
{
"id": "BibTeX",
"aliases": [
"BibTeX",
"bibtex"
],
"extensions": [
".bib"
]
},
{
"id": "LaTeX Beamer",
"aliases": [
"LaTeX Beamer"
],
"configuration": "./syntax/syntax.json"
},
{
"id": "LaTeX Memoir",
"aliases": [
"LaTeX Memoir"
],
"configuration": "./syntax/syntax.json"
},
{
"id": "LaTeX Log",
"aliases": [
"LaTeX Log"
],
"extensions": [
".log"
]
{
"language": "TeX",
"scopeName": "text.tex",
"path": "./syntax/TeX.plist"
},
"path": "./syntax/LaTeX.plist"
},
{
"language": "BibTeX",
"scopeName": "text.bibtex",
"path": "./syntax/Bibtex.plist"
},
{
"language": "LaTeX Beamer",
"scopeName": "text.tex.latex.beamer",
"path": "./syntax/LaTeX Beamer.plist"
},
{
"language": "LaTeX Memoir",
"scopeName": "text.tex.latex.memoir",
"path": "./syntax/LaTeX Memoir.plist"
},
{
"language": "LaTeX Log",
"scopeName": "text.log.latex",
"path": "./syntax/LaTeX Log.plist"
"commands": [
{
"command": "latex-workshop.build",
"title": "Build LaTeX project"
},
{
"command": "latex-workshop.view",
"title": "View PDF file"
},
{
"command": "latex-workshop.tab",
"title": "Open PDF tab"
},
{
"command": "latex-workshop.synctex",
"title": "SyncTeX from LaTeX to PDF"
}
"configuration": {
"type": "object",
"title": "LaTeX Workshop configuration",
"properties": {
"default": ["latexmk -synctex=1 -interaction=nonstopmode -file-line-error -pdf %DOC%"],
"description": "LaTeX toolchain to build project.\nThis property defines the sequence of commands LaTeX Workshop will execute to build the LaTeX project. By default it tries latexmk to compile to PDF.\nPlaceholder %DOC% is used to represent the file name (without '.tex' extension), and will be replaced when executing."
"description": "Build LaTeX after saving LaTeX source file.\nThis property defines whether LaTeX Workshop will execute the LaTeX toolchain command(s) to build the project after new LaTeX contents are saved."
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"capabilities": {
"completionProvider": {
"resolveProvider": "true"