Adding vs code settings

This commit is contained in:
Louis Lacoste 2023-07-01 23:36:45 +02:00
parent d886ad0d8a
commit a08d316fa7

16
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,16 @@
{
"emeraldwalk.runonsave": {
"commands": [
{
"match": ".*\\.Rmd",
"isAsync": true,
"cmd": "Rscript Rmd2Latex-fragment.R '${file}' "
},
{
"match": ".*",
"isAsync": true,
"cmd": "echo ${file} "
}
]
}
}