Setting up windows using project lua file

This commit is contained in:
Krzosa Karol
2025-05-13 12:42:11 +02:00
parent 2e9147c47d
commit cf72182d56
7 changed files with 49 additions and 25 deletions

13
init.project.lua Normal file
View File

@@ -0,0 +1,13 @@
FKey[2] = "remedybg.exe build\\te.exe"
FKey[5] = "remedybg.exe continue-execution"
FKey[9] = function () return 'remedybg.exe add-breakpoint-at-file '..GetFilename()..' '..tostring(GetLine()) end
FKey[10] = function () return 'remedybg.exe run-to-cursor '..GetFilename()..' '..tostring(GetLine()) end
function OnInit()
Open("init.project.lua")
Split(VERTICAL)
Open("src/text_editor/todo.txt")
Split(HORIZONTAL)
Open("src/text_editor/commands.cpp")
end