chlorine-clover

About Chlorine for Atom and Clover for VS Code: https://atom.io/packages/chlorine and https://marketplace.visualstudio.com/items?itemName=mauricioszabo.clover
2019-10-16T01:34:42.045700Z

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.

2019-10-16T05:53:32.046100Z

i just tested on macos catalina and i'm seeing the same issue.

2019-10-16T05:53:51.046300Z

atom was 1.40 there as well.

2019-10-16T07:17:28.048800Z

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)

mauricio.szabo 2019-10-16T15:01:36.049600Z

I'll rename it. I'll also try harder to reproduce the problem here

seancorfield 2019-10-16T15:49:03.052200Z

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.

2019-10-16T16:56:55.053Z

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.

2019-10-16T16:58:45.054300Z

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.

mauricio.szabo 2019-10-16T20:44:27.055300Z

Okay, just merged a PR to rename all aux files to utils 🙂

👍 1
mauricio.szabo 2019-10-16T20:44:45.055800Z

Now for debugging why the config option isn't appearing...