not really relevant to the main issue, but with some of these flags, i see something about tabindex in the devtools console. changing this in 3 places in the source to tabIndex seems to make atom happier.
https://github.com/mauricioszabo/atom-chlorine/search?q=tabindex&unscoped_q=tabindex
i just tested on macos catalina and i'm seeing the same issue.
atom was 1.40 there as well.
the presence of this file: https://github.com/mauricioszabo/atom-chlorine/blob/master/integration/chlorine-tests/test/chlorine/aux.cljc appears to cause a checkout of the source code in windows to fail. my understanding is that naming files "aux" before the extension on windows is quite problematic, e.g. https://stackoverflow.com/questions/3689137/error-git-checkout-index-unable-to-create-file https://github.com/swcarpentry/DEPRECATED-bc/issues/463 https://github.com/gajus/react-aux/issues/10 https://github.com/BeyondTheClouds/VMPlaceS/issues/10 may be it's possible to rename that file? (i was trying to reproduce the "don't see the settings button" issue on windows since it happens here on a mac as well as a linux box)
I'll rename it. I'll also try harder to reproduce the problem here
That was the cause of a problem in depstar
where it failed on Windows only building a JAR that depended on a project that contained aux.clj
. I changed depstar
to build the archive directly rather than trying to copy files but really that source project should have been updated to be Windows-friendly since no one could check it out on Windows... prn
and con
are also filenames to avoid. Probably others with three letters that could be a legacy Windows device name.
According to this page linked from one of the answers in the SO question linked above: https://docs.microsoft.com/en-us/windows/win32/fileio/naming-a-file?redirectedfrom=MSDN the list from Microsoft is this:
Do not use the following reserved names for the name of a file:
CON, PRN, AUX, NUL, COM1, COM2, COM3, COM4, COM5, COM6, COM7, COM8, COM9, LPT1, LPT2, LPT3, LPT4, LPT5, LPT6, LPT7, LPT8, and LPT9. Also avoid these names followed immediately by an extension; for example, NUL.txt is not recommended.
I recall seeing this Windows file name issue coming up before somewhere years ago, and it strikes me as a bit odd that the latest versions of Windows continue this restriction.
Okay, just merged a PR to rename all aux
files to utils
🙂
Now for debugging why the config option isn't appearing...