From 04f5525fbb961f6006280be340ca0f03df9e80a7 Mon Sep 17 00:00:00 2001 From: Dmitry Gutov Date: Sun, 13 Mar 2016 23:10:38 +0200 Subject: [PATCH] Make '.' associative, for easier sexp navigation * lisp/progmodes/ruby-mode.el (ruby-smie-grammar): Make '.' associative, for easier sexp navigation. --- lisp/progmodes/ruby-mode.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/progmodes/ruby-mode.el b/lisp/progmodes/ruby-mode.el index 36c1aed529e..b0b837aa20e 100644 --- a/lisp/progmodes/ruby-mode.el +++ b/lisp/progmodes/ruby-mode.el @@ -368,7 +368,7 @@ It is used when `ruby-encoding-magic-comment-style' is set to `custom'." (exp (exp1) (exp "," exp) (exp "=" exp) (id " @ " exp)) (exp1 (exp2) (exp2 "?" exp1 ":" exp1)) - (exp2 (exp3) (exp3 "." exp2)) + (exp2 (exp3) (exp3 "." exp3)) (exp3 ("def" insts "end") ("begin" insts-rescue-insts "end") ("do" insts "end") @@ -416,7 +416,7 @@ It is used when `ruby-encoding-magic-comment-style' is set to `custom'." (nonassoc "==" "===" "!=") (nonassoc "=~" "!~") (left "<<" ">>") - (right ".")))))) + (assoc ".")))))) (defun ruby-smie--bosp () (save-excursion (skip-chars-backward " \t") -- 2.39.5