Skip to content

Commit 4a8aad2

Browse files
committed
fix(commands): force debug with FlutterDebug command
1 parent b2ec4e0 commit 4a8aad2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/flutter-tools.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ end
2323
local function setup_commands()
2424
-- Commands
2525
command("FlutterRun", function(data) commands.run_command(data.args) end, { nargs = "*" })
26-
command("FlutterDebug", function(data) commands.run_command(data.args) end, { nargs = "*" })
26+
command("FlutterDebug", function(data) commands.run_command(data.args, true) end, { nargs = "*" })
2727
command("FlutterLspRestart", lsp.restart)
2828
command("FlutterAttach", commands.attach)
2929
command("FlutterDetach", commands.detach)

0 commit comments

Comments
 (0)