David "novalis" Turner

Results 64 comments of David "novalis" Turner

OK, so I hacked together something that works for @cushon's f...(x -> ...) case. But I'm deeply unhappy with it, because (a) it doesn't yet work if you put another...

Not on my end -- it seems really hard to do right, and I haven't had time to look at it lately. Sorry.

We run google-java-format at build time; we fail a build if there are any changes between the formatted code and the code that is being built. This is similar to...

BTW, I know that formatting code is among the hardest jobs on earth, and I respect you immensely for doing it and helping us do it. I know that there...

Only running the formatter on changed files would be smart, but our build system isn't currently smart enough to do that (and it's not easy to make it smart enough)....

I thought about it, and decided that it didn't really matter whether it would be easy for me to manually fix the existing cases, because our users are likely to...

There are two ways to enforce google style with with intellij: 1. This project (and its plugin), and 2. https://github.com/google/styleguide/blob/gh-pages/intellij-java-google-style.xml Last time I checked, some of our users use one,...

I think the idempotent (but somewhat evil) way to wrap these comments is to move them entirely to the next line. Of course, this is not what the user intended,...

When you say "fixing the current approach", I'm not sure what you mean. If you want to wrap these lines, you have to put the excess somewhere. You don't want...

I guess that would solve my central problem.