Allow YYMMDD date pattern #18
Replies: 2 comments
-
Cool, thanks for that thorough discussion! This is actually something that I also thought about, because while e.g. I think the date format is a tricky decision, because there are so many variations and conventions around the world. On the one hand, it would be terrific to support everyone’s local style (think I’m wondering whether this whole topic could be alleviated through good tooling, such as an editor plugin. For example, the one for Sublime Text has smart-completions: (video recorded at 2022-04-02) Screen.Recording.2022-04-02.at.10.32.36.mov |
Beta Was this translation helpful? Give feedback.
-
True, but
That speeds up input nicely, but still takes up more visual space than |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Allow the
YYMMDD
date pattern (andYY-Www
andYYQq
)Reasons:
-
or/
which require modifier keys to type on some keyboard layouts.Objection 1: Some may confuse
YYMMDD
withDDMMYY
.Reply: Not if they read the spec (once
YYMMDD
is added). The horrible fact thatDDMMYY
exists in the wild should not force [x]it! into verbosity. A single person user choosingYYMMDD
is unlikely to get confused by it. In multi user cases the users are still free to adopt a convention to only use the verboseYYYY
patterns.Objection 2:
YYMMDD
may cause future issues when year 2100 is closer.Reply: Not a practical problem for a long time and the required
->
prefix should make batch converting old [x]it! data fromYYMMDD
toYYYY
variants easy, if that need arises.Beta Was this translation helpful? Give feedback.
All reactions