Skip to content

Commit

Permalink
Added support for character literals and some basic indenting
Browse files Browse the repository at this point in the history
  • Loading branch information
djspiewak committed Nov 6, 2008
1 parent 848f16c commit f7a3c2f
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions clojure.xml
Expand Up @@ -5,13 +5,13 @@
<MODE>
<PROPS>
<PROPERTY NAME="noTabs" VALUE="true" />
<PROPERTY NAME="tabSize" VALUE="4" />
<PROPERTY NAME="tabSize" VALUE="2" />
<PROPERTY NAME="indentSize" VALUE="2" />
<PROPERTY NAME="lineComment" VALUE=";" />
<PROPERTY NAME="noWordSep" VALUE="_-+?:" />
<PROPERTY NAME="unalignedOpenBrackets" VALUE="(" />
<PROPERTY NAME="unalignedCloseBrackets" VALUE=")" />
<PROPERTY NAME="multipleBracketIndent" VALUE="true" />

<PROPERTY NAME="indentNextLines" VALUE="^.*\(.*$" />
<PROPERTY NAME="unindentNextLines" VALUE="^.*\).*$" />
</PROPS>

<RULES IGNORE_CASE="FALSE"
Expand All @@ -21,6 +21,8 @@

<SEQ TYPE="OPERATOR">'(</SEQ>

<MARK_FOLLOWING TYPE="LITERAL1">\</MARK_FOLLOWING>

<MARK_FOLLOWING TYPE="LITERAL2">'</MARK_FOLLOWING>
<MARK_FOLLOWING TYPE="LABEL">:</MARK_FOLLOWING>

Expand Down

0 comments on commit f7a3c2f

Please sign in to comment.