1 ;;; ruby-mode.el --- Major mode for editing Ruby files
3 ;; Copyright (C) 1994-2014 Free Software Foundation, Inc.
5 ;; Authors: Yukihiro Matsumoto
7 ;; URL: http://www.emacswiki.org/cgi-bin/wiki/RubyMode
8 ;; Created: Fri Feb 4 14:49:13 JST 1994
9 ;; Keywords: languages ruby
12 ;; This file is part of GNU Emacs.
14 ;; GNU Emacs is free software: you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation, either version 3 of the License, or
17 ;; (at your option) any later version.
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
29 ;; Provides font-locking, indentation support, and navigation for Ruby code.
31 ;; If you're installing manually, you should add this to your .emacs
32 ;; file after putting it on your load path:
34 ;; (autoload 'ruby-mode "ruby-mode" "Major mode for ruby files" t)
35 ;; (add-to-list 'auto-mode-alist '("\\.rb$" . ruby-mode))
36 ;; (add-to-list 'interpreter-mode-alist '("ruby" . ruby-mode))
38 ;; Still needs more docstrings; search below for TODO.
43 "Major mode for editing Ruby code."
47 (defconst ruby-block-beg-keywords
48 '("class" "module" "def" "if" "unless" "case" "while" "until" "for" "begin" "do")
49 "Keywords at the beginning of blocks.")
51 (defconst ruby-block-beg-re
52 (regexp-opt ruby-block-beg-keywords
)
53 "Regexp to match the beginning of blocks.")
55 (defconst ruby-non-block-do-re
56 (regexp-opt '("while" "until" "for" "rescue") 'symbols
)
57 "Regexp to match keywords that nest without blocks.")
59 (defconst ruby-indent-beg-re
60 (concat "^\\(\\s *" (regexp-opt '("class" "module" "def")) "\\|"
61 (regexp-opt '("if" "unless" "case" "while" "until" "for" "begin"))
63 "Regexp to match where the indentation gets deeper.")
65 (defconst ruby-modifier-beg-keywords
66 '("if" "unless" "while" "until")
67 "Modifiers that are the same as the beginning of blocks.")
69 (defconst ruby-modifier-beg-re
70 (regexp-opt ruby-modifier-beg-keywords
)
71 "Regexp to match modifiers same as the beginning of blocks.")
73 (defconst ruby-modifier-re
74 (regexp-opt (cons "rescue" ruby-modifier-beg-keywords
))
75 "Regexp to match modifiers.")
77 (defconst ruby-block-mid-keywords
78 '("then" "else" "elsif" "when" "rescue" "ensure")
79 "Keywords where the indentation gets shallower in middle of block statements.")
81 (defconst ruby-block-mid-re
82 (regexp-opt ruby-block-mid-keywords
)
83 "Regexp to match where the indentation gets shallower in middle of block statements.")
85 (defconst ruby-block-op-keywords
87 "Regexp to match boolean keywords.")
89 (defconst ruby-block-hanging-re
90 (regexp-opt (append ruby-modifier-beg-keywords ruby-block-op-keywords
))
91 "Regexp to match hanging block modifiers.")
93 (defconst ruby-block-end-re
"\\_<end\\_>")
95 (defconst ruby-defun-beg-re
96 '"\\(def\\|class\\|module\\)"
97 "Regexp to match the beginning of a defun, in the general sense.")
99 (defconst ruby-singleton-class-re
101 "Regexp to match the beginning of a singleton class context.")
104 (defconst ruby-here-doc-beg-re
105 "\\(<\\)<\\(-\\)?\\(\\([a-zA-Z0-9_]+\\)\\|[\"]\\([^\"]+\\)[\"]\\|[']\\([^']+\\)[']\\)"
106 "Regexp to match the beginning of a heredoc.")
108 (defconst ruby-expression-expansion-re
109 "\\(?:[^\\]\\|\\=\\)\\(\\\\\\\\\\)*\\(#\\({[^}\n\\\\]*\\(\\\\.[^}\n\\\\]*\\)*}\\|\\(\\$\\|@\\|@@\\)\\(\\w\\|_\\)+\\)\\)"))
111 (defun ruby-here-doc-end-match ()
112 "Return a regexp to find the end of a heredoc.
114 This should only be called after matching against `ruby-here-doc-beg-re'."
116 (if (match-string 2) "[ \t]*" nil
)
122 (defconst ruby-delimiter
123 (concat "[?$/%(){}#\"'`.:]\\|<<\\|\\[\\|\\]\\|\\_<\\("
125 "\\)\\_>\\|" ruby-block-end-re
126 "\\|^=begin\\|" ruby-here-doc-beg-re
))
128 (defconst ruby-negative
129 (concat "^[ \t]*\\(\\(" ruby-block-mid-re
"\\)\\>\\|"
130 ruby-block-end-re
"\\|}\\|\\]\\)")
131 "Regexp to match where the indentation gets shallower.")
133 (defconst ruby-operator-re
"[-,.+*/%&|^~=<>:]\\|\\\\$"
134 "Regexp to match operators.")
136 (defconst ruby-symbol-chars
"a-zA-Z0-9_"
137 "List of characters that symbol names may contain.")
139 (defconst ruby-symbol-re
(concat "[" ruby-symbol-chars
"]")
140 "Regexp to match symbols.")
142 (defvar ruby-use-smie t
)
144 (defvar ruby-mode-map
145 (let ((map (make-sparse-keymap)))
146 (unless ruby-use-smie
147 (define-key map
(kbd "M-C-b") 'ruby-backward-sexp
)
148 (define-key map
(kbd "M-C-f") 'ruby-forward-sexp
)
149 (define-key map
(kbd "M-C-q") 'ruby-indent-exp
))
151 (define-key map
(kbd "M-C-d") 'smie-down-list
))
152 (define-key map
(kbd "M-C-p") 'ruby-beginning-of-block
)
153 (define-key map
(kbd "M-C-n") 'ruby-end-of-block
)
154 (define-key map
(kbd "C-c {") 'ruby-toggle-block
)
156 "Keymap used in Ruby mode.")
163 ["Beginning of Block" ruby-beginning-of-block t
]
164 ["End of Block" ruby-end-of-block t
]
165 ["Toggle Block" ruby-toggle-block t
]
167 ["Backward Sexp" ruby-backward-sexp
168 :visible
(not ruby-use-smie
)]
169 ["Backward Sexp" backward-sexp
170 :visible ruby-use-smie
]
171 ["Forward Sexp" ruby-forward-sexp
172 :visible
(not ruby-use-smie
)]
173 ["Forward Sexp" forward-sexp
174 :visible ruby-use-smie
]
175 ["Indent Sexp" ruby-indent-exp
176 :visible
(not ruby-use-smie
)]
177 ["Indent Sexp" prog-indent-sexp
178 :visible ruby-use-smie
]))
180 (defvar ruby-mode-syntax-table
181 (let ((table (make-syntax-table)))
182 (modify-syntax-entry ?
\' "\"" table
)
183 (modify-syntax-entry ?
\" "\"" table
)
184 (modify-syntax-entry ?\
` "\"" table
)
185 (modify-syntax-entry ?
# "<" table
)
186 (modify-syntax-entry ?
\n ">" table
)
187 (modify-syntax-entry ?
\\ "\\" table
)
188 (modify-syntax-entry ?$
"." table
)
189 (modify-syntax-entry ?_
"_" table
)
190 (modify-syntax-entry ?
: "_" table
)
191 (modify-syntax-entry ?
< "." table
)
192 (modify-syntax-entry ?
> "." table
)
193 (modify-syntax-entry ?
& "." table
)
194 (modify-syntax-entry ?|
"." table
)
195 (modify-syntax-entry ?%
"." table
)
196 (modify-syntax-entry ?
= "." table
)
197 (modify-syntax-entry ?
/ "." table
)
198 (modify-syntax-entry ?
+ "." table
)
199 (modify-syntax-entry ?
* "." table
)
200 (modify-syntax-entry ?-
"." table
)
201 (modify-syntax-entry ?\
; "." table)
202 (modify-syntax-entry ?\
( "()" table
)
203 (modify-syntax-entry ?\
) ")(" table
)
204 (modify-syntax-entry ?\
{ "(}" table
)
205 (modify-syntax-entry ?\
} "){" table
)
206 (modify-syntax-entry ?\
[ "(]" table
)
207 (modify-syntax-entry ?\
] ")[" table
)
209 "Syntax table to use in Ruby mode.")
211 (defcustom ruby-indent-tabs-mode nil
212 "Indentation can insert tabs in Ruby mode if this is non-nil."
217 (defcustom ruby-indent-level
2
218 "Indentation of Ruby statements."
223 (defcustom ruby-comment-column
(default-value 'comment-column
)
224 "Indentation column of comments."
229 (defconst ruby-alignable-keywords
'(if while unless until begin case for def
)
230 "Keywords that can be used in `ruby-align-to-stmt-keywords'.")
232 (defcustom ruby-align-to-stmt-keywords
'(def)
233 "Keywords after which we align the expression body to statement.
235 When nil, an expression that begins with one these keywords is
236 indented to the column of the keyword. Example:
244 If this value is t or contains a symbol with the name of given
245 keyword, the expression is indented to align to the beginning of
254 Only has effect when `ruby-use-smie' is t.
257 (const :tag
"None" nil
)
259 (repeat :tag
"User defined"
261 (lambda (kw) (list 'const kw
))
262 ruby-alignable-keywords
))))
267 (defcustom ruby-align-chained-calls nil
268 "If non-nil, align chained method calls.
270 Each method call on a separate line will be aligned to the column
273 Only has effect when `ruby-use-smie' is t."
279 (defcustom ruby-deep-arglist t
280 "Deep indent lists in parenthesis when non-nil.
281 Also ignores spaces after parenthesis when `space'.
282 Only has effect when `ruby-use-smie' is nil."
287 ;; FIXME Woefully under documented. What is the point of the last `t'?.
288 (defcustom ruby-deep-indent-paren
'(?\
( ?\
[ ?\
] t
)
289 "Deep indent lists in parenthesis when non-nil.
290 The value t means continuous line.
291 Also ignores spaces after parenthesis when `space'.
292 Only has effect when `ruby-use-smie' is nil."
293 :type
'(choice (const nil
)
295 (repeat (choice character
296 (cons character
(choice (const nil
)
302 (defcustom ruby-deep-indent-paren-style
'space
303 "Default deep indent style.
304 Only has effect when `ruby-use-smie' is nil."
305 :type
'(choice (const t
) (const nil
) (const space
))
308 (defcustom ruby-encoding-map
309 '((us-ascii . nil
) ;; Do not put coding: us-ascii
310 (shift-jis . cp932
) ;; Emacs charset name of Shift_JIS
311 (shift_jis . cp932
) ;; MIME charset name of Shift_JIS
312 (japanese-cp932 . cp932
)) ;; Emacs charset name of CP932
313 "Alist to map encoding name from Emacs to Ruby.
314 Associating an encoding name with nil means it needs not be
315 explicitly declared in magic comment."
316 :type
'(repeat (cons (symbol :tag
"From") (symbol :tag
"To")))
319 (defcustom ruby-insert-encoding-magic-comment t
320 "Insert a magic Ruby encoding comment upon save if this is non-nil.
321 The encoding will be auto-detected. The format of the encoding comment
322 is customizable via `ruby-encoding-magic-comment-style'.
324 When set to `always-utf8' an utf-8 comment will always be added,
325 even if it's not required."
326 :type
'boolean
:group
'ruby
)
328 (defcustom ruby-encoding-magic-comment-style
'ruby
329 "The style of the magic encoding comment to use."
331 (const :tag
"Emacs Style" emacs
)
332 (const :tag
"Ruby Style" ruby
)
333 (const :tag
"Custom Style" custom
))
337 (defcustom ruby-custom-encoding-magic-comment-template
"# encoding: %s"
338 "A custom encoding comment template.
339 It is used when `ruby-encoding-magic-comment-style' is set to `custom'."
344 (defcustom ruby-use-encoding-map t
345 "Use `ruby-encoding-map' to set encoding magic comment if this is non-nil."
346 :type
'boolean
:group
'ruby
)
352 ;; Here's a simplified BNF grammar, for reference:
353 ;; http://www.cse.buffalo.edu/~regan/cse305/RubyBNF.pdf
354 (defconst ruby-smie-grammar
359 (insts (inst) (insts ";" insts
))
360 (inst (exp) (inst "iuwu-mod" exp
)
361 ;; Somewhat incorrect (both can be used multiple times),
362 ;; but avoids lots of conflicts:
363 (exp "and" exp
) (exp "or" exp
))
364 (exp (exp1) (exp "," exp
) (exp "=" exp
)
366 (exp1 (exp2) (exp2 "?" exp1
":" exp1
))
367 (exp2 (exp3) (exp3 "." exp2
))
368 (exp3 ("def" insts
"end")
369 ("begin" insts-rescue-insts
"end")
371 ("class" insts
"end") ("module" insts
"end")
372 ("for" for-body
"end")
376 ("while" insts
"end")
377 ("until" insts
"end")
378 ("unless" insts
"end")
380 ("case" cases
"end"))
381 (formal-params ("opening-|" exp
"closing-|"))
382 (for-body (for-head ";" insts
))
383 (for-head (id "in" exp
))
384 (cases (exp "then" insts
)
385 (cases "when" cases
) (insts "else" insts
))
386 (expseq (exp) );;(expseq "," expseq)
387 (hashvals (id "=>" exp1
) (hashvals "," hashvals
))
388 (insts-rescue-insts (insts)
389 (insts-rescue-insts "rescue" insts-rescue-insts
)
390 (insts-rescue-insts "ensure" insts-rescue-insts
))
391 (itheni (insts) (exp "then" insts
))
392 (ielsei (itheni) (itheni "else" insts
))
393 (if-body (ielsei) (if-body "elsif" if-body
)))
394 '((nonassoc "in") (assoc ";") (right " @ ")
395 (assoc ",") (right "="))
398 '((assoc "rescue" "ensure"))
403 (right "+=" "-=" "*=" "/=" "%=" "**=" "&=" "|=" "^="
404 "<<=" ">>=" "&&=" "||=")
407 (left "*" "/" "%" "**")
411 (nonassoc ">" ">=" "<" "<=")
412 (nonassoc "==" "===" "!=")
417 (defun ruby-smie--bosp ()
418 (save-excursion (skip-chars-backward " \t")
419 (or (bolp) (memq (char-before) '(?\
; ?=)))))
421 (defun ruby-smie--implicit-semi-p ()
423 (skip-chars-backward " \t")
425 (memq (char-before) '(?\
[ ?\
())
426 (and (memq (char-before)
427 '(?\
; ?- ?+ ?* ?/ ?: ?. ?, ?\\ ?& ?> ?< ?% ?~ ?^))
428 ;; Not a binary operator symbol.
429 (not (eq (char-before (1- (point))) ?
:))
430 ;; Not the end of a regexp or a percent literal.
431 (not (memq (car (syntax-after (1- (point)))) '(7 15))))
432 (and (eq (char-before) ?
\?)
433 (equal (save-excursion (ruby-smie--backward-token)) "?"))
434 (and (eq (char-before) ?
=)
435 ;; Not a symbol :==, :!=, or a foo= method.
436 (string-match "\\`\\s." (save-excursion
437 (ruby-smie--backward-token))))
438 (and (eq (char-before) ?|
)
439 (member (save-excursion (ruby-smie--backward-token))
441 (and (eq (car (syntax-after (1- (point)))) 2)
442 (member (save-excursion (ruby-smie--backward-token))
443 '("iuwu-mod" "and" "or")))
446 (eq (char-after) ?.
))))))
448 (defun ruby-smie--redundant-do-p (&optional skip
)
450 (if skip
(backward-word 1))
451 (member (nth 2 (smie-backward-sexp ";")) '("while" "until" "for"))))
453 (defun ruby-smie--opening-pipe-p ()
455 (if (eq ?|
(char-before)) (forward-char -
1))
456 (skip-chars-backward " \t\n")
457 (or (eq ?\
{ (char-before))
458 (looking-back "\\_<do" (- (point) 2)))))
460 (defun ruby-smie--closing-pipe-p ()
462 (if (eq ?|
(char-before)) (forward-char -
1))
463 (and (re-search-backward "|" (line-beginning-position) t
)
464 (ruby-smie--opening-pipe-p))))
466 (defun ruby-smie--args-separator-p (pos)
468 (< pos
(line-end-position))
469 (or (eq (char-syntax (preceding-char)) '?w
)
470 ;; FIXME: Check that the preceding token is not a keyword.
471 ;; This isn't very important most of the time, though.
472 (and (memq (preceding-char) '(?
! ??
))
473 (eq (char-syntax (char-before (1- (point)))) '?w
)))
476 (or (and (eq (char-syntax (char-after)) ?w
)
477 (not (looking-at (regexp-opt '("unless" "if" "while" "until" "or"
478 "else" "elsif" "do" "end" "and")
480 (memq (car (syntax-after pos
)) '(7 15))
481 (looking-at "[([]\\|[-+!~]\\sw\\|:\\(?:\\sw\\|\\s.\\)")))))
483 (defun ruby-smie--at-dot-call ()
484 (and (eq ?w
(char-syntax (following-char)))
485 (eq (char-before) ?.
)
486 (not (eq (char-before (1- (point))) ?.
))))
488 (defun ruby-smie--forward-token ()
490 (skip-chars-forward " \t")
492 ((and (looking-at "\n") (looking-at "\\s\"")) ;A heredoc.
493 ;; Tokenize the whole heredoc as semicolon.
494 (goto-char (scan-sexps (point) 1))
496 ((and (looking-at "[\n#]")
497 (ruby-smie--implicit-semi-p)) ;Only add implicit ; when needed.
498 (if (eolp) (forward-char 1) (forward-comment 1))
501 (forward-comment (point-max))
503 ((and (< pos
(point))
505 (ruby-smie--args-separator-p (prog1 (point) (goto-char pos
)))))
507 ((looking-at ":\\s.+")
508 (goto-char (match-end 0)) (match-string 0)) ;bug#15208.
509 ((looking-at "\\s\"") "") ;A string.
511 (let ((dot (ruby-smie--at-dot-call))
512 (tok (smie-default-forward-token)))
514 (setq tok
(concat "." tok
)))
516 ((member tok
'("unless" "if" "while" "until"))
517 (if (save-excursion (forward-word -
1) (ruby-smie--bosp))
519 ((string-match-p "\\`|[*&]?\\'" tok
)
520 (forward-char (- 1 (length tok
)))
523 ((ruby-smie--opening-pipe-p) "opening-|")
524 ((ruby-smie--closing-pipe-p) "closing-|")
526 ((and (equal tok
"") (looking-at "\\\\\n"))
527 (goto-char (match-end 0)) (ruby-smie--forward-token))
530 ((not (ruby-smie--redundant-do-p 'skip
)) tok
)
531 ((> (save-excursion (forward-comment (point-max)) (point))
533 (ruby-smie--forward-token)) ;Fully redundant.
537 (defun ruby-smie--backward-token ()
539 (forward-comment (- (point)))
541 ((and (> pos
(line-end-position)) (ruby-smie--implicit-semi-p))
542 (skip-chars-forward " \t") ";")
543 ((and (bolp) (not (bobp))) ;Presumably a heredoc.
544 ;; Tokenize the whole heredoc as semicolon.
545 (goto-char (scan-sexps (point) -
1))
547 ((and (> pos
(point)) (not (bolp))
548 (ruby-smie--args-separator-p pos
))
549 ;; We have "ID SPC ID", which is a method call, but it binds less tightly
550 ;; than commas, since a method call can also be "ID ARG1, ARG2, ARG3".
551 ;; In some textbooks, "e1 @ e2" is used to mean "call e1 with arg e2".
554 (let ((tok (smie-default-backward-token))
555 (dot (ruby-smie--at-dot-call)))
557 (setq tok
(concat "." tok
)))
558 (when (and (eq ?
: (char-before)) (string-match "\\`\\s." tok
))
559 (forward-char -
1) (setq tok
(concat ":" tok
))) ;; bug#15208.
561 ((member tok
'("unless" "if" "while" "until"))
562 (if (ruby-smie--bosp)
566 ((ruby-smie--opening-pipe-p) "opening-|")
567 ((ruby-smie--closing-pipe-p) "closing-|")
569 ((string-match-p "\\`|[*&]\\'" tok
)
572 ((and (equal tok
"") (eq ?
\\ (char-before)) (looking-at "\n"))
573 (forward-char -
1) (ruby-smie--backward-token))
576 ((not (ruby-smie--redundant-do-p)) tok
)
577 ((> (save-excursion (forward-word 1)
578 (forward-comment (point-max)) (point))
580 (ruby-smie--backward-token)) ;Fully redundant.
584 (defun ruby-smie--indent-to-stmt ()
586 (smie-backward-sexp ";")
587 (cons 'column
(smie-indent-virtual))))
589 (defun ruby-smie--indent-to-stmt-p (keyword)
590 (or (eq t ruby-align-to-stmt-keywords
)
591 (memq (intern keyword
) ruby-align-to-stmt-keywords
)))
593 (defun ruby-smie-rules (kind token
)
594 (pcase (cons kind token
)
595 (`(:elem . basic
) ruby-indent-level
)
596 ;; "foo" "bar" is the concatenation of the two strings, so the second
597 ;; should be aligned with the first.
598 (`(:elem . args
) (if (looking-at "\\s\"") 0))
599 ;; (`(:after . ",") (smie-rule-separator kind))
602 ((smie-rule-parent-p "def" "begin" "do" "class" "module" "for"
603 "while" "until" "unless"
604 "if" "then" "elsif" "else" "when"
605 "rescue" "ensure" "{")
606 (smie-rule-parent ruby-indent-level
))
607 ;; For (invalid) code between switch and case.
608 ;; (if (smie-parent-p "switch") 4)
610 (`(:before .
,(or `"(" `"[" `"{"))
612 ((and (equal token
"{")
613 (not (smie-rule-prev-p "(" "{" "[" "," "=>" "=" "return" ";"))
616 (not (eq (preceding-char) ?
:))))
617 ;; Curly block opener.
618 (ruby-smie--indent-to-stmt))
619 ((smie-rule-hanging-p)
620 ;; Treat purely syntactic block-constructs as being part of their parent,
621 ;; when the opening token is hanging and the parent is not an
624 ((eq (car (smie-indent--parent)) t
) nil
)
625 ;; When after `.', let's always de-indent,
626 ;; because when `.' is inside the line, the
627 ;; additional indentation from it looks out of place.
628 ((smie-rule-parent-p ".")
631 ;; Traverse up the parents until the parent is "." at
632 ;; indentation, or any other token.
633 (while (and (let ((parent (smie-indent--parent)))
634 (goto-char (cadr parent
))
636 (unless (integerp (car parent
)) (forward-char -
1))
637 (not (ruby-smie--bosp))))
639 (setq smie--parent nil
)
640 (smie-rule-parent-p "."))))
641 (smie-rule-parent))))
642 (t (smie-rule-parent))))))
643 (`(:after .
,(or `"(" "[" "{"))
644 ;; FIXME: Shouldn't this be the default behavior of
645 ;; `smie-indent-after-keyword'?
648 (skip-chars-forward " \t")
649 ;; `smie-rule-hanging-p' is not good enough here,
650 ;; because we want to reject hanging tokens at bol, too.
651 (unless (or (eolp) (forward-comment 1))
652 (cons 'column
(current-column)))))
653 (`(:before .
"do") (ruby-smie--indent-to-stmt))
655 (if (smie-rule-sibling-p)
656 (and ruby-align-chained-calls
0)
658 (`(:before .
,(or `"else" `"then" `"elsif" `"rescue" `"ensure"))
661 ;; Align to the previous `when', but look up the virtual
662 ;; indentation of `case'.
663 (if (smie-rule-sibling-p) 0 (smie-rule-parent)))
664 (`(:after .
,(or "=" "iuwu-mod" "+" "-" "*" "/" "&&" "||" "%" "**" "^" "&"
665 "<=>" ">" "<" ">=" "<=" "==" "===" "!=" "<<" ">>"
666 "+=" "-=" "*=" "/=" "%=" "**=" "&=" "|=" "^=" "|"
667 "<<=" ">>=" "&&=" "||=" "and" "or"))
668 (and (smie-rule-parent-p ";" nil
)
669 (smie-indent--hanging-p)
671 (`(:after .
,(or "?" ":")) ruby-indent-level
)
672 (`(:before .
,(guard (memq (intern-soft token
) ruby-alignable-keywords
)))
673 (when (not (ruby--at-indentation-p))
674 (if (ruby-smie--indent-to-stmt-p token
)
675 (ruby-smie--indent-to-stmt)
676 (cons 'column
(current-column)))))
679 (defun ruby--at-indentation-p (&optional point
)
681 (unless point
(setq point
(point)))
683 (skip-chars-forward " \t")
686 (defun ruby-imenu-create-index-in-block (prefix beg end
)
687 "Create an imenu index of methods inside a block."
688 (let ((index-alist '()) (case-fold-search nil
)
689 name next pos decl sing
)
691 (while (re-search-forward "^\\s *\\(\\(class\\s +\\|\\(class\\s *<<\\s *\\)\\|module\\s +\\)\\([^\(<\n ]+\\)\\|\\(def\\|alias\\)\\s +\\([^\(\n ]+\\)\\)" end t
)
692 (setq sing
(match-beginning 3))
693 (setq decl
(match-string 5))
694 (setq next
(match-end 0))
695 (setq name
(or (match-string 4) (match-string 6)))
696 (setq pos
(match-beginning 0))
698 ((string= "alias" decl
)
699 (if prefix
(setq name
(concat prefix name
)))
700 (push (cons name pos
) index-alist
))
701 ((string= "def" decl
)
705 ((string-match "^self\." name
)
706 (concat (substring prefix
0 -
1) (substring name
4)))
707 (t (concat prefix name
)))))
708 (push (cons name pos
) index-alist
)
709 (ruby-accurate-end-of-block end
))
711 (if (string= "self" name
)
712 (if prefix
(setq name
(substring prefix
0 -
1)))
713 (if prefix
(setq name
(concat (substring prefix
0 -
1) "::" name
)))
714 (push (cons name pos
) index-alist
))
715 (ruby-accurate-end-of-block end
)
718 (nconc (ruby-imenu-create-index-in-block
719 (concat name
(if sing
"." "#"))
720 next beg
) index-alist
))
724 (defun ruby-imenu-create-index ()
725 "Create an imenu index of all methods in the buffer."
726 (nreverse (ruby-imenu-create-index-in-block nil
(point-min) nil
)))
728 (defun ruby-accurate-end-of-block (&optional end
)
729 "Jump to the end of the current block or END, whichever is closer."
731 (end (or end
(point-max))))
734 (back-to-indentation)
735 (narrow-to-region (point) end
)
737 (while (and (setq state
(apply 'ruby-parse-partial end state
))
738 (>= (nth 2 state
) 0) (< (point) end
))))))
740 (defun ruby-mode-variables ()
741 "Set up initial buffer-local variables for Ruby mode."
742 (setq indent-tabs-mode ruby-indent-tabs-mode
)
744 (smie-setup ruby-smie-grammar
#'ruby-smie-rules
745 :forward-token
#'ruby-smie--forward-token
746 :backward-token
#'ruby-smie--backward-token
)
747 (setq-local indent-line-function
'ruby-indent-line
))
748 (setq-local require-final-newline t
)
749 (setq-local comment-start
"# ")
750 (setq-local comment-end
"")
751 (setq-local comment-column ruby-comment-column
)
752 (setq-local comment-start-skip
"#+ *")
753 (setq-local parse-sexp-ignore-comments t
)
754 (setq-local parse-sexp-lookup-properties t
)
755 (setq-local paragraph-start
(concat "$\\|" page-delimiter
))
756 (setq-local paragraph-separate paragraph-start
)
757 (setq-local paragraph-ignore-fill-prefix t
))
759 (defun ruby--insert-coding-comment (encoding)
760 "Insert a magic coding comment for ENCODING.
761 The style of the comment is controlled by `ruby-encoding-magic-comment-style'."
762 (let ((encoding-magic-comment-template
763 (pcase ruby-encoding-magic-comment-style
764 (`ruby
"# coding: %s")
765 (`emacs
"# -*- coding: %s -*-")
767 ruby-custom-encoding-magic-comment-template
))))
769 (format encoding-magic-comment-template encoding
)
772 (defun ruby--detect-encoding ()
773 (if (eq ruby-insert-encoding-magic-comment
'always-utf8
)
776 (or save-buffer-coding-system
777 buffer-file-coding-system
)))
780 (or (coding-system-get coding-system
'mime-charset
)
781 (coding-system-change-eol-conversion coding-system nil
))))
784 (if ruby-use-encoding-map
785 (let ((elt (assq coding-system ruby-encoding-map
)))
786 (if elt
(cdr elt
) coding-system
))
790 (defun ruby--encoding-comment-required-p ()
791 (or (eq ruby-insert-encoding-magic-comment
'always-utf8
)
792 (re-search-forward "[^\0-\177]" nil t
)))
794 (defun ruby-mode-set-encoding ()
795 "Insert a magic comment header with the proper encoding if necessary."
798 (goto-char (point-min))
799 (when (ruby--encoding-comment-required-p)
800 (goto-char (point-min))
801 (let ((coding-system (ruby--detect-encoding)))
803 (if (looking-at "^#!") (beginning-of-line 2))
804 (cond ((looking-at "\\s *#\\s *.*\\(en\\)?coding\\s *:\\s *\\([-a-z0-9_]*\\)")
805 ;; update existing encoding comment if necessary
806 (unless (string= (match-string 2) coding-system
)
807 (goto-char (match-beginning 2))
808 (delete-region (point) (match-end 2))
809 (insert coding-system
)))
810 ((looking-at "\\s *#.*coding\\s *[:=]"))
811 (t (when ruby-insert-encoding-magic-comment
812 (ruby--insert-coding-comment coding-system
))))
813 (when (buffer-modified-p)
814 (basic-save-buffer-1)))))))
816 (defvar ruby--electric-indent-chars
'(?. ?\
) ?
} ?\
]))
818 (defun ruby--electric-indent-p (char)
820 ((memq char ruby--electric-indent-chars
)
821 ;; Reindent after typing a char affecting indentation.
822 (ruby--at-indentation-p (1- (point))))
823 ((memq (char-after) ruby--electric-indent-chars
)
824 ;; Reindent after inserting something in front of the above.
825 (ruby--at-indentation-p (1- (point))))
826 ((or (and (>= char ?a
) (<= char ?z
)) (memq char
'(?_ ?? ?
! ?
:)))
829 (skip-chars-backward "[:alpha:]:_?!")
830 (and (ruby--at-indentation-p)
831 (looking-at (regexp-opt (cons "end" ruby-block-mid-keywords
)))
832 ;; Outdent after typing a keyword.
833 (or (eq (match-end 0) pt
)
834 ;; Reindent if it wasn't a keyword after all.
835 (eq (match-end 0) (1- pt
)))))))))
837 ;; FIXME: Remove this? It's unused here, but some redefinitions of
838 ;; `ruby-calculate-indent' in user init files still call it.
839 (defun ruby-current-indentation ()
840 "Return the indentation level of current line."
843 (back-to-indentation)
846 (defun ruby-indent-line (&optional ignored
)
847 "Correct the indentation of the current Ruby line."
849 (ruby-indent-to (ruby-calculate-indent)))
851 (defun ruby-indent-to (column)
852 "Indent the current line to COLUMN."
855 (and (< column
0) (error "Invalid nesting"))
856 (setq shift
(current-column))
859 (back-to-indentation)
860 (setq top
(current-column))
861 (skip-chars-backward " \t")
862 (if (>= shift top
) (setq shift
(- shift top
))
866 (move-to-column (+ column shift
))
868 (delete-region beg
(point))
871 (move-to-column (+ column shift
))))))
873 (defun ruby-special-char-p (&optional pos
)
874 "Return t if the character before POS is a special character.
875 If omitted, POS defaults to the current point.
876 Special characters are `?', `$', `:' when preceded by whitespace,
877 and `\\' when preceded by `?'."
878 (setq pos
(or pos
(point)))
879 (let ((c (char-before pos
)) (b (and (< (point-min) pos
)
880 (char-before (1- pos
)))))
881 (cond ((or (eq c ??
) (eq c ?$
)))
882 ((and (eq c ?
:) (or (not b
) (eq (char-syntax b
) ?
))))
883 ((eq c ?
\\) (eq b ??
)))))
885 (defun ruby-singleton-class-p (&optional pos
)
887 (when pos
(goto-char pos
))
889 (and (or (bolp) (not (eq (char-before (point)) ?_
)))
890 (looking-at ruby-singleton-class-re
))))
892 (defun ruby-expr-beg (&optional option
)
893 "Check if point is possibly at the beginning of an expression.
894 OPTION specifies the type of the expression.
895 Can be one of `heredoc', `modifier', `expr-qstr', `expr-re'."
897 (store-match-data nil
)
898 (let ((space (skip-chars-backward " \t"))
904 (and (looking-at "\\?")
905 (or (eq (char-syntax (char-before (point))) ?w
)
906 (ruby-special-char-p))))
908 ((looking-at ruby-operator-re
))
909 ((eq option
'heredoc
)
910 (and (< space
0) (not (ruby-singleton-class-p start
))))
911 ((or (looking-at "[\\[({,;]")
912 (and (looking-at "[!?]")
913 (or (not (eq option
'modifier
))
915 (save-excursion (forward-char -
1) (looking-at "\\Sw$"))))
916 (and (looking-at ruby-symbol-re
)
917 (skip-chars-backward ruby-symbol-chars
)
919 ((looking-at (regexp-opt
920 (append ruby-block-beg-keywords
921 ruby-block-op-keywords
922 ruby-block-mid-keywords
)
924 (goto-char (match-end 0))
925 (not (looking-at "\\s_")))
926 ((eq option
'expr-qstr
)
927 (looking-at "[a-zA-Z][a-zA-z0-9_]* +%[^ \t]"))
928 ((eq option
'expr-re
)
929 (looking-at "[a-zA-Z][a-zA-z0-9_]* +/[^ \t]"))
932 (defun ruby-forward-string (term &optional end no-error expand
)
933 "Move forward across one balanced pair of string delimiters.
934 Skips escaped delimiters. If EXPAND is non-nil, also ignores
935 delimiters in interpolated strings.
937 TERM should be a string containing either a single, self-matching
938 delimiter (e.g. \"/\"), or a pair of matching delimiters with the
939 close delimiter first (e.g. \"][\").
941 When non-nil, search is bounded by position END.
943 Throws an error if a balanced match is not found, unless NO-ERROR
944 is non-nil, in which case nil will be returned.
946 This command assumes the character after point is an opening
948 (let ((n 1) (c (string-to-char term
))
949 (re (concat "[^\\]\\(\\\\\\\\\\)*\\("
950 (if (string= term
"^") ;[^] is not a valid regexp
952 (concat "[" term
"]"))
953 (when expand
"\\|\\(#{\\)")
955 (while (and (re-search-forward re end no-error
)
956 (if (match-beginning 3)
957 (ruby-forward-string "}{" end no-error nil
)
958 (> (setq n
(if (eq (char-before (point)) c
)
963 ((error "Unterminated string")))))
965 (defun ruby-deep-indent-paren-p (c)
967 (cond ((listp ruby-deep-indent-paren
)
968 (let ((deep (assoc c ruby-deep-indent-paren
)))
970 (or (cdr deep
) ruby-deep-indent-paren-style
))
971 ((memq c ruby-deep-indent-paren
)
972 ruby-deep-indent-paren-style
))))
973 ((eq c ruby-deep-indent-paren
) ruby-deep-indent-paren-style
)
974 ((eq c ?\
( ) ruby-deep-arglist
)))
976 (defun ruby-parse-partial (&optional end in-string nest depth pcol indent
)
977 "TODO: document throughout function body."
978 (or depth
(setq depth
0))
979 (or indent
(setq indent
0))
980 (when (re-search-forward ruby-delimiter end
'move
)
981 (let ((pnt (point)) w re expand
)
982 (goto-char (match-beginning 0))
984 ((and (memq (char-before) '(?
@ ?$
)) (looking-at "\\sw"))
986 ((looking-at "[\"`]") ;skip string
989 (ruby-forward-string (buffer-substring (point) (1+ (point)))
993 (setq in-string
(point))
998 (re-search-forward "[^\\]\\(\\\\\\\\\\)*'" end t
))
1001 (setq in-string
(point))
1007 ((and (not (eobp)) (ruby-expr-beg 'expr-re
))
1008 (if (ruby-forward-string "/" end t t
)
1010 (setq in-string
(point))
1017 (ruby-expr-beg 'expr-qstr
)
1018 (not (looking-at "%="))
1019 (looking-at "%[QqrxWw]?\\([^a-zA-Z0-9 \t\n]\\)"))
1020 (goto-char (match-beginning 1))
1021 (setq expand
(not (memq (char-before) '(?q ?w
))))
1022 (setq w
(match-string 1))
1024 ((string= w
"[") (setq re
"]["))
1025 ((string= w
"{") (setq re
"}{"))
1026 ((string= w
"(") (setq re
")("))
1027 ((string= w
"<") (setq re
"><"))
1028 ((and expand
(string= w
"\\"))
1029 (setq w
(concat "\\" w
))))
1030 (unless (cond (re (ruby-forward-string re end t expand
))
1031 (expand (ruby-forward-string w end t t
))
1032 (t (re-search-forward
1033 (if (string= w
"\\")
1035 (concat "[^\\]\\(\\\\\\\\\\)*" w
))
1037 (setq in-string
(point))
1041 ((looking-at "\\?") ;skip ?char
1043 ((and (ruby-expr-beg)
1044 (looking-at "?\\(\\\\C-\\|\\\\M-\\)*\\\\?."))
1045 (goto-char (match-end 0)))
1048 ((looking-at "\\$") ;skip $char
1051 ((looking-at "#") ;skip comment
1055 ((looking-at "[\\[{(]")
1056 (let ((deep (ruby-deep-indent-paren-p (char-after))))
1057 (if (and deep
(or (not (eq (char-after) ?\
{)) (ruby-expr-beg)))
1059 (and (eq deep
'space
) (looking-at ".\\s +[^# \t\n]")
1060 (setq pnt
(1- (match-end 0))))
1061 (setq nest
(cons (cons (char-after (point)) pnt
) nest
))
1062 (setq pcol
(cons (cons pnt depth
) pcol
))
1064 (setq nest
(cons (cons (char-after (point)) pnt
) nest
))
1065 (setq depth
(1+ depth
))))
1068 ((looking-at "[])}]")
1069 (if (ruby-deep-indent-paren-p (matching-paren (char-after)))
1070 (setq depth
(cdr (car pcol
)) pcol
(cdr pcol
))
1071 (setq depth
(1- depth
)))
1072 (setq nest
(cdr nest
))
1074 ((looking-at ruby-block-end-re
)
1075 (if (or (and (not (bolp))
1078 (setq w
(char-after (point)))
1083 (setq w
(char-after (point)))
1088 (setq nest
(cdr nest
))
1089 (setq depth
(1- depth
)))
1091 ((looking-at "def\\s +[^(\n;]*")
1095 (not (eq ?_
(char-after (point))))))
1097 (setq nest
(cons (cons nil pnt
) nest
))
1098 (setq depth
(1+ depth
))))
1099 (goto-char (match-end 0)))
1100 ((looking-at (concat "\\_<\\(" ruby-block-beg-re
"\\)\\_>"))
1103 (or (not (looking-at "do\\_>"))
1105 (back-to-indentation)
1106 (not (looking-at ruby-non-block-do-re
)))))
1110 (setq w
(char-after (point)))
1114 (not (eq ?
! (char-after (point))))
1115 (skip-chars-forward " \t")
1116 (goto-char (match-beginning 0))
1117 (or (not (looking-at ruby-modifier-re
))
1118 (ruby-expr-beg 'modifier
))
1120 (setq nest
(cons (cons nil pnt
) nest
))
1121 (setq depth
(1+ depth
)))
1123 ((looking-at ":\\(['\"]\\)")
1124 (goto-char (match-beginning 1))
1125 (ruby-forward-string (match-string 1) end t
))
1126 ((looking-at ":\\([-,.+*/%&|^~<>]=?\\|===?\\|<=>\\|![~=]?\\)")
1127 (goto-char (match-end 0)))
1128 ((looking-at ":\\([a-zA-Z_][a-zA-Z_0-9]*[!?=]?\\)?")
1129 (goto-char (match-end 0)))
1130 ((or (looking-at "\\.\\.\\.?")
1131 (looking-at "\\.[0-9]+")
1132 (looking-at "\\.[a-zA-Z_0-9]+")
1134 (goto-char (match-end 0)))
1135 ((looking-at "^=begin")
1136 (if (re-search-forward "^=end" end t
)
1138 (setq in-string
(match-end 0))
1142 ((and (ruby-expr-beg 'heredoc
)
1143 (looking-at "<<\\(-\\)?\\(\\([\"'`]\\)\\([^\n]+?\\)\\3\\|\\(?:\\sw\\|\\s_\\)+\\)"))
1144 (setq re
(regexp-quote (or (match-string 4) (match-string 2))))
1145 (if (match-beginning 1) (setq re
(concat "\\s *" re
)))
1146 (let* ((id-end (goto-char (match-end 0)))
1147 (line-end-position (point-at-eol))
1148 (state (list in-string nest depth pcol indent
)))
1149 ;; parse the rest of the line
1150 (while (and (> line-end-position
(point))
1151 (setq state
(apply 'ruby-parse-partial
1152 line-end-position state
))))
1153 (setq in-string
(car state
)
1157 indent
(nth 4 state
))
1158 ;; skip heredoc section
1159 (if (re-search-forward (concat "^" re
"$") end
'move
)
1161 (setq in-string id-end
)
1165 ((looking-at "^__END__$")
1167 ((and (looking-at ruby-here-doc-beg-re
)
1168 (boundp 'ruby-indent-point
))
1169 (if (re-search-forward (ruby-here-doc-end-match)
1170 ruby-indent-point t
)
1172 (setq in-string
(match-end 0))
1173 (goto-char ruby-indent-point
)))
1175 (error (format "Bad string %s"
1176 (buffer-substring (point) pnt
)
1178 (list in-string nest depth pcol
))
1180 (defun ruby-parse-region (start end
)
1186 (ruby-beginning-of-indent))
1188 (narrow-to-region (point) end
)
1189 (while (and (> end
(point))
1190 (setq state
(apply 'ruby-parse-partial end state
))))))
1191 (list (nth 0 state
) ; in-string
1192 (car (nth 1 state
)) ; nest
1193 (nth 2 state
) ; depth
1194 (car (car (nth 3 state
))) ; pcol
1195 ;(car (nth 5 state)) ; indent
1198 (defun ruby-indent-size (pos nest
)
1199 "Return the indentation level in spaces NEST levels deeper than POS."
1200 (+ pos
(* (or nest
1) ruby-indent-level
)))
1202 (defun ruby-calculate-indent (&optional parse-start
)
1203 "Return the proper indentation level of the current line."
1204 ;; TODO: Document body
1207 (let ((ruby-indent-point (point))
1208 (case-fold-search nil
)
1209 state eol begin op-end
1210 (paren (progn (skip-syntax-forward " ")
1211 (and (char-after) (matching-paren (char-after)))))
1214 (goto-char parse-start
)
1215 (ruby-beginning-of-indent)
1216 (setq parse-start
(point)))
1217 (back-to-indentation)
1218 (setq indent
(current-column))
1219 (setq state
(ruby-parse-region parse-start ruby-indent-point
))
1221 ((nth 0 state
) ; within string
1222 (setq indent nil
)) ; do nothing
1223 ((car (nth 1 state
)) ; in paren
1224 (goto-char (setq begin
(cdr (nth 1 state
))))
1225 (let ((deep (ruby-deep-indent-paren-p (car (nth 1 state
)))))
1227 (cond ((and (eq deep t
) (eq (car (nth 1 state
)) paren
))
1228 (skip-syntax-backward " ")
1229 (setq indent
(1- (current-column))))
1230 ((let ((s (ruby-parse-region (point) ruby-indent-point
)))
1231 (and (nth 2 s
) (> (nth 2 s
) 0)
1232 (or (goto-char (cdr (nth 1 s
))) t
)))
1234 (setq indent
(ruby-indent-size (current-column)
1237 (setq indent
(current-column))
1238 (cond ((eq deep
'space
))
1239 (paren (setq indent
(1- indent
)))
1240 (t (setq indent
(ruby-indent-size (1- indent
) 1))))))
1241 (if (nth 3 state
) (goto-char (nth 3 state
))
1242 (goto-char parse-start
) (back-to-indentation))
1243 (setq indent
(ruby-indent-size (current-column) (nth 2 state
))))
1244 (and (eq (car (nth 1 state
)) paren
)
1245 (ruby-deep-indent-paren-p (matching-paren paren
))
1246 (search-backward (char-to-string paren
))
1247 (setq indent
(current-column)))))
1248 ((and (nth 2 state
) (> (nth 2 state
) 0)) ; in nest
1249 (if (null (cdr (nth 1 state
)))
1250 (error "Invalid nesting"))
1251 (goto-char (cdr (nth 1 state
)))
1252 (forward-word -
1) ; skip back a keyword
1253 (setq begin
(point))
1255 ((looking-at "do\\>[^_]") ; iter block is a special case
1256 (if (nth 3 state
) (goto-char (nth 3 state
))
1257 (goto-char parse-start
) (back-to-indentation))
1258 (setq indent
(ruby-indent-size (current-column) (nth 2 state
))))
1260 (setq indent
(+ (current-column) ruby-indent-level
)))))
1262 ((and (nth 2 state
) (< (nth 2 state
) 0)) ; in negative nest
1263 (setq indent
(ruby-indent-size (current-column) (nth 2 state
)))))
1265 (goto-char ruby-indent-point
)
1270 ((and (not (ruby-deep-indent-paren-p paren
))
1271 (re-search-forward ruby-negative eol t
))
1272 (and (not (eq ?_
(char-after (match-end 0))))
1273 (setq indent
(- indent ruby-indent-level
))))
1278 (or (ruby-deep-indent-paren-p t
)
1279 (null (car (nth 1 state
)))))
1280 ;; goto beginning of non-empty no-comment line
1283 (skip-chars-backward " \t\n")
1286 (if (re-search-forward "^\\s *#" end t
)
1290 ;; skip the comment at the end
1291 (skip-chars-backward " \t")
1292 (let (end (pos (point)))
1294 (while (and (re-search-forward "#" pos t
)
1295 (setq end
(1- (point)))
1296 (or (ruby-special-char-p end
)
1297 (and (setq state
(ruby-parse-region
1301 (goto-char (or end pos
))
1302 (skip-chars-backward " \t")
1303 (setq begin
(if (and end
(nth 0 state
)) pos
(cdr (nth 1 state
))))
1304 (setq state
(ruby-parse-region parse-start
(point))))
1305 (or (bobp) (forward-char -
1))
1307 (or (and (looking-at ruby-symbol-re
)
1308 (skip-chars-backward ruby-symbol-chars
)
1309 (looking-at (concat "\\<\\(" ruby-block-hanging-re
1311 (not (eq (point) (nth 3 state
)))
1313 (goto-char (match-end 0))
1314 (not (looking-at "[a-z_]"))))
1315 (and (looking-at ruby-operator-re
)
1316 (not (ruby-special-char-p))
1319 (or (not (looking-at ruby-operator-re
))
1320 (not (eq (char-before) ?
:))))
1321 ;; Operator at the end of line.
1322 (let ((c (char-after (point))))
1326 ;; (goto-char begin)
1327 ;; (skip-chars-forward " \t")
1328 ;; (not (or (eolp) (looking-at "#")
1329 ;; (and (eq (car (nth 1 state)) ?{)
1330 ;; (looking-at "|"))))))
1331 ;; Not a regexp or percent literal.
1332 (null (nth 0 (ruby-parse-region (or begin parse-start
)
1334 (or (not (eq ?|
(char-after (point))))
1336 (or (eolp) (forward-char -
1))
1338 ((search-backward "|" nil t
)
1339 (skip-chars-backward " \t\n")
1343 (not (looking-at "{")))
1346 (not (looking-at "do\\>[^_]")))))
1354 (not (looking-at (concat "\\<\\(" ruby-block-hanging-re
1356 (eq (ruby-deep-indent-paren-p t
) 'space
)
1359 (goto-char (or begin parse-start
))
1360 (skip-syntax-forward " ")
1362 ((car (nth 1 state
)) indent
)
1364 (+ indent ruby-indent-level
))))))))
1365 (goto-char ruby-indent-point
)
1367 (skip-syntax-forward " ")
1368 (if (looking-at "\\.[^.]")
1369 (+ indent ruby-indent-level
)
1372 (defun ruby-beginning-of-defun (&optional arg
)
1373 "Move backward to the beginning of the current defun.
1374 With ARG, move backward multiple defuns. Negative ARG means
1377 (let (case-fold-search)
1378 (and (re-search-backward (concat "^\\s *" ruby-defun-beg-re
"\\_>")
1380 (beginning-of-line))))
1382 (defun ruby-end-of-defun ()
1383 "Move point to the end of the current defun.
1384 The defun begins at or after the point. This function is called
1388 (let (case-fold-search)
1389 (when (looking-back (concat "^\\s *" ruby-block-end-re
))
1392 (defun ruby-beginning-of-indent ()
1393 "Backtrack to a line which can be used as a reference for
1394 calculating indentation on the lines after it."
1395 (while (and (re-search-backward ruby-indent-beg-re nil
'move
)
1396 (if (ruby-in-ppss-context-p 'anything
)
1398 ;; We can stop, then.
1399 (beginning-of-line)))))
1401 (defun ruby-move-to-block (n)
1402 "Move to the beginning (N < 0) or the end (N > 0) of the
1403 current block, a sibling block, or an outer block. Do that (abs N) times."
1404 (back-to-indentation)
1405 (let ((signum (if (> n
0) 1 -
1))
1407 (depth (or (nth 2 (ruby-parse-region (point) (line-end-position))) 0))
1410 (when (looking-at ruby-block-mid-re
)
1411 (setq depth
(+ depth signum
)))
1412 (when (< (* depth signum
) 0)
1413 ;; Moving end -> end or beginning -> beginning.
1415 (dotimes (_ (abs n
))
1417 (setq down
(save-excursion
1418 (back-to-indentation)
1419 ;; There is a block start or block end keyword on this
1420 ;; line, don't need to look for another block.
1421 (and (re-search-forward
1422 (if backward ruby-block-end-re
1423 (concat "\\_<\\(" ruby-block-beg-re
"\\)\\_>"))
1424 (line-end-position) t
)
1425 (not (nth 8 (syntax-ppss))))))
1426 (while (and (not done
) (not (if backward
(bobp) (eobp))))
1427 (forward-line signum
)
1429 ;; Skip empty and commented out lines.
1430 ((looking-at "^\\s *$"))
1431 ((looking-at "^\\s *#"))
1432 ;; Skip block comments;
1433 ((and (not backward
) (looking-at "^=begin\\>"))
1434 (re-search-forward "^=end\\>"))
1435 ((and backward
(looking-at "^=end\\>"))
1436 (re-search-backward "^=begin\\>"))
1437 ;; Jump over a multiline literal.
1438 ((ruby-in-ppss-context-p 'string
)
1439 (goto-char (nth 8 (syntax-ppss)))
1442 (when (bolp) (forward-char -
1)))) ; After a heredoc.
1444 (let ((state (ruby-parse-region (point) (line-end-position))))
1445 (unless (car state
) ; Line ends with unfinished string.
1446 (setq depth
(+ (nth 2 state
) depth
))))
1448 ;; Increased depth, we found a block.
1449 ((> (* signum depth
) 0)
1451 ;; We're at the same depth as when we started, and we've
1452 ;; encountered a block before. Stop.
1453 ((and down
(zerop depth
))
1455 ;; Lower depth, means outer block, can stop now.
1456 ((< (* signum depth
) 0)
1458 (back-to-indentation)))
1460 (defun ruby-beginning-of-block (&optional arg
)
1461 "Move backward to the beginning of the current block.
1462 With ARG, move up multiple blocks."
1464 (ruby-move-to-block (- (or arg
1))))
1466 (defun ruby-end-of-block (&optional arg
)
1467 "Move forward to the end of the current block.
1468 With ARG, move out of multiple blocks."
1470 (ruby-move-to-block (or arg
1)))
1472 (defun ruby-forward-sexp (&optional arg
)
1473 "Move forward across one balanced expression (sexp).
1474 With ARG, do it many times. Negative ARG means move backward."
1475 ;; TODO: Document body
1478 (ruby-use-smie (forward-sexp arg
))
1479 ((and (numberp arg
) (< arg
0)) (ruby-backward-sexp (- arg
)))
1481 (let ((i (or arg
1)))
1484 (skip-syntax-forward " ")
1485 (if (looking-at ",\\s *") (goto-char (match-end 0)))
1486 (cond ((looking-at "\\?\\(\\\\[CM]-\\)*\\\\?\\S ")
1487 (goto-char (match-end 0)))
1489 (skip-chars-forward ",.:;|&^~=!?\\+\\-\\*")
1490 (looking-at "\\s("))
1491 (goto-char (scan-sexps (point) 1)))
1492 ((and (looking-at (concat "\\<\\(" ruby-block-beg-re
1494 (not (eq (char-before (point)) ?.
))
1495 (not (eq (char-before (point)) ?
:)))
1498 ((looking-at "\\(\\$\\|@@?\\)?\\sw")
1500 (while (progn (forward-word 1) (looking-at "_")))
1501 (cond ((looking-at "::") (forward-char 2) t
)
1502 ((> (skip-chars-forward ".") 0))
1503 ((looking-at "\\?\\|!\\(=[~=>]\\|[^~=]\\)")
1504 (forward-char 1) nil
)))))
1508 (setq expr
(or expr
(ruby-expr-beg)
1509 (looking-at "%\\sw?\\Sw\\|[\"'`/]")))
1510 (nth 1 (setq state
(apply #'ruby-parse-partial
1513 (skip-chars-forward "<"))
1516 ((error) (forward-word 1)))
1519 (defun ruby-backward-sexp (&optional arg
)
1520 "Move backward across one balanced expression (sexp).
1521 With ARG, do it many times. Negative ARG means move forward."
1522 ;; TODO: Document body
1525 (ruby-use-smie (backward-sexp arg
))
1526 ((and (numberp arg
) (< arg
0)) (ruby-forward-sexp (- arg
)))
1528 (let ((i (or arg
1)))
1531 (skip-chars-backward " \t\n,.:;|&^~=!?\\+\\-\\*")
1533 (cond ((looking-at "\\s)")
1534 (goto-char (scan-sexps (1+ (point)) -
1))
1535 (pcase (char-before)
1536 (`?%
(forward-char -
1))
1537 ((or `?q
`?Q
`?w
`?W
`?r
`?x
)
1538 (if (eq (char-before (1- (point))) ?%
)
1539 (forward-char -
2))))
1541 ((looking-at "\\s\"\\|\\\\\\S_")
1542 (let ((c (char-to-string (char-before (match-end 0)))))
1543 (while (and (search-backward c
)
1544 (eq (logand (skip-chars-backward "\\") 1)
1547 ((looking-at "\\s.\\|\\s\\")
1548 (if (ruby-special-char-p) (forward-char -
1)))
1549 ((looking-at "\\s(") nil
)
1552 (while (progn (forward-word -
1)
1553 (pcase (char-before)
1555 (`?.
(forward-char -
1) t
)
1558 (and (eq (char-before) (char-after))
1562 (eq (char-before) :)))))
1563 (if (looking-at ruby-block-end-re
)
1564 (ruby-beginning-of-block))
1570 (defun ruby-indent-exp (&optional ignored
)
1571 "Indent each line in the balanced expression following the point."
1573 (let ((here (point-marker)) start top column
(nest t
))
1574 (set-marker-insertion-type here t
)
1578 (setq start
(point) top
(current-indentation))
1579 (while (and (not (eobp))
1581 (setq column
(ruby-calculate-indent start
))
1582 (cond ((> column top
)
1584 ((and (= column top
) nest
)
1585 (setq nest nil
) t
))))
1586 (ruby-indent-to column
)
1587 (beginning-of-line 2)))
1589 (set-marker here nil
))))
1591 (defun ruby-add-log-current-method ()
1592 "Return the current method name as a string.
1593 This string includes all namespaces.
1602 See `add-log-current-defun-function'."
1605 (let* ((indent 0) mname mlist
1609 (concat "^[ \t]*" re
"[ \t]+"
1611 ;; \\. and :: for class methods
1612 "\\([A-Za-z_]" ruby-symbol-re
"*\\|\\.\\|::" "\\)"
1614 (definition-re (funcall make-definition-re ruby-defun-beg-re
))
1615 (module-re (funcall make-definition-re
"\\(class\\|module\\)")))
1616 ;; Get the current method definition (or class/module).
1617 (when (re-search-backward definition-re nil t
)
1618 (goto-char (match-beginning 1))
1619 (if (not (string-equal "def" (match-string 1)))
1620 (setq mlist
(list (match-string 2)))
1621 ;; We're inside the method. For classes and modules,
1622 ;; this check is skipped for performance.
1623 (when (ruby-block-contains-point start
)
1624 (setq mname
(match-string 2))))
1625 (setq indent
(current-column))
1626 (beginning-of-line))
1627 ;; Walk up the class/module nesting.
1628 (while (and (> indent
0)
1629 (re-search-backward module-re nil t
))
1630 (goto-char (match-beginning 1))
1631 (when (< (current-column) indent
)
1632 (setq mlist
(cons (match-string 2) mlist
))
1633 (setq indent
(current-column))
1634 (beginning-of-line)))
1635 ;; Process the method name.
1637 (let ((mn (split-string mname
"\\.\\|::")))
1640 (unless (string-equal "self" (car mn
)) ; def self.foo
1642 (let ((ml (nreverse mlist
)))
1643 ;; If the method name references one of the
1644 ;; containing modules, drop the more nested ones.
1646 (if (string-equal (car ml
) (car mn
))
1647 (setq mlist
(nreverse (cdr ml
)) ml nil
))
1648 (or (setq ml
(cdr ml
)) (nreverse mlist
))))
1650 (setcdr (last mlist
) (butlast mn
))
1651 (setq mlist
(butlast mn
))))
1652 (setq mname
(concat "." (car (last mn
)))))
1653 ;; See if the method is in singleton class context.
1654 (let ((in-singleton-class
1655 (when (re-search-forward ruby-singleton-class-re start t
)
1656 (goto-char (match-beginning 0))
1657 ;; FIXME: Optimize it out, too?
1658 ;; This can be slow in a large file, but
1659 ;; unlike class/module declaration
1660 ;; indentations, method definitions can be
1661 ;; intermixed with these, and may or may not
1662 ;; be additionally indented after visibility
1664 (ruby-block-contains-point start
))))
1666 (if in-singleton-class
"." "#")
1668 ;; Generate the string.
1670 (setq mlist
(mapconcat (function identity
) mlist
"::")))
1672 (if mlist
(concat mlist mname
) mname
)
1675 (defun ruby-block-contains-point (pt)
1681 (defun ruby-brace-to-do-end (orig end
)
1682 (let (beg-marker end-marker
)
1684 (when (eq (char-before) ?\
})
1686 (when (save-excursion
1687 (skip-chars-backward " \t")
1691 (setq end-marker
(point-marker))
1692 (when (and (not (eobp)) (eq (char-syntax (char-after)) ?w
))
1696 (when (eq (char-syntax (char-before)) ?w
)
1699 (setq beg-marker
(point-marker))
1700 (when (looking-at "\\(\\s \\)*|")
1701 (unless (match-beginning 1)
1703 (goto-char (1+ (match-end 0)))
1704 (search-forward "|"))
1705 (unless (looking-at "\\s *$")
1707 (indent-region beg-marker end-marker
)
1708 (goto-char beg-marker
)
1711 (defun ruby-do-end-to-brace (orig end
)
1712 (let (beg-marker end-marker beg-pos end-pos
)
1713 (goto-char (- end
3))
1714 (when (looking-at ruby-block-end-re
)
1716 (setq end-marker
(point-marker))
1720 ;; Maybe this should be customizable, let's see if anyone asks.
1722 (setq beg-marker
(point-marker))
1723 (when (looking-at "\\s +|")
1724 (delete-char (- (match-end 0) (match-beginning 0) 1))
1726 (re-search-forward "|" (line-end-position) t
))
1728 (skip-chars-forward " \t\n\r")
1729 (setq beg-pos
(point))
1730 (goto-char end-marker
)
1731 (skip-chars-backward " \t\n\r")
1732 (setq end-pos
(point)))
1735 (and (= (line-number-at-pos beg-pos
) (line-number-at-pos end-pos
))
1736 (< (+ (current-column) (- end-pos beg-pos
) 2) fill-column
)))
1738 (goto-char end-marker
)
1739 (just-one-space -
1))
1740 (goto-char beg-marker
)
1743 (defun ruby-toggle-block ()
1744 "Toggle block type from do-end to braces or back.
1745 The block must begin on the current line or above it and end after the point.
1746 If the result is do-end block, it will always be multiline."
1748 (let ((start (point)) beg end
)
1751 (if (and (re-search-backward "\\(?:[^#]\\)\\({\\)\\|\\(\\_<do\\_>\\)")
1753 (goto-char (or (match-beginning 1) (match-beginning 2)))
1755 (save-match-data (ruby-forward-sexp))
1758 (if (match-beginning 1)
1759 (ruby-brace-to-do-end beg end
)
1760 (ruby-do-end-to-brace beg end
)))
1761 (goto-char start
))))
1764 (defconst ruby-percent-literal-beg-re
1765 "\\(%\\)[qQrswWxIi]?\\([[:punct:]]\\)"
1766 "Regexp to match the beginning of percent literal.")
1768 (defconst ruby-syntax-methods-before-regexp
1769 '("gsub" "gsub!" "sub" "sub!" "scan" "split" "split!" "index" "match"
1770 "assert_match" "Given" "Then" "When")
1771 "Methods that can take regexp as the first argument.
1772 It will be properly highlighted even when the call omits parens.")
1774 (defvar ruby-syntax-before-regexp-re
1776 ;; Special tokens that can't be followed by a division operator.
1778 ;; Distinguish ternary operator tokens.
1779 ;; FIXME: They don't really have to be separated with spaces.
1781 ;; Control flow keywords and operators following bol or whitespace.
1782 "\\|\\(?:^\\|\\s \\)"
1783 (regexp-opt '("if" "elsif" "unless" "while" "until" "when" "and"
1784 "or" "not" "&&" "||"))
1785 ;; Method name from the list.
1787 (regexp-opt ruby-syntax-methods-before-regexp
)
1789 "Regexp to match text that can be followed by a regular expression."))
1791 (defun ruby-syntax-propertize-function (start end
)
1792 "Syntactic keywords for Ruby mode. See `syntax-propertize-function'."
1793 (let (case-fold-search)
1795 (remove-text-properties start end
'(ruby-expansion-match-data))
1796 (ruby-syntax-propertize-heredoc end
)
1797 (ruby-syntax-enclosing-percent-literal end
)
1799 (syntax-propertize-rules
1800 ;; $' $" $` .... are variables.
1801 ;; ?' ?" ?` are character literals (one-char strings in 1.9+).
1802 ("\\([?$]\\)[#\"'`]"
1803 (1 (unless (save-excursion
1804 ;; Not within a string.
1805 (nth 3 (syntax-ppss (match-beginning 0))))
1806 (string-to-syntax "\\"))))
1807 ;; Part of symbol when at the end of a method name.
1809 (0 (unless (save-excursion
1810 (or (nth 8 (syntax-ppss (match-beginning 0)))
1811 (let (parse-sexp-lookup-properties)
1812 (zerop (skip-syntax-backward "w_")))
1813 (memq (preceding-char) '(?
@ ?$
))))
1814 (string-to-syntax "_"))))
1815 ;; Regular expressions. Start with matching unescaped slash.
1816 ("\\(?:\\=\\|[^\\]\\)\\(?:\\\\\\\\\\)*\\(/\\)"
1817 (1 (let ((state (save-excursion (syntax-ppss (match-beginning 1)))))
1819 ;; Beginning of a regexp.
1820 (and (null (nth 8 state
))
1823 (looking-back ruby-syntax-before-regexp-re
1825 ;; End of regexp. We don't match the whole
1826 ;; regexp at once because it can have
1827 ;; string interpolation inside, or span
1829 (eq ?
/ (nth 3 state
)))
1830 (string-to-syntax "\"/")))))
1831 ;; Expression expansions in strings. We're handling them
1832 ;; here, so that the regexp rule never matches inside them.
1833 (ruby-expression-expansion-re
1834 (0 (ignore (ruby-syntax-propertize-expansion))))
1835 ("^=en\\(d\\)\\_>" (1 "!"))
1836 ("^\\(=\\)begin\\_>" (1 "!"))
1837 ;; Handle here documents.
1838 ((concat ruby-here-doc-beg-re
".*\\(\n\\)")
1839 (7 (unless (or (nth 8 (save-excursion
1840 (syntax-ppss (match-beginning 0))))
1841 (ruby-singleton-class-p (match-beginning 0)))
1842 (put-text-property (match-beginning 7) (match-end 7)
1843 'syntax-table
(string-to-syntax "\""))
1844 (ruby-syntax-propertize-heredoc end
))))
1845 ;; Handle percent literals: %w(), %q{}, etc.
1846 ((concat "\\(?:^\\|[[ \t\n<+(,=]\\)" ruby-percent-literal-beg-re
)
1847 (1 (prog1 "|" (ruby-syntax-propertize-percent-literal end
)))))
1850 (defun ruby-syntax-propertize-heredoc (limit)
1851 (let ((ppss (syntax-ppss))
1853 (when (eq ?
\n (nth 3 ppss
))
1855 (goto-char (nth 8 ppss
))
1857 (while (re-search-forward ruby-here-doc-beg-re
1858 (line-end-position) t
)
1859 (unless (ruby-singleton-class-p (match-beginning 0))
1860 (push (concat (ruby-here-doc-end-match) "\n") res
))))
1862 ;; With multiple openers on the same line, we don't know in which
1863 ;; part `start' is, so we have to go back to the beginning.
1865 (goto-char (nth 8 ppss
))
1866 (setq res
(nreverse res
)))
1867 (while (and res
(re-search-forward (pop res
) limit
'move
))
1869 (put-text-property (1- (point)) (point)
1870 'syntax-table
(string-to-syntax "\""))))
1871 ;; End up at bol following the heredoc openers.
1872 ;; Propertize expression expansions from this point forward.
1875 (defun ruby-syntax-enclosing-percent-literal (limit)
1876 (let ((state (syntax-ppss))
1878 ;; When already inside percent literal, re-propertize it.
1879 (when (eq t
(nth 3 state
))
1880 (goto-char (nth 8 state
))
1881 (when (looking-at ruby-percent-literal-beg-re
)
1882 (ruby-syntax-propertize-percent-literal limit
))
1883 (when (< (point) start
) (goto-char start
)))))
1885 (defun ruby-syntax-propertize-percent-literal (limit)
1886 (goto-char (match-beginning 2))
1887 ;; Not inside a simple string or comment.
1888 (when (eq t
(nth 3 (syntax-ppss)))
1889 (let* ((op (char-after))
1890 (ops (char-to-string op
))
1891 (cl (or (cdr (aref (syntax-table) op
))
1892 (cdr (assoc op
'((?
< . ?
>))))))
1893 parse-sexp-lookup-properties
)
1897 (if cl
; Paired delimiters.
1898 ;; Delimiter pairs of the same kind can be nested
1899 ;; inside the literal, as long as they are balanced.
1900 ;; Create syntax table that ignores other characters.
1901 (with-syntax-table (make-char-table 'syntax-table nil
)
1902 (modify-syntax-entry op
(concat "(" (char-to-string cl
)))
1903 (modify-syntax-entry cl
(concat ")" ops
))
1904 (modify-syntax-entry ?
\\ "\\")
1906 (narrow-to-region (point) limit
)
1907 (forward-list))) ; skip to the paired character
1908 ;; Single character delimiter.
1909 (re-search-forward (concat "[^\\]\\(?:\\\\\\\\\\)*"
1910 (regexp-quote ops
)) limit nil
))
1911 ;; Found the closing delimiter.
1912 (put-text-property (1- (point)) (point) 'syntax-table
1913 (string-to-syntax "|")))
1914 ;; Unclosed literal, do nothing.
1915 ((scan-error search-failed
)))))))
1917 (defun ruby-syntax-propertize-expansion ()
1918 ;; Save the match data to a text property, for font-locking later.
1919 ;; Set the syntax of all double quotes and backticks to punctuation.
1920 (let* ((beg (match-beginning 2))
1922 (state (and beg
(save-excursion (syntax-ppss beg
)))))
1923 (when (ruby-syntax-expansion-allowed-p state
)
1924 (put-text-property beg
(1+ beg
) 'ruby-expansion-match-data
1927 (while (re-search-forward "[\"`]" end
'move
)
1928 (put-text-property (match-beginning 0) (match-end 0)
1929 'syntax-table
(string-to-syntax "."))))))
1931 (defun ruby-syntax-expansion-allowed-p (parse-state)
1932 "Return non-nil if expression expansion is allowed."
1933 (let ((term (nth 3 parse-state
)))
1935 ((memq term
'(?
\" ?
` ?
\n ?
/)))
1939 (goto-char (nth 8 parse-state
))
1940 (looking-at "%\\(?:[QWrxI]\\|\\W\\)")))))))
1942 (defun ruby-syntax-propertize-expansions (start end
)
1945 (while (re-search-forward ruby-expression-expansion-re end
'move
)
1946 (ruby-syntax-propertize-expansion))))
1948 (defun ruby-in-ppss-context-p (context &optional ppss
)
1949 (let ((ppss (or ppss
(syntax-ppss (point)))))
1951 ((eq context
'anything
)
1954 ((eq context
'string
)
1956 ((eq context
'heredoc
)
1957 (eq ?
\n (nth 3 ppss
)))
1958 ((eq context
'non-heredoc
)
1959 (and (ruby-in-ppss-context-p 'anything
)
1960 (not (ruby-in-ppss-context-p 'heredoc
))))
1961 ((eq context
'comment
)
1965 "Internal error on `ruby-in-ppss-context-p': "
1966 "context name `" (symbol-name context
) "' is unknown"))))
1969 (defvar ruby-font-lock-syntax-table
1970 (let ((tbl (copy-syntax-table ruby-mode-syntax-table
)))
1971 (modify-syntax-entry ?_
"w" tbl
)
1973 "The syntax table to use for fontifying Ruby mode buffers.
1974 See `font-lock-syntax-table'.")
1976 (defconst ruby-font-lock-keyword-beg-re
"\\(?:^\\|[^.@$]\\|\\.\\.\\)")
1978 (defconst ruby-font-lock-keywords
1980 ("^\\s *def\\s +\\(?:[^( \t\n.]*\\.\\)?\\([^( \t\n]+\\)"
1981 1 font-lock-function-name-face
)
1984 ruby-font-lock-keyword-beg-re
2020 (1 font-lock-keyword-face
))
2021 ;; Core methods that have required arguments.
2023 ruby-font-lock-keyword-beg-re
2025 '( ;; built-in methods on Kernel
2052 ;; keyword-like private methods on Module
2066 (1 (unless (looking-at " *\\(?:[]|,.)}=]\\|$\\)")
2067 font-lock-builtin-face
)))
2068 ;; Kernel methods that have no required arguments.
2070 ruby-font-lock-keyword-beg-re
2094 (1 font-lock-builtin-face
))
2095 ;; Here-doc beginnings.
2096 (,ruby-here-doc-beg-re
2097 (0 (unless (ruby-singleton-class-p (match-beginning 0))
2098 'font-lock-string-face
)))
2099 ;; Perl-ish keywords.
2100 "\\_<\\(?:BEGIN\\|END\\)\\_>\\|^__END__$"
2102 (,(concat ruby-font-lock-keyword-beg-re
2103 "\\_<\\(nil\\|self\\|true\\|false\\)\\_>")
2104 1 font-lock-variable-name-face
)
2105 ;; Keywords that evaluate to certain values.
2106 ("\\_<__\\(?:LINE\\|ENCODING\\|FILE\\)__\\_>"
2107 (0 font-lock-variable-name-face
))
2109 ("\\(^\\|[^:]\\)\\(:\\([-+~]@?\\|[/%&|^`]\\|\\*\\*?\\|<\\(<\\|=>?\\)?\\|>[>=]?\\|===?\\|=~\\|![~=]?\\|\\[\\]=?\\|@?\\(\\w\\|_\\)+\\([!?=]\\|\\b_*\\)\\|#{[^}\n\\\\]*\\(\\\\.[^}\n\\\\]*\\)*}\\)\\)"
2110 2 font-lock-constant-face
)
2112 ("\\(\\$\\([^a-zA-Z0-9 \n]\\|[0-9]\\)\\)\\W"
2113 1 font-lock-variable-name-face
)
2114 ("\\(\\$\\|@\\|@@\\)\\(\\w\\|_\\)+"
2115 0 font-lock-variable-name-face
)
2117 ("\\(?:\\_<\\|::\\)\\([A-Z]+\\(\\w\\|_\\)*\\)"
2118 1 (unless (eq ?\
( (char-after)) font-lock-type-face
))
2119 ("\\(^\\s *\\|[\[\{\(,]\\s *\\|\\sw\\s +\\)\\(\\(\\sw\\|_\\)+\\):[^:]"
2120 (2 font-lock-constant-face
))
2121 ;; Conversion methods on Kernel.
2122 (,(concat ruby-font-lock-keyword-beg-re
2123 (regexp-opt '("Array" "Complex" "Float" "Hash"
2124 "Integer" "Rational" "String") 'symbols
))
2125 (1 font-lock-builtin-face
))
2126 ;; Expression expansion.
2127 (ruby-match-expression-expansion
2128 2 font-lock-variable-name-face t
)
2130 ("[^[:alnum:]_]\\(!\\)[^=]"
2131 1 font-lock-negation-char-face
)
2132 ;; Character literals.
2133 ;; FIXME: Support longer escape sequences.
2134 ("\\_<\\?\\\\?\\S " 0 font-lock-string-face
)
2136 "Additional expressions to highlight in Ruby mode.")
2138 (defun ruby-match-expression-expansion (limit)
2139 (let* ((prop 'ruby-expansion-match-data
)
2140 (pos (next-single-char-property-change (point) prop nil limit
))
2142 (when (and pos
(> pos
(point)))
2144 (or (and (setq value
(get-text-property pos prop
))
2145 (progn (set-match-data value
) t
))
2146 (ruby-match-expression-expansion limit
)))))
2149 (define-derived-mode ruby-mode prog-mode
"Ruby"
2150 "Major mode for editing Ruby code.
2153 (ruby-mode-variables)
2155 (setq-local imenu-create-index-function
'ruby-imenu-create-index
)
2156 (setq-local add-log-current-defun-function
'ruby-add-log-current-method
)
2157 (setq-local beginning-of-defun-function
'ruby-beginning-of-defun
)
2158 (setq-local end-of-defun-function
'ruby-end-of-defun
)
2160 (add-hook 'after-save-hook
'ruby-mode-set-encoding nil
'local
)
2161 (add-hook 'electric-indent-functions
'ruby--electric-indent-p nil
'local
)
2163 (setq-local font-lock-defaults
'((ruby-font-lock-keywords) nil nil
))
2164 (setq-local font-lock-keywords ruby-font-lock-keywords
)
2165 (setq-local font-lock-syntax-table ruby-font-lock-syntax-table
)
2167 (setq-local syntax-propertize-function
#'ruby-syntax-propertize-function
))
2169 ;;; Invoke ruby-mode when appropriate
2172 (add-to-list 'auto-mode-alist
2173 (cons (purecopy (concat "\\(?:\\."
2174 "rb\\|ru\\|rake\\|thor"
2175 "\\|jbuilder\\|gemspec\\|podspec"
2177 "\\(?:Gem\\|Rake\\|Cap\\|Thor"
2178 "\\|Vagrant\\|Guard\\|Pod\\)file"
2179 "\\)\\'")) 'ruby-mode
))
2182 (dolist (name (list "ruby" "rbx" "jruby" "ruby1.9" "ruby1.8"))
2183 (add-to-list 'interpreter-mode-alist
(cons (purecopy name
) 'ruby-mode
)))
2185 (provide 'ruby-mode
)
2187 ;;; ruby-mode.el ends here