Greetings.

This is more of emacs question than Clojure question.

I am trying to figure out how to change emacs Clojure mode's default
indentation behaviour.

By default, emacs is indenting my code like this:

(defn calendar-initial-sync [server user mailfile password formula]
  (with-session session hostname username password
                      (with-open-db session db dbname
                                          (with-search-results db docs
formula
 
(foreach-note docs doc


I would like it to indent like this:

(defn calendar-initial-sync [server user mailfile password formula]
  (with-session session hostname username password
    (with-open-db session db dbname
      (with-search-results db docs formula
        (foreach-note docs doc

Could someone help me figure out how to do this?

thanks
pj

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To post to this group, send email to clojure@googlegroups.com
To unsubscribe from this group, send email to 
clojure+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to