Files
orchid/orchid.code-workspace
Lawrence Bethlenfalvy 9d35ba8040 Changes in api and upwards
- Removed out-of-stack error reporting
- Revised module system to match previous Orchid system
- Errors are now in a Vec everywhere
- Implemented atoms and lexer
- Started implementation of line parser
- Tree is now ephemeral to avoid copying Atoms held inside
- Moved numbers into std and the shared parser into base
- Started implementation of Commands
2024-07-28 23:59:55 +02:00

51 lines
1.2 KiB
Plaintext

{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.rulers": [
100 // Important; for accessibility reasons, code cannot be wider than 100ch
],
"[markdown]": {
"editor.unicodeHighlight.ambiguousCharacters": false,
"editor.unicodeHighlight.invisibleCharacters": false,
"diffEditor.ignoreTrimWhitespace": false,
"editor.wordWrap": "bounded",
"editor.wordWrapColumn": 80,
"editor.quickSuggestions": {
"comments": "off",
"strings": "off",
"other": "off"
},
"editor.lineNumbers": "off",
"editor.glyphMargin": false,
"editor.rulers": [],
"editor.guides.indentation": false,
"editor.formatOnSave": true,
"editor.formatOnType": true,
},
"rust-analyzer.showUnlinkedFileNotification": false,
"rust-analyzer.checkOnSave": true,
"rust-analyzer.check.command": "clippy",
"rust-analyzer.rustfmt.extraArgs": [
"+nightly"
],
"files.associations": {
"*.mjsd": "markdown"
},
"swissknife.notesEnabled": false,
},
"extensions": {
"recommendations": [
"maptz.regionfolder",
"tamasfe.even-better-toml",
"yzhang.markdown-all-in-one",
"gruntfuggly.todo-tree",
"vadimcn.vscode-lldb",
"rust-lang.rust-analyzer",
"fill-labs.dependi"
]
},
}