Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .vscode/metacoq.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
"path": ".."
}
],
"settings": {
"settings": {

// A list of arguments to send to coqtop. Use seperate elements instead of spaces to seperate each argument, especially when a flag expects another trailing argument, e.g. `["-I","./bin"]` instead of `["-I ./bin"]`
"coqtop.args": [
"-I", "template-coq",
// "-bt", get backtraces from Coq on errors
Expand All @@ -20,6 +22,9 @@
"-R", "translations", "MetaCoq.Translations",
"-R", "test-suite/plugin-demo/theories", "MetaCoq.ExtractedPluginDemo",
"-R", "test-suite", "MetaCoq.TestSuite"
]
],

// When enabled, will trim trailing whitespace when saving a file.
"files.trimTrailingWhitespace": false
}
}