-
Notifications
You must be signed in to change notification settings - Fork 22
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
Applying colours to output panel #98
Comments
The code (which I inherited) does not apply colouring in the output panel. |
I thought the colours in output panel is by default and I change something in the configuration. On this gif https://raw.githubusercontent.com/wayou/vscode-todo-highlight/master/assets/list-annotations.gif output panel is colorful. |
The settings in your first post aren't clear, but it seems to have two different settings for PHP files, including: |
I see. Well, my earlier comment still stands. That screenshot is inherited from v1 of this plugin, and I have never seen it colour the OUTPUT panel. Please do improve the plugin if you can. |
I have TODO Highlight v2 configured for highlight TODO and FIXME in php files. This works well in php files, but in the output panel everything is uncolored.
My settings.json contains this config:
"todohighlight.keywords": [ { "text": "TODO", "color": "#fff", "selectColor": "#000", "backgroundColor": "rgba(255, 170, 50, .5)", "overviewRulerColor": "#fa3" }, { "text": "FIXME", "color": "#fff", "backgroundColor": "rgba(255, 100, 150, .5)", "overviewRulerColor": "#f69" }, ], "todohighlight.include": [ "**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx", "**/*.html", "**/*.css", "**/*.scss", "**/*.php", "**/*.rb", "**/*.txt", "**/*.mdown", "**/*.md", "**/*.py", "**/*.log" ], "todohighlight.defaultStyle": { "isWholeLine": true, },
The text was updated successfully, but these errors were encountered: