-
Notifications
You must be signed in to change notification settings - Fork 281
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
proposal: vertically align binding values in let
#10
Comments
I agree this is nice in principle, but it is too laborious in text editors that don't support elastic tab stops. (http://en.wikipedia.org/wiki/Elastic_tabstop) And, given that not even Emacs supports this, it is a feature that's almost non-existent in text editors. |
Of course Emacs supports this! In Emacs Live it's bound to |
I'm not sure I agree that this should be canonical. Even with editor support it still requires effort to tweak alignment in this way, especially for the addition of a new let binding with a longer name requiring all other vars to be realigned. The gain in readability is (IMHO) marginal compared with the benefit of separate syntax colouring of the binding name. That said, if it is adopted as canonical style then it would be nice to see this align-cljlet functionality added to clojure-mode. |
Created a clojure-mode issue regarding this: clojure-emacs/clojure-mode#126 Thanks, samaaron, for the heads-up regarding align-cljlet! |
Hm. My guess is that there's likely a substantial number of folks who prefer the readability of lining them up (even though it takes a little more typing), but also that it's probably too much to ask to have everyone do it that way. What do you think of changing the existing ;; good
(let [thing1 "some stuff"
thing2 "other stuff"]
{:thing1 thing1
:thing2 thing2})
;; bad
(let [thing1 "some stuff"
thing2 "other stuff"]
{:thing1 thing1
:thing2 thing2}) to ;; good
(let [thing "some stuff"
other-thing "other stuff"]
{:thing thing
:other-thing other-thing})
;; fine as well
(let [thing "some stuff"
other-thing "other stuff"]
{:thing thing
:other-thing other-thing})
;; bad
(let [thing "some stuff"
other-thing "other stuff"]
{:thing thing
:other-thing other-thing}) ? That just lets folks know, "yeah, you won't get yelled at for lining things up, whether they're values in a |
What I dislike about alignment such as the proposed one is the impact on diffs each time you a longer name in the let that would require pushing all of the others as well thus creating noise in the diffs. This also requires additional effort from team members using editors and IDEs not supporting such alignment. We might mention it in the guide as an example of good style, but I think we shouldn't recommend it. |
Agree with @bbatsov that vertically alignment will cause some unneeded change when add a longer name in the let. |
Good point.
No need to explicitly mention it --- maybe just imply it somewhere ... for example, perhaps change ;; good and arguably a bit more readable
{:name "Bruce Wayne"
:alter-ego "Batman"} to ;; good and arguably a bit more readable
{:name "Bruce Wayne"
:alter-ego "Batman"} |
I'd also recommend considering vertical alignment in |
@bbatsov made an important comment;
Don't all the relevant tools support diff'ing modulo whitespace? This is a vital characteristic, imho, for a comparison tool. |
I know this is old, but +1 for right aligning the values. It is so much more readable... If we wanted to go this way are there any recommended plugins to support this style of indentation? |
@yatesco the package https://github.com/gstamp/align-cljlet was mentioned above, if you're an Emacs-er. I agree with @bbatsov though about the cost for noise in diffs which makes this questionable as a standard (yes, I know there is an option for some diff tools to ignore whitespace, but they have to be turned on in e.g. Magit or other places where |
Thanks John, that looks great. Ironically in my situation this will make
|
I'm sceptical of adding this as a style guideline because while I think that aligning values is a fine thing to do in certain situations, in many situations I would prefer not aligning them--for the sake of code readability. Often the rhs of a Note that when you have |
I don't know what's your experience guys. We currently use vertical alignment of values and it only gives us much more conflicts when working with git. This is caused because when you change code adding or removing bindings you typically realign let forms and it causes huge whitespace changes. Now imagine several branches making changes in different places of let bindings. It would be ok if not let binding values alignment and of course we will get conflicts here. So I personally doubt this proposal is good idea to be canonical clojure code. |
I personally find this increases readability significantly and religiously use this capability from clj-refactor. To be blunt, I don't buy the 'git conflicts' issue - if you use it everywhere then the only conflicts you are going to run into is if multiple people change the same let binding concurrently, which, if frequent, I would consider a smell itself. |
Well if take into account that let is one of most frequent forms used in code - yes conflicts happen quite often. When developing several unrelated to each other features changing same parts of our code at time, I'm puzzled to say what other choice do we have.. |
If people interested about readability of let forms, maybe it would be better to go other way and make editors only display let bindings aligned but preserve unaligned code under source control to minimize unneeded changes. What do you think, guys? |
This risks getting off topic and arguing about subjective opinions but the only time I would expect a conflict is if there were multiple updates to the same let binding, which might happen occasionally but I would expect them to be rare. If this is happening all the time then I might start questioning:
I wouldn't be as concerned if multiple people updated the same namespace but in different places but that wouldn't cause any conflicts. The only problem is concurrent updating of the same let binding which I wouldn't want to be general practice anyway. |
Since these are style guidelines, anyone can violate them freely, but they do have a normative effect. People reformat others' code on stackoverflow, newbies ask about conventions, etc. This case seems like one where there shouldn't be a single rule. Or rather, the rule could be something like, "Prefer aligning values other things being equal, if there's enough space on the right, etc., but in some situations you may want to do XYZ." edvorg's proposal to let the editor do the alignment is interesting. I suppose it should be configurable though. I might want to reindent a block of code without having to go back and delete unwanted spaces that have been inserted in the |
After what three years of debating this back and forth purely on anecdotal grounds it seems clear to me that there is not a consensus on "good style" which we can reasonably commend and that this thread should be closed. Because this is an anecdotal thread, I've long had my editors (first vim now emacs) set up to automagically "repair" whitespace and enforce alignment. I've had coworkers complain about it, but I use it everywhere and for everything. I'd love it if CIDER/clojure-mode could provide vertical alignment of bindings as a view rather than as a change in the text (rant about programs as data/asts nonsense of worrying about the text formatting should work on renders of asts vc the ast not the rendering goes here), but failing that I personally find editor assisted alignment to be sane and I look forwards to cljfmt growing support for it. |
I agree with Reid & Colin that vertical alignment nearly always helps However, a bigger issue is if whitespace is causing problems in your Git alias gitdw='git diff --ignore-all-space --ignore-blank-lines' Cheers! On Fri, Apr 29, 2016 at 11:18 AM, Reid D McKenzie [email protected]
|
I would argue with the thing that conflicts in map literals and cond expressions are such a rare case. We have maps everywhere and we use constructs like cond to dispatch app flow control at some higher levels of logic. For example let's take a look how we typically describe http routes in our projects. We use something like |
Maybe let is quite rare but problem is still present as well |
For posterity, this exists now: https://github.com/clojure-emacs/clojure-mode#vertical-alignment |
I find "vertical alignment" in let blocks/map defs even harder to read than write/alter. Because of key-value pairs aren't "tight" it's easy to skip a line between a key and value. {:foo-attribute 3
:bar 1
:a-little-bit-longer-attribute 3
:asdf 1
:asdf1 3
:asdf2 5
:asdf3 7
:asdf4 9 vs. {:foo-attribute 3
:bar 1
:a-little-bit-longer-attribute 3
:asdf 1
:asdf1 3
:asdf2 5
:asdf3 7
:asdf4 9 |
Here's a preference I have that I think might be good for the style guide:
The text was updated successfully, but these errors were encountered: