-
-
Notifications
You must be signed in to change notification settings - Fork 338
Move color settings from taskrc
to default.theme
#3669
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
Comments
Hi! This is my first time contributing and I would like to contribute/be assigned this good first issue if possible! Just so I understand, do you just want to move the .color settings into a newly created file named "default.theme" and then include that file using "#include" into the Context.cpp file? Does the .color settings include any lines that have .color in them (lines 210-280 in the Context.cpp file)? |
Hi @linsaraj! Yes, that's the idea! I think the #include would be added to Lines 1182 to 1197 in fdb7e5e
|
Hi, sorry for the late response. These past few weeks have been filled with exams and project assignments. Because of this, I won't be able to continue working on this issue. I really apologize for the inconvenience. Thank you for this opportunity and I hope this issue and project goes well! |
Issue
As previously discussed, it would be beneficial to separate the default color theme from other configuration settings in
taskrc
. This change would ensure that new color settings don’t unintentionally bypassno-color.theme
in case it omits them by mistake. Separating color settings would also improve the organization of configuration files.Solution
Relocate all
color.
related settings from the defaulttaskrc
template to a newdefault.theme
file. Useinclude default.theme
to apply these color settings, like here.The text was updated successfully, but these errors were encountered: