-
Notifications
You must be signed in to change notification settings - Fork 15
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
Goals get automatically ordered by length #60
Comments
Hi again @bjornasm! Firstly, what you intend to achieve can be achieved with arttime's timer specification syntax. Here's how it will look like:
instead of
All the times in a timer specification are considered relative to "now" (current time), that is when the user enters timer spec. What you are expecting is that each time in the list is relative to the previous time. I'll explain below why I chose the former over latter syntax to begin with, but the good news is that I have had plans to enhance timer syntax such that a user can choose either style. The source of misunderstanding is on me, I should add a statement or two in the documentation to clarify that it's an unordered list of times relative to current time. The design space for time manager is broad, and depends in-part on the UI choice/constraints. With arttime, I made the design choice that timers should be specified as a delimiter separated list of times using shell's line-editor to leverage it's scroll, search, etc features (press
Am open to other syntax suggestions. One way would be have a different delimiter like:
Unfortunately most readable delimiters would be taken up by some locale for time specification or require pressing shift on the standard keyboard, making the former syntax extension a better bet. Let me know if you can think of another better syntax for specifying ordered vs unordered. |
Thank you for a great answer! Does:
translate to:
(just that I got it right). Maybe something about that the times are all relative to now could be explicitly stated in the documentation (or maybe most people understood that)? Anyways, good to hear that I can use it as I hoped! Good question regarding the syntax, should a plus sign be avoided due to terminal behavior?
Since then we technically have 22 min of timers I think the + sign is quite nice. If not, the |
I have a weird issue where my goals are ordered by increasing time:
>Enter goal ('help' to learn): 10m;1m;10m;1m;loop2
followed by i to show info shows:
so instead of having several 10m long sprints with 1min inbetweet, it seems to knock off the shortest ones first.
However if I follow the example:
25m;30m;55m;1h;1h25m;1h30m;1h55m;2h25m;loop2
It correctly follows the order from the input, as it is increasing in time:
However if I add a shorter time at the end, it ends up to be sorted:
25m;30m;55m;1h;1h25m;1h30m;1h55m;2h25m;25m;loop2
Trial and error
The following input ends up to be sorted by time as well:
Have I misunderstood anything?
EDIT:
Seems like its this line responsible for the sorting:
arttime/share/arttime/src/arttime.zsh
Line 1024 in 369f47a
I suppose this must be intended and supporting some kind of use case that I don't have (I really cant see how anyone would input these in a different order than what they want) - but maybe there should be a flag to load the time sequences exactly as input?
The text was updated successfully, but these errors were encountered: