Skip to content

Commit

Permalink
feat: lapce run toml
Browse files Browse the repository at this point in the history
  • Loading branch information
technobaboo committed Mar 10, 2024
1 parent 15f771f commit 7318d53
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .lapce/run.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# The run config is used for both run mode and debug mode

[[configs]]
# the name of this task
name = "task"

# the type of the debugger. If not set, it can't be debugged but can still be run
type = "lldb"

# the program to run
program = "cargo"

# the program arguments, e.g. args = ["arg1", "arg2"], optional
args = ["lrun", "--", "-f"]

# current working directory, optional
# cwd = "${workspace}"

# enviroment variables, optional
# [configs.env]
# VAR1 = "VAL1"
# VAR2 = "VAL2"

# task to run before the run/debug session is started, optional
# [configs.prelaunch]
# program = "cargo"
# args = [
# "build",
# ]

0 comments on commit 7318d53

Please sign in to comment.