-
-
Notifications
You must be signed in to change notification settings - Fork 115
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
Edits in the freetext field when writing a todo should update the select/input fields below #533
Comments
@swantzter although just a small feature, it let to quite some refactoring, which I think has a positive effect. Are you currently available for testing this feature? |
@ransome1 I'll try to remember to look at it when I'm on a computer next - which might not be until Jan 8 |
@swantzter sure, no problem. Can be tested with the latest pre-release: https://github.com/ransome1/sleek/releases/tag/v2.0.4-rc.4 |
@ransome1 This seems to be working pretty well in both directions. If you input |
@swantzter yep that's correct and it will take a significant more of work to fix this. But it should not be handled in this feature request. Since you already filed a respective bug report, we will finish it over there I'd suggest. |
Feature Request
Description:
When creating a task you have two sections available in the dialog, a top freeform text field where you can enter the task in todo.txt format (red) and a bottom section where you can configure some of sleek's supported tags etc. (blue)
When you make a change to something in the bottom half (blue), such as updating the priority or setting the due date the main input (red) gets updated. For example, setting the priority dropdown to "A" will prepend "(A) " to the main field or replace
/^\([A-Z]\)\s/
with "(A) "However, updating the main field (red), such as typing "(A) " or "due:next friday" does not update the input fields in the bottom half (blue)
It would be neat if the top and bottom half stayed in sync, in other word writing "(A) " in the main input would update the priority field in the bottom half, or writing "due:2023-12-31" would update the due date input in the bottom half.
It would be especially helpful (but tricky) with the "Friendly/Speaking date names", I could write "due:next friday" and the input field in the bottom half would get updated with the YYYY-MM-DD representation of that showing me what date that actually is
Use Case:
This is mostly a cosmetic thing, but would also make it less confusing in some scenarios. For example if you had selected a due date in the bottom half (blue) but then manually removed it from the main input (red) the due date input field will still show the due date you set making the user unsure if it will still be (re-)added when they save the task or not.
Similarly if you set the priority in the bottom half (blue) to "A" then edit it to "(B) " in the main input field it's unclear what takes precedent at first glance
Implementation Details:
This is a little bit extra tricky with dates due to "Friendly/Speaking date names" because of the spaces that aren't normally allowed in tags
Additional Context:
The text was updated successfully, but these errors were encountered: