Michael Jones

Results 129 comments of Michael Jones

I've attempted to solve this issue locally with: ```vim " Set autoformat command for mix so that we 'cd' into the file's directory " and then 'cat' the file into...

I'm afraid I've not had time to test this in anger and I'm worried that it is going to use the contents of the file on disk rather than the...

My fears were confirmed. If you delete a line and then save the file, the line comes back because the formatter runs before the save and uses the file on...

I have reached out to saadrahim and would be happy to discuss this further. I've done some research into the language server angle. It does look promising to some degree...

I've opened an issue with Doxygen to try to add this information: https://github.com/doxygen/doxygen/issues/10163 I couldn't see any issue that raised it before. I'll update if there is any progress. The...

I made a PR and it has just been merged: https://github.com/doxygen/doxygen/pull/10164 Out in the next version of doxygen but I'm not sure when that is.

This seems to have been released in doxygen 1.9.8 yesterday.

Thank you for the this example. It is very helpful.

I would like to be able to add a custom prefix to enum variants which is separate to the main enum name. Is that currently possible? It seems like the...

I've ended up using `prefix_with_name` and `ScreamingSnakeCase` and then the all caps prefix becomes an identifiable string that I can use in `String.replace` to put in the actual variant prefix...