fix backspace bug

This commit is contained in:
2025-12-09 12:03:35 -05:00
parent 3ad4176eee
commit 04311187af
3 changed files with 46 additions and 4 deletions

26
odit.sublime-project Normal file
View File

@@ -0,0 +1,26 @@
{
"debugger_configurations":
[
{
"type": "lldb",
"request": "launch",
"name": "Launch",
"program": "${project_path}/src.bin",
"args": [],
"cwd": "${project_path}"
},
],
"build_systems": [
{
"cmd": ["odin", "build", "src", "-debug"],
"name": "odit",
"selector": "source.odin",
"working_dir": "${project_path}"
}
],
"folders": [
{
"path": "."
}
]
}