Newer
Older
{
"name": "latex-workshop",
"displayName": "LaTeX Workshop",
"description": "AIO LaTeX extension to preview, compile, hint, 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"
},
"keywords": [
"latex",
"tex",
"compile",
"preview",
"hint"
],
"commands": [
{
"command": "latex-workshop.compile",
"title": "Compile LaTeX to PDF"
"title": "Show LaTeX"
},
{
"command": "latex-workshop.synctex",
"title": "Show in Preview"
"configuration": {
"type": "object",
"title": "LaTeX Workshop configuration",
"properties": {
"latex-workshop.compiler": {
"type": "string",
"default": "pdflatex",
"description": "LaTeX compiler to use. Default: pdflatex."
},
"latex-workshop.compile_argument": {
"type": "string",
"default": "-synctex=1 -interaction=nonstopmode -file-line-error",
"description": "Compiler options to use. Default: -synctex=1 -interaction=nonstopmode -file-line-error."
},
"latex-workshop.compile_workflow": {
"type": "array",
"default": [
"%compiler% %arguments% %document%",
"bibtex %document%",
"%compiler% %arguments% %document%",
"%compiler% %arguments% %document%"
],
"description": "Sequence of commands to compile LaTeX to PDF. Available placeholders: %compiler%, %arguments%, %document%."
},
"latex-workshop.compile_on_save": {
"type": "boolean",
"default": true,
"description": "Compile LaTeX when user saves LaTeX source file. Default: true."
"editor/context": [
{
"when": "resourceLangId == latex",
"command": "latex-workshop.synctex",
"group": "navigation"
}
],
"editor/title": [
{
"when": "editorLangId == latex",
"command": "latex-workshop.preview",
"group": "navigation"
},
{
"when": "resourceScheme == latex-workshop-preview",
"command": "latex-workshop.source",
"group": "navigation"
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
"child-process-promise": "^2.2.0",
"hasbin": "^1.2.3"
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "^1.0.0",
"mocha": "^2.3.3",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
}
}