Skip to content

Commit

Permalink
🧑 💻 Add few settings and automation tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
raidgar98 committed Feb 3, 2023
1 parent 56c04ad commit d77c7be
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 2 deletions.
9 changes: 9 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": true,
"cwd": "${fileDirname}"
},
{
"name": "(gdb) Launch DrogonCPP server",
"type": "cppdbg",
Expand Down
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,5 +82,8 @@
"drogon",
"tparam",
"trantor"
"deserializacji",
"serializację",
"tparam"
]
}
24 changes: 22 additions & 2 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,36 @@
"version": "2.0.0",
"tasks": [
{
"label": "Generate PDF from this LaTeX file",
"label": "Re-run pdflatex for this LaTeX file",
"isBackground": true,
"options": {
"cwd": "${fileDirname}"
},
"command": "pdflatex",
"args": ["-synctex=1", "-interaction=nonstopmode", "--shell-escape", "${file}"],
"dependsOrder": "sequence",
"args": ["-synctex=1", "-interaction=nonstopmode", "--shell-escape", "${fileBasenameNoExtension}"],
"problemMatcher": [
"$eslint-compact"
]
},
{
"label": "Generate Bibliography for this LaTeX file",
"isBackground": true,
"dependsOrder": "sequence",
"options": {
"cwd": "${fileDirname}"
},
"command": "biber",
"args": ["${fileBasenameNoExtension}"],
},
{
"label": "Generate PDF from this LaTeX file",
"isBackground": true,
"dependsOn":[
"Generate Bibliography for this LaTeX file",
"Re-run pdflatex for this LaTeX file",
],
"dependsOrder": "sequence",
}
]
}

0 comments on commit d77c7be

Please sign in to comment.