-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
Support more options for formatting text and inserting links to commands in Output Channel #564
Comments
Very fair request - we have been adding more to the debug console so this also makes sense @bpasero are you the right guy to think about this. |
@ArtemGovorov how is Wallaby going I've not yet seen a publish Zurich will be online soon let us know if you need help. For publishing @joaomoreno is your guy. |
From @ArtemGovorov on November 18, 2015 5:45 @seanmcbreen Thanks, it's getting there, most of the functionality is working. I do need to do a few more things before publishing it though. |
From @SamVerschueren on November 18, 2015 7:54 ANSI color codes (chalk) will be supported in the future. See https://github.com/Microsoft/vscode-extensionbuilders/issues/69. |
From @ArtemGovorov on November 18, 2015 8:12 I'd rather use some higher level abstractions than using any specific colors. For example, it may be better to specify CSS classes (like I like how it's done in Atom: you may use LESS variables (that may be changed by a theme) to define classes in your extension LESS file and you can later apply these classes in your HTML. But Atom allows to work with HTML/DOM while VS Code doesn't. |
From @SamVerschueren on November 18, 2015 8:16 I would rather see that as a separate component then and keep the |
From @ArtemGovorov on November 18, 2015 8:38 A separate component with full HTML/JavaScript support would be nice to have as well, but for now all I need is theme friendly colours and enhanced links in the |
Related: #571 |
Chrome and Firefox already handle this nicely with CSS styles (pass style objects to %c specifiers in the format string): https://developer.chrome.com/devtools/docs/console#styling-console-output-with-css It would great if the VS Code console could just support the same interface. It's simple and easy to use. Please don't reinvent the world. That said, ANSI escape sequences sent to the console (which under the covers might be able to use the same style mechanism) should also "just work". |
From @ArtemGovorov on November 18, 2015 5:37
More specifically:
So here is what I have in VS Code currently:
Here is what I'd like to have:
Copied from original issue: Microsoft/vscode-extensionbuilders#124
The text was updated successfully, but these errors were encountered: