-
Notifications
You must be signed in to change notification settings - Fork 300
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
terminal and externalTerminal console configuration should warn that they are not supported for Flutter #3767
Comments
Can you clarify why you're trying to run in this mode? The usual reason is to read from |
Sorry, I just noticed you explained this in your message:
However I'm still not certain what the goal is. When running using the external terminal you'll lose the ability to evaluate expressions or see structured error output, so I think the only thing that would show up in the terminal (if it were possible to run this way) would be the output of |
Yeap, now that I'm thinking again, it does seem impractical. I was just trying to condensate everything in a single screen, having the terminal with the logs below the emulator and the vscode filling up the rest of the screen, something like:
Which would be "the same" as running from the terminal, but then I lose some of the plugin's beauty. Maybe then we could have a new |
Using
That's valid - it shouldn't silently ignore it. I'll use this issue for adding a warning. Unfortunately, until VS Code supports multiple Windows (which I think lots of people want, but may be blocked on electron) I don't think there's a great solution to this. When it does, I would expect you'd be able to detach the Debug Console and put it wherever you'd like though, which probably addresses your need? |
helped me, thanks |
Describe the bug:
It seems that whenever we set
"console": "externalTerminal"
or"console": "terminal"
in thelaunch.json
for Flutter apps, the configuration is being ignored and the Flutter logs are displayed in the Debug Console, even if you add"dart.cliConsole": "externalTerminal"
in thesettings.json
. It's working fine for Dart apps, though.@DanTup, could it be related to #3434?
To Reproduce:
terminal
orexternalTerminal
:Expected behavior
See the Flutter logs in the selected terminal. For me, the most important thing is
externalTerminal
, since it helps me a lot with my windows placement (vscode | emulator + terminal)Versions:
The text was updated successfully, but these errors were encountered: