7EMMJXUITXPQQ5OD54ZVGSU5I2CBLWPB6M7V22VXSP3KDQXPLWIQC
{
"$schema": "https://raw.githubusercontent.com/DanielGavin/ols/master/misc/ols.schema.json",
"collections": [
{
"name": "core",
"path": "/usr/lib/odin/core"
}
],
"enable_document_symbols": true,
"enable_semantic_tokens": false,
"enable_hover": true,
"enable_snippets": true
}
package main
import "core:fmt"
main :: proc() {
x := 10;
fmt.println("Hellope!");
}
{
"version": "2.0.0",
"tasks": [
{
"label": "Build Odin Project",
"type": "shell",
"command": "odin",
"args": [
"build",
"${workspaceFolder}", // Builds the currently open file. Change this to your specific project entry file if needed.
"-out:${workspaceFolder}/build/test",
"-debug"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
}
]
}
{
"python.autoComplete.extraPaths": [
"${workspaceFolder}/sources/poky/bitbake/lib",
"${workspaceFolder}/sources/poky/meta/lib"
],
"python.analysis.extraPaths": [
"${workspaceFolder}/sources/poky/bitbake/lib",
"${workspaceFolder}/sources/poky/meta/lib"
],
"[python]": {
"diffEditor.ignoreTrimWhitespace": false,
"gitlens.codeLens.symbolScopes": [
"!Module"
],
"editor.formatOnType": true,
"editor.wordBasedSuggestions": "off",
"files.trimTrailingWhitespace": false
},
"[shellscript]": {
"files.eol": "\n",
"files.trimTrailingWhitespace": false
}
}
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug",
"program": "${workspaceFolder}/build/test",
"args": [],
"cwd": "${workspaceFolder}"
}
]
}
.git
.DS_Store
build
!build/.gitkeep