* lisp/progmodes/ruby-mode.el (ruby-smie-rules): Only align with parent of
{ if it is hanging.
This commit is contained in:
parent
76f1a3c314
commit
03d44565bb
3 changed files with 11 additions and 2 deletions
|
@ -1,5 +1,8 @@
|
|||
2013-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* progmodes/ruby-mode.el (ruby-smie-rules): Only align with parent of
|
||||
{ if it is hanging.
|
||||
|
||||
* progmodes/ruby-mode.el (ruby-smie-rules): Don't return 0 for
|
||||
:before ";".
|
||||
|
||||
|
|
|
@ -449,7 +449,7 @@ explicitly declared in magic comment."
|
|||
((smie-rule-parent-p "def" "begin" "do" "class" "module" "for"
|
||||
"while" "until" "unless"
|
||||
"if" "then" "elsif" "else" "when"
|
||||
"rescue" "ensure" "{")
|
||||
"rescue" "ensure")
|
||||
(smie-rule-parent ruby-indent-level))
|
||||
;; For (invalid) code between switch and case.
|
||||
;; (if (smie-parent-p "switch") 4)
|
||||
|
@ -457,7 +457,9 @@ explicitly declared in magic comment."
|
|||
(`(:before . ,(or `"(" `"[" `"{"))
|
||||
(cond
|
||||
((and (equal token "{")
|
||||
(not (smie-rule-prev-p "(" "{" "[" "," "=>")))
|
||||
(not (smie-rule-prev-p "(" "{" "[" "," "=>"))
|
||||
(or (smie-rule-hanging-p)
|
||||
(smie-rule-next-p "opening-|")))
|
||||
;; Curly block opener.
|
||||
(smie-rule-parent))
|
||||
((smie-rule-hanging-p)
|
||||
|
|
|
@ -40,6 +40,10 @@
|
|||
a: b
|
||||
}
|
||||
|
||||
foo = { a: b
|
||||
a1: b1
|
||||
}
|
||||
|
||||
foo({
|
||||
a: b,
|
||||
c: d
|
||||
|
|
Loading…
Add table
Reference in a new issue