Hi fellow emacs users!
I'm using Jeffrey Chu's Clojure-mode right now, and I'm wondering how
I can turn off the "align with first argument" feature.
A lot of my code currently looks like this:
(with_draw_mode :raycast
(with_blending
(with_palette_shader
(bind_3d_texture 0 texture
(bind_1d_texture 1 palette
(bind_2d_texture 2 *fbo*
(block)))))))
And it would be really nice, if it could look like this instead:
(with_draw_mode :raycast
(with_blending
(with_palette_shader
(bind_3d_texture 0 texture
(bind_1d_texture 1 palette
(bind_2d_texture 2 *fbo*
(block)))))))
Thanks for your help
-Patrick
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to [email protected]
Note that posts from new members are moderated - please be patient with your
first post.
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---