-
Notifications
You must be signed in to change notification settings - Fork 34
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
Show the embedded nREPL output to the VSCode output channel #52
Labels
Comments
Is using another output channel hijacks vscode focus? |
Maybe link it to a setting and have it off by default? I got here searching for a way to do just this. A bit of noise at the start of the stream would be well worth it for the full REPL output. |
marcomorain
added a commit
to marcomorain/clojureVSCode
that referenced
this issue
Feb 7, 2018
Add a channel to show nREPL output to the user. This channel will be used for the following: stdout: Any stdout messages are sent to the channel. stderr: Any stderr messages are sent to the channel, and the channel is brought to the front to make the user aware. exit/close: If the exit code is not 0, then print the exit code and bring the window to the front. Fixes avli#52
#92 fixes this 👍 |
marcomorain
added a commit
to marcomorain/clojureVSCode
that referenced
this issue
Feb 7, 2018
Add a channel to show nREPL output to the user. This channel will be used for the following: stdout: Any stdout messages are sent to the channel. stderr: Any stderr messages are sent to the channel, and the channel is brought to the front to make the user aware. exit: If the nREPL closes before be we can load the port, then the exit code is printed to the nREPL output channel, and the channel is brough to the front. Fixes avli#52 Also fixes a bug where the 'Starting nREPL' status message would never cleaar if the repl failed to start.
marcomorain
added a commit
to marcomorain/clojureVSCode
that referenced
this issue
Feb 7, 2018
Add a channel to show nREPL output to the user. This channel will be used for the following: stdout: Any stdout messages are sent to the channel. stderr: Any stderr messages are sent to the channel, and the channel is brought to the front to make the user aware. exit: If the nREPL closes before be we can load the port, then the exit code is printed to the nREPL output channel, and the channel is brough to the front. Fixes avli#52 Also fixes a bug where the 'Starting nREPL' status message would never clear if the repl failed to start.
marcomorain
added a commit
to marcomorain/clojureVSCode
that referenced
this issue
Feb 7, 2018
Add a channel to show nREPL output to the user. This channel will be used for the following: stdout: Any stdout messages are sent to the channel. stderr: Any stderr messages are sent to the channel, and the channel is brought to the front to make the user aware. exit: If the nREPL closes before be we can load the port, then the exit code is printed to the nREPL output channel, and the channel is brough to the front. Fixes avli#52 Fixed avli#69 Also fixes a bug where the 'Starting nREPL' status message would never clear if the repl failed to start.
marcomorain
added a commit
to marcomorain/clojureVSCode
that referenced
this issue
Feb 7, 2018
Add a channel to show nREPL output to the user. This channel will be used for the following: stdout: Any stdout messages are sent to the channel. stderr: Any stderr messages are sent to the channel, and the channel is brought to the front to make the user aware. exit: If the nREPL closes before be we can load the port, then the exit code is printed to the nREPL output channel, and the channel is brough to the front. Fixes avli#52 Fixes avli#53 Fixed avli#69 Also fixes a bug where the 'Starting nREPL' status message would never clear if the repl failed to start.
avli
pushed a commit
that referenced
this issue
Feb 7, 2018
Add a channel to show nREPL output to the user. This channel will be used for the following: stdout: Any stdout messages are sent to the channel. stderr: Any stderr messages are sent to the channel, and the channel is brought to the front to make the user aware. exit: If the nREPL closes before be we can load the port, then the exit code is printed to the nREPL output channel, and the channel is brough to the front. Fixes #52 Fixes #53 Fixed #69 Also fixes a bug where the 'Starting nREPL' status message would never clear if the repl failed to start.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We should think if we want to wire the embedded nREPL output with the VSCode output channel. I can see both pros and cons in this approach.
Pros:
Cons:
The text was updated successfully, but these errors were encountered: