From: Dmitry Gutov Date: Thu, 10 Mar 2016 12:35:45 +0000 (+0200) Subject: Indent methods with keyword names correctly X-Git-Tag: emacs-25.0.93~108 X-Git-Url: https://code.delx.au/gnu-emacs/commitdiff_plain/72c7438c4c6ee0d24405636cde4b18c32034a634 Indent methods with keyword names correctly * lisp/progmodes/ruby-mode.el (ruby-smie--at-dot-call): Rename to ruby-smie--before-method-name. Now also check if we're after a 'def' keyword. Update both callers. --- diff --git a/lisp/progmodes/ruby-mode.el b/lisp/progmodes/ruby-mode.el index 94fd2771ab..be8f96dcfd 100644 --- a/lisp/progmodes/ruby-mode.el +++ b/lisp/progmodes/ruby-mode.el @@ -481,10 +481,14 @@ It is used when `ruby-encoding-magic-comment-style' is set to `custom'." (memq (car (syntax-after pos)) '(7 15)) (looking-at "[([]\\|[-+!~:]\\(?:\\sw\\|\\s_\\)"))))) -(defun ruby-smie--at-dot-call () +(defun ruby-smie--before-method-name () + ;; Only need to be accurate when method has keyword name. (and (eq ?w (char-syntax (following-char))) - (eq (char-before) ?.) - (not (eq (char-before (1- (point))) ?.)))) + (or + (and + (eq (char-before) ?.) + (not (eq (char-before (1- (point))) ?.))) + (looking-back "^\\s *def\\s +\\=" (line-beginning-position))))) (defun ruby-smie--forward-token () (let ((pos (point))) @@ -507,7 +511,7 @@ It is used when `ruby-encoding-magic-comment-style' is set to `custom'." " @ ") ((looking-at "\\s\"") "") ;A string. (t - (let ((dot (ruby-smie--at-dot-call)) + (let ((dot (ruby-smie--before-method-name)) (tok (smie-default-forward-token))) (when dot (setq tok (concat "." tok))) @@ -551,7 +555,7 @@ It is used when `ruby-encoding-magic-comment-style' is set to `custom'." " @ ") (t (let ((tok (smie-default-backward-token)) - (dot (ruby-smie--at-dot-call))) + (dot (ruby-smie--before-method-name))) (when dot (setq tok (concat "." tok))) (cond diff --git a/test/indent/ruby.rb b/test/indent/ruby.rb index 522c3bd546..585263d02a 100644 --- a/test/indent/ruby.rb +++ b/test/indent/ruby.rb @@ -203,6 +203,9 @@ class C self.end D.new.class end + + def begin + end end a = foo(j, k) -