-
Notifications
You must be signed in to change notification settings - Fork 142
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
Unfocused highlight #61
Comments
Yes, this is sort of by design, as it is how the extension is coded, but I think it would be nice to be a bit cleverer and keep the highlights for any open files... |
Thanks. A settings toggle would be great. |
I've fixed the highlights in all the editors. Changing luminosity is a bit difficult though as there are predefined colours and it has to cope with light and dark themes. |
Hi @Gruntfuggly thanks for the great extension! |
Good spot - not enough testing! Should be fixed now... |
Confirmed it has been fixed in |
Hi @Gruntfuggly seems that it happens again with latest |
Could you check if there is anything in the console log? It works for me, so I think it may be something else is happening before it gets to the highlight. |
Oh yes forgot to check the console, here is the error when I switch the tab:
With my settings: {
"todo-tree.highlight": true,
"todo-tree.flat": true,
"todo-tree.grouped": true,
"todo-tree.expanded": true,
"todo-tree.iconColour": "grey",
"todo-tree.tags": [
"BUG",
"FIXME",
"TODO",
],
"todo-tree.iconColours": {
"BUG": "#FF2D00",
"FIXME": "#F06292",
"TODO": "#FFBD2A",
},
"todo-tree.globs": [
"!**/vendor/**",
"!**/node_modules/**",
]
} |
Thanks - should be fixed now. I hadn't inhibited the file tracking when grouping was enabled - which can't really work because there could be multiple instances of the file in the tree. |
Cool, confirmed it has been fixed in |
Each Code window properly highlights tags only for the active file. When using split panel, only one group gets highlighting at a time. The tags list always shows the correct tags.
The text was updated successfully, but these errors were encountered: