Newer
Older
"name": "latex-workshop",
"displayName": "LaTeX Workshop",
"description": "Boost LaTeX typesetting efficiency with preview, compile, autocomplete, colorize, and more.",
"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": [
],
"main": "./out/src/main",
"contributes": {
"languages": [
"aliases": [
"TeX",
"tex"
],
"extensions": [
".sty",
".cls",
".bbx",
".cbx"
],
"configuration": "./syntax/syntax.json"
},
"aliases": [
"LaTeX",
"latex"
],
"extensions": [
".tex"
],
"aliases": [
"BibTeX",
"bibtex"
],
"extensions": [
".bib"
]
},
{
"aliases": [
"LaTeX Beamer"
],
"configuration": "./syntax/syntax.json"
},
{
"aliases": [
"LaTeX Memoir"
],
"configuration": "./syntax/syntax.json"
},
{
"aliases": [
"LaTeX Log"
],
"extensions": [
".log"
]
"scopeName": "text.tex",
"path": "./syntax/TeX.plist"
},
"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",
{
"command": "latex-workshop.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 root LaTeX 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."
"latex-workshop.linter_command": {
"type": "string",
"default": "chktex -q -v0 %DOC%",
"description": "Linter command to check LaTeX syntax in real time.\nNow supports chktex.\nPlaceholder %DOC% is used to represent the root LaTeX file name (with extension)."
},
"latex-workshop.linter_interval": {
"type": "number",
"default": "2000",
"description": "Defines the time interval in milliseconds between invoking LaTeX linter"
},
"latex-workshop.show_debug_log": {
"type": "boolean",
"default": true,
"description": "Display LaTeX Workshop debug log in output panel.\nThis property defines whether LaTeX Workshop will output its debug log to the log panel."
"when": "resourceLangId == latex",
"command": "latex-workshop.build",
"group": "navigation@100"
},
{
"when": "resourceLangId == latex",
"command": "latex-workshop.view",
"group": "navigation@101"
},
{
"when": "resourceLangId == latex",
"command": "latex-workshop.tab",
"group": "navigation@102"
},
{
"when": "resourceLangId == latex",
"command": "latex-workshop.synctex",
"group": "navigation@103"
}
]
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"capabilities": {
"completionProvider": {
"resolveProvider": "true"