1 ;;; ruby-mode.el --- Major mode for editing Ruby files
3 ;; Copyright (C) 1994-2015 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\\|_\\)+\\|\\$[^a-zA-Z \n]\\)\\)"))
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
)
155 (define-key map
(kbd "C-c '") 'ruby-toggle-string-quotes
)
157 "Keymap used in Ruby mode.")
164 ["Beginning of Block" ruby-beginning-of-block t
]
165 ["End of Block" ruby-end-of-block t
]
166 ["Toggle Block" ruby-toggle-block t
]
168 ["Toggle String Quotes" ruby-toggle-string-quotes t
]
170 ["Backward Sexp" ruby-backward-sexp
171 :visible
(not ruby-use-smie
)]
172 ["Backward Sexp" backward-sexp
173 :visible ruby-use-smie
]
174 ["Forward Sexp" ruby-forward-sexp
175 :visible
(not ruby-use-smie
)]
176 ["Forward Sexp" forward-sexp
177 :visible ruby-use-smie
]
178 ["Indent Sexp" ruby-indent-exp
179 :visible
(not ruby-use-smie
)]
180 ["Indent Sexp" prog-indent-sexp
181 :visible ruby-use-smie
]))
183 (defvar ruby-mode-syntax-table
184 (let ((table (make-syntax-table)))
185 (modify-syntax-entry ?
\' "\"" table
)
186 (modify-syntax-entry ?
\" "\"" table
)
187 (modify-syntax-entry ?\
` "\"" table
)
188 (modify-syntax-entry ?
# "<" table
)
189 (modify-syntax-entry ?
\n ">" 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
)
208 (modify-syntax-entry ?\
} "){" table
)
209 (modify-syntax-entry ?\
[ "(]" table
)
210 (modify-syntax-entry ?\
] ")[" table
)
212 "Syntax table to use in Ruby mode.")
214 (defcustom ruby-indent-tabs-mode nil
215 "Indentation can insert tabs in Ruby mode if this is non-nil."
220 (defcustom ruby-indent-level
2
221 "Indentation of Ruby statements."
226 (defcustom ruby-comment-column
(default-value 'comment-column
)
227 "Indentation column of comments."
232 (defconst ruby-alignable-keywords
'(if while unless until begin case for def
)
233 "Keywords that can be used in `ruby-align-to-stmt-keywords'.")
235 (defcustom ruby-align-to-stmt-keywords
'(def)
236 "Keywords after which we align the expression body to statement.
238 When nil, an expression that begins with one these keywords is
239 indented to the column of the keyword. Example:
247 If this value is t or contains a symbol with the name of given
248 keyword, the expression is indented to align to the beginning of
257 Only has effect when `ruby-use-smie' is t.
260 (const :tag
"None" nil
)
262 (repeat :tag
"User defined"
264 (lambda (kw) (list 'const kw
))
265 ruby-alignable-keywords
))))
270 (defcustom ruby-align-chained-calls nil
271 "If non-nil, align chained method calls.
273 Each method call on a separate line will be aligned to the column
276 Only has effect when `ruby-use-smie' is t."
282 (defcustom ruby-deep-arglist t
283 "Deep indent lists in parenthesis when non-nil.
284 Also ignores spaces after parenthesis when `space'.
285 Only has effect when `ruby-use-smie' is nil."
290 ;; FIXME Woefully under documented. What is the point of the last t?.
291 (defcustom ruby-deep-indent-paren
'(?\
( ?\
[ ?\
] t
)
292 "Deep indent lists in parenthesis when non-nil.
293 The value t means continuous line.
294 Also ignores spaces after parenthesis when `space'.
295 Only has effect when `ruby-use-smie' is nil."
296 :type
'(choice (const nil
)
298 (repeat (choice character
299 (cons character
(choice (const nil
)
305 (defcustom ruby-deep-indent-paren-style
'space
306 "Default deep indent style.
307 Only has effect when `ruby-use-smie' is nil."
308 :type
'(choice (const t
) (const nil
) (const space
))
311 (defcustom ruby-encoding-map
312 '((us-ascii . nil
) ;; Do not put coding: us-ascii
313 (shift-jis . cp932
) ;; Emacs charset name of Shift_JIS
314 (shift_jis . cp932
) ;; MIME charset name of Shift_JIS
315 (japanese-cp932 . cp932
)) ;; Emacs charset name of CP932
316 "Alist to map encoding name from Emacs to Ruby.
317 Associating an encoding name with nil means it needs not be
318 explicitly declared in magic comment."
319 :type
'(repeat (cons (symbol :tag
"From") (symbol :tag
"To")))
322 (defcustom ruby-insert-encoding-magic-comment t
323 "Insert a magic Ruby encoding comment upon save if this is non-nil.
324 The encoding will be auto-detected. The format of the encoding comment
325 is customizable via `ruby-encoding-magic-comment-style'.
327 When set to `always-utf8' an utf-8 comment will always be added,
328 even if it's not required."
329 :type
'boolean
:group
'ruby
)
331 (defcustom ruby-encoding-magic-comment-style
'ruby
332 "The style of the magic encoding comment to use."
334 (const :tag
"Emacs Style" emacs
)
335 (const :tag
"Ruby Style" ruby
)
336 (const :tag
"Custom Style" custom
))
340 (defcustom ruby-custom-encoding-magic-comment-template
"# encoding: %s"
341 "A custom encoding comment template.
342 It is used when `ruby-encoding-magic-comment-style' is set to `custom'."
347 (defcustom ruby-use-encoding-map t
348 "Use `ruby-encoding-map' to set encoding magic comment if this is non-nil."
349 :type
'boolean
:group
'ruby
)
355 ;; Here's a simplified BNF grammar, for reference:
356 ;; http://www.cse.buffalo.edu/~regan/cse305/RubyBNF.pdf
357 (defconst ruby-smie-grammar
362 (insts (inst) (insts ";" insts
))
363 (inst (exp) (inst "iuwu-mod" exp
)
364 ;; Somewhat incorrect (both can be used multiple times),
365 ;; but avoids lots of conflicts:
366 (exp "and" exp
) (exp "or" exp
))
367 (exp (exp1) (exp "," exp
) (exp "=" exp
)
369 (exp1 (exp2) (exp2 "?" exp1
":" exp1
))
370 (exp2 (exp3) (exp3 "." exp2
))
371 (exp3 ("def" insts
"end")
372 ("begin" insts-rescue-insts
"end")
374 ("class" insts
"end") ("module" insts
"end")
375 ("for" for-body
"end")
379 ("while" insts
"end")
380 ("until" insts
"end")
381 ("unless" insts
"end")
383 ("case" cases
"end"))
384 (formal-params ("opening-|" exp
"closing-|"))
385 (for-body (for-head ";" insts
))
386 (for-head (id "in" exp
))
387 (cases (exp "then" insts
)
388 (cases "when" cases
) (insts "else" insts
))
389 (expseq (exp) );;(expseq "," expseq)
390 (hashvals (id "=>" exp1
) (hashvals "," hashvals
))
391 (insts-rescue-insts (insts)
392 (insts-rescue-insts "rescue" insts-rescue-insts
)
393 (insts-rescue-insts "ensure" insts-rescue-insts
))
394 (itheni (insts) (exp "then" insts
))
395 (ielsei (itheni) (itheni "else" insts
))
396 (if-body (ielsei) (if-body "elsif" if-body
)))
397 '((nonassoc "in") (assoc ";") (right " @ ")
398 (assoc ",") (right "="))
401 '((assoc "rescue" "ensure"))
406 (right "+=" "-=" "*=" "/=" "%=" "**=" "&=" "|=" "^="
407 "<<=" ">>=" "&&=" "||=")
410 (left "*" "/" "%" "**")
414 (nonassoc ">" ">=" "<" "<=")
415 (nonassoc "==" "===" "!=")
420 (defun ruby-smie--bosp ()
421 (save-excursion (skip-chars-backward " \t")
422 (or (bolp) (memq (char-before) '(?\
; ?=)))))
424 (defun ruby-smie--implicit-semi-p ()
426 (skip-chars-backward " \t")
428 (memq (char-before) '(?\
[ ?\
())
429 (and (memq (char-before)
430 '(?\
; ?- ?+ ?* ?/ ?: ?. ?, ?\\ ?& ?> ?< ?% ?~ ?^))
431 ;; Not a binary operator symbol.
432 (not (eq (char-before (1- (point))) ?
:))
433 ;; Not the end of a regexp or a percent literal.
434 (not (memq (car (syntax-after (1- (point)))) '(7 15))))
435 (and (eq (char-before) ?
\?)
436 (equal (save-excursion (ruby-smie--backward-token)) "?"))
437 (and (eq (char-before) ?
=)
438 ;; Not a symbol :==, :!=, or a foo= method.
439 (string-match "\\`\\s." (save-excursion
440 (ruby-smie--backward-token))))
441 (and (eq (char-before) ?|
)
442 (member (save-excursion (ruby-smie--backward-token))
444 (and (eq (car (syntax-after (1- (point)))) 2)
445 (member (save-excursion (ruby-smie--backward-token))
446 '("iuwu-mod" "and" "or")))
449 (eq (char-after) ?.
))))))
451 (defun ruby-smie--redundant-do-p (&optional skip
)
453 (if skip
(backward-word 1))
454 (member (nth 2 (smie-backward-sexp ";")) '("while" "until" "for"))))
456 (defun ruby-smie--opening-pipe-p ()
458 (if (eq ?|
(char-before)) (forward-char -
1))
459 (skip-chars-backward " \t\n")
460 (or (eq ?\
{ (char-before))
461 (looking-back "\\_<do" (- (point) 2)))))
463 (defun ruby-smie--closing-pipe-p ()
465 (if (eq ?|
(char-before)) (forward-char -
1))
466 (and (re-search-backward "|" (line-beginning-position) t
)
467 (ruby-smie--opening-pipe-p))))
469 (defun ruby-smie--args-separator-p (pos)
471 (< pos
(line-end-position))
472 (or (eq (char-syntax (preceding-char)) '?w
)
473 ;; FIXME: Check that the preceding token is not a keyword.
474 ;; This isn't very important most of the time, though.
475 (and (memq (preceding-char) '(?
! ??
))
476 (eq (char-syntax (char-before (1- (point)))) '?w
)))
479 (or (and (eq (char-syntax (char-after)) ?w
)
480 (not (looking-at (regexp-opt '("unless" "if" "while" "until" "or"
481 "else" "elsif" "do" "end" "and")
483 (memq (car (syntax-after pos
)) '(7 15))
484 (looking-at "[([]\\|[-+!~]\\sw\\|:\\(?:\\sw\\|\\s.\\)")))))
486 (defun ruby-smie--at-dot-call ()
487 (and (eq ?w
(char-syntax (following-char)))
488 (eq (char-before) ?.
)
489 (not (eq (char-before (1- (point))) ?.
))))
491 (defun ruby-smie--forward-token ()
493 (skip-chars-forward " \t")
495 ((and (looking-at "\n") (looking-at "\\s\"")) ;A heredoc.
496 ;; Tokenize the whole heredoc as semicolon.
497 (goto-char (scan-sexps (point) 1))
499 ((and (looking-at "[\n#]")
500 (ruby-smie--implicit-semi-p)) ;Only add implicit ; when needed.
501 (if (eolp) (forward-char 1) (forward-comment 1))
504 (forward-comment (point-max))
506 ((and (< pos
(point))
508 (ruby-smie--args-separator-p (prog1 (point) (goto-char pos
)))))
510 ((looking-at ":\\s.+")
511 (goto-char (match-end 0)) (match-string 0)) ;bug#15208.
512 ((looking-at "\\s\"") "") ;A string.
514 (let ((dot (ruby-smie--at-dot-call))
515 (tok (smie-default-forward-token)))
517 (setq tok
(concat "." tok
)))
519 ((member tok
'("unless" "if" "while" "until"))
520 (if (save-excursion (forward-word -
1) (ruby-smie--bosp))
522 ((string-match-p "\\`|[*&]?\\'" tok
)
523 (forward-char (- 1 (length tok
)))
526 ((ruby-smie--opening-pipe-p) "opening-|")
527 ((ruby-smie--closing-pipe-p) "closing-|")
529 ((and (equal tok
"") (looking-at "\\\\\n"))
530 (goto-char (match-end 0)) (ruby-smie--forward-token))
533 ((not (ruby-smie--redundant-do-p 'skip
)) tok
)
534 ((> (save-excursion (forward-comment (point-max)) (point))
536 (ruby-smie--forward-token)) ;Fully redundant.
540 (defun ruby-smie--backward-token ()
542 (forward-comment (- (point)))
544 ((and (> pos
(line-end-position)) (ruby-smie--implicit-semi-p))
545 (skip-chars-forward " \t") ";")
546 ((and (bolp) (not (bobp))) ;Presumably a heredoc.
547 ;; Tokenize the whole heredoc as semicolon.
548 (goto-char (scan-sexps (point) -
1))
550 ((and (> pos
(point)) (not (bolp))
551 (ruby-smie--args-separator-p pos
))
552 ;; We have "ID SPC ID", which is a method call, but it binds less tightly
553 ;; than commas, since a method call can also be "ID ARG1, ARG2, ARG3".
554 ;; In some textbooks, "e1 @ e2" is used to mean "call e1 with arg e2".
557 (let ((tok (smie-default-backward-token))
558 (dot (ruby-smie--at-dot-call)))
560 (setq tok
(concat "." tok
)))
561 (when (and (eq ?
: (char-before)) (string-match "\\`\\s." tok
))
562 (forward-char -
1) (setq tok
(concat ":" tok
))) ;; bug#15208.
564 ((member tok
'("unless" "if" "while" "until"))
565 (if (ruby-smie--bosp)
569 ((ruby-smie--opening-pipe-p) "opening-|")
570 ((ruby-smie--closing-pipe-p) "closing-|")
572 ((string-match-p "\\`|[*&]\\'" tok
)
575 ((and (equal tok
"") (eq ?
\\ (char-before)) (looking-at "\n"))
576 (forward-char -
1) (ruby-smie--backward-token))
579 ((not (ruby-smie--redundant-do-p)) tok
)
580 ((> (save-excursion (forward-word 1)
581 (forward-comment (point-max)) (point))
583 (ruby-smie--backward-token)) ;Fully redundant.
587 (defun ruby-smie--indent-to-stmt ()
589 (smie-backward-sexp ";")
590 (cons 'column
(smie-indent-virtual))))
592 (defun ruby-smie--indent-to-stmt-p (keyword)
593 (or (eq t ruby-align-to-stmt-keywords
)
594 (memq (intern keyword
) ruby-align-to-stmt-keywords
)))
596 (defun ruby-smie-rules (kind token
)
597 (pcase (cons kind token
)
598 (`(:elem . basic
) ruby-indent-level
)
599 ;; "foo" "bar" is the concatenation of the two strings, so the second
600 ;; should be aligned with the first.
601 (`(:elem . args
) (if (looking-at "\\s\"") 0))
602 ;; (`(:after . ",") (smie-rule-separator kind))
605 ((smie-rule-parent-p "def" "begin" "do" "class" "module" "for"
606 "while" "until" "unless"
607 "if" "then" "elsif" "else" "when"
608 "rescue" "ensure" "{")
609 (smie-rule-parent ruby-indent-level
))
610 ;; For (invalid) code between switch and case.
611 ;; (if (smie-parent-p "switch") 4)
613 (`(:before .
,(or `"(" `"[" `"{"))
615 ((and (equal token
"{")
616 (not (smie-rule-prev-p "(" "{" "[" "," "=>" "=" "return" ";"))
619 (not (eq (preceding-char) ?
:))))
620 ;; Curly block opener.
621 (ruby-smie--indent-to-stmt))
622 ((smie-rule-hanging-p)
623 ;; Treat purely syntactic block-constructs as being part of their parent,
624 ;; when the opening token is hanging and the parent is not an
627 ((eq (car (smie-indent--parent)) t
) nil
)
628 ;; When after `.', let's always de-indent,
629 ;; because when `.' is inside the line, the
630 ;; additional indentation from it looks out of place.
631 ((smie-rule-parent-p ".")
634 ;; Traverse up the parents until the parent is "." at
635 ;; indentation, or any other token.
636 (while (and (let ((parent (smie-indent--parent)))
637 (goto-char (cadr parent
))
639 (unless (integerp (car parent
)) (forward-char -
1))
640 (not (ruby-smie--bosp))))
642 (setq smie--parent nil
)
643 (smie-rule-parent-p "."))))
644 (smie-rule-parent))))
645 (t (smie-rule-parent))))))
646 (`(:after .
,(or `"(" "[" "{"))
647 ;; FIXME: Shouldn't this be the default behavior of
648 ;; `smie-indent-after-keyword'?
651 (skip-chars-forward " \t")
652 ;; `smie-rule-hanging-p' is not good enough here,
653 ;; because we want to reject hanging tokens at bol, too.
654 (unless (or (eolp) (forward-comment 1))
655 (cons 'column
(current-column)))))
658 (skip-chars-forward " \t")
659 (cons 'column
(current-column))))
660 (`(:before .
"do") (ruby-smie--indent-to-stmt))
662 (if (smie-rule-sibling-p)
663 (and ruby-align-chained-calls
0)
665 (`(:before .
,(or `"else" `"then" `"elsif" `"rescue" `"ensure"))
668 ;; Align to the previous `when', but look up the virtual
669 ;; indentation of `case'.
670 (if (smie-rule-sibling-p) 0 (smie-rule-parent)))
671 (`(:after .
,(or "=" "iuwu-mod" "+" "-" "*" "/" "&&" "||" "%" "**" "^" "&"
672 "<=>" ">" "<" ">=" "<=" "==" "===" "!=" "<<" ">>"
673 "+=" "-=" "*=" "/=" "%=" "**=" "&=" "|=" "^=" "|"
674 "<<=" ">>=" "&&=" "||=" "and" "or"))
675 (and (smie-rule-parent-p ";" nil
)
676 (smie-indent--hanging-p)
678 (`(:after .
,(or "?" ":")) ruby-indent-level
)
679 (`(:before .
,(guard (memq (intern-soft token
) ruby-alignable-keywords
)))
680 (when (not (ruby--at-indentation-p))
681 (if (ruby-smie--indent-to-stmt-p token
)
682 (ruby-smie--indent-to-stmt)
683 (cons 'column
(current-column)))))
686 (defun ruby--at-indentation-p (&optional point
)
688 (unless point
(setq point
(point)))
690 (skip-chars-forward " \t")
693 (defun ruby-imenu-create-index-in-block (prefix beg end
)
694 "Create an imenu index of methods inside a block."
695 (let ((index-alist '()) (case-fold-search nil
)
696 name next pos decl sing
)
698 (while (re-search-forward "^\\s *\\(\\(class\\s +\\|\\(class\\s *<<\\s *\\)\\|module\\s +\\)\\([^(<\n ]+\\)\\|\\(def\\|alias\\)\\s +\\([^(\n ]+\\)\\)" end t
)
699 (setq sing
(match-beginning 3))
700 (setq decl
(match-string 5))
701 (setq next
(match-end 0))
702 (setq name
(or (match-string 4) (match-string 6)))
703 (setq pos
(match-beginning 0))
705 ((string= "alias" decl
)
706 (if prefix
(setq name
(concat prefix name
)))
707 (push (cons name pos
) index-alist
))
708 ((string= "def" decl
)
712 ((string-match "^self\\." name
)
713 (concat (substring prefix
0 -
1) (substring name
4)))
714 (t (concat prefix name
)))))
715 (push (cons name pos
) index-alist
)
716 (ruby-accurate-end-of-block end
))
718 (if (string= "self" name
)
719 (if prefix
(setq name
(substring prefix
0 -
1)))
720 (if prefix
(setq name
(concat (substring prefix
0 -
1) "::" name
)))
721 (push (cons name pos
) index-alist
))
722 (ruby-accurate-end-of-block end
)
725 (nconc (ruby-imenu-create-index-in-block
726 (concat name
(if sing
"." "#"))
727 next beg
) index-alist
))
731 (defun ruby-imenu-create-index ()
732 "Create an imenu index of all methods in the buffer."
733 (nreverse (ruby-imenu-create-index-in-block nil
(point-min) nil
)))
735 (defun ruby-accurate-end-of-block (&optional end
)
736 "Jump to the end of the current block or END, whichever is closer."
738 (end (or end
(point-max))))
741 (back-to-indentation)
742 (narrow-to-region (point) end
)
744 (while (and (setq state
(apply 'ruby-parse-partial end state
))
745 (>= (nth 2 state
) 0) (< (point) end
))))))
747 (defun ruby-mode-variables ()
748 "Set up initial buffer-local variables for Ruby mode."
749 (setq indent-tabs-mode ruby-indent-tabs-mode
)
751 (smie-setup ruby-smie-grammar
#'ruby-smie-rules
752 :forward-token
#'ruby-smie--forward-token
753 :backward-token
#'ruby-smie--backward-token
)
754 (setq-local indent-line-function
'ruby-indent-line
))
755 (setq-local comment-start
"# ")
756 (setq-local comment-end
"")
757 (setq-local comment-column ruby-comment-column
)
758 (setq-local comment-start-skip
"#+ *")
759 (setq-local parse-sexp-ignore-comments t
)
760 (setq-local parse-sexp-lookup-properties t
)
761 (setq-local paragraph-start
(concat "$\\|" page-delimiter
))
762 (setq-local paragraph-separate paragraph-start
)
763 (setq-local paragraph-ignore-fill-prefix t
))
765 (defun ruby--insert-coding-comment (encoding)
766 "Insert a magic coding comment for ENCODING.
767 The style of the comment is controlled by `ruby-encoding-magic-comment-style'."
768 (let ((encoding-magic-comment-template
769 (pcase ruby-encoding-magic-comment-style
770 (`ruby
"# coding: %s")
771 (`emacs
"# -*- coding: %s -*-")
773 ruby-custom-encoding-magic-comment-template
))))
775 (format encoding-magic-comment-template encoding
)
778 (defun ruby--detect-encoding ()
779 (if (eq ruby-insert-encoding-magic-comment
'always-utf8
)
782 (or save-buffer-coding-system
783 buffer-file-coding-system
)))
786 (or (coding-system-get coding-system
'mime-charset
)
787 (coding-system-change-eol-conversion coding-system nil
))))
790 (if ruby-use-encoding-map
791 (let ((elt (assq coding-system ruby-encoding-map
)))
792 (if elt
(cdr elt
) coding-system
))
796 (defun ruby--encoding-comment-required-p ()
797 (or (eq ruby-insert-encoding-magic-comment
'always-utf8
)
798 (re-search-forward "[^\0-\177]" nil t
)))
800 (defun ruby-mode-set-encoding ()
801 "Insert a magic comment header with the proper encoding if necessary."
804 (goto-char (point-min))
805 (when (ruby--encoding-comment-required-p)
806 (goto-char (point-min))
807 (let ((coding-system (ruby--detect-encoding)))
809 (if (looking-at "^#!") (beginning-of-line 2))
810 (cond ((looking-at "\\s *#\\s *.*\\(en\\)?coding\\s *:\\s *\\([-a-z0-9_]*\\)")
811 ;; update existing encoding comment if necessary
812 (unless (string= (match-string 2) coding-system
)
813 (goto-char (match-beginning 2))
814 (delete-region (point) (match-end 2))
815 (insert coding-system
)))
816 ((looking-at "\\s *#.*coding\\s *[:=]"))
817 (t (when ruby-insert-encoding-magic-comment
818 (ruby--insert-coding-comment coding-system
))))
819 (when (buffer-modified-p)
820 (basic-save-buffer-1)))))))
822 (defvar ruby--electric-indent-chars
'(?. ?\
) ?
} ?\
]))
824 (defun ruby--electric-indent-p (char)
826 ((memq char ruby--electric-indent-chars
)
827 ;; Reindent after typing a char affecting indentation.
828 (ruby--at-indentation-p (1- (point))))
829 ((memq (char-after) ruby--electric-indent-chars
)
830 ;; Reindent after inserting something in front of the above.
831 (ruby--at-indentation-p (1- (point))))
832 ((or (and (>= char ?a
) (<= char ?z
)) (memq char
'(?_ ?? ?
! ?
:)))
835 (skip-chars-backward "[:alpha:]:_?!")
836 (and (ruby--at-indentation-p)
837 (looking-at (regexp-opt (cons "end" ruby-block-mid-keywords
)))
838 ;; Outdent after typing a keyword.
839 (or (eq (match-end 0) pt
)
840 ;; Reindent if it wasn't a keyword after all.
841 (eq (match-end 0) (1- pt
)))))))))
843 ;; FIXME: Remove this? It's unused here, but some redefinitions of
844 ;; `ruby-calculate-indent' in user init files still call it.
845 (defun ruby-current-indentation ()
846 "Return the indentation level of current line."
849 (back-to-indentation)
852 (defun ruby-indent-line (&optional ignored
)
853 "Correct the indentation of the current Ruby line."
855 (ruby-indent-to (ruby-calculate-indent)))
857 (defun ruby-indent-to (column)
858 "Indent the current line to COLUMN."
861 (and (< column
0) (error "Invalid nesting"))
862 (setq shift
(current-column))
865 (back-to-indentation)
866 (setq top
(current-column))
867 (skip-chars-backward " \t")
868 (if (>= shift top
) (setq shift
(- shift top
))
872 (move-to-column (+ column shift
))
874 (delete-region beg
(point))
877 (move-to-column (+ column shift
))))))
879 (defun ruby-special-char-p (&optional pos
)
880 "Return t if the character before POS is a special character.
881 If omitted, POS defaults to the current point.
882 Special characters are `?', `$', `:' when preceded by whitespace,
883 and `\\' when preceded by `?'."
884 (setq pos
(or pos
(point)))
885 (let ((c (char-before pos
)) (b (and (< (point-min) pos
)
886 (char-before (1- pos
)))))
887 (cond ((or (eq c ??
) (eq c ?$
)))
888 ((and (eq c ?
:) (or (not b
) (eq (char-syntax b
) ?
))))
889 ((eq c ?
\\) (eq b ??
)))))
891 (defun ruby-singleton-class-p (&optional pos
)
893 (when pos
(goto-char pos
))
895 (and (or (bolp) (not (eq (char-before (point)) ?_
)))
896 (looking-at ruby-singleton-class-re
))))
898 (defun ruby-expr-beg (&optional option
)
899 "Check if point is possibly at the beginning of an expression.
900 OPTION specifies the type of the expression.
901 Can be one of `heredoc', `modifier', `expr-qstr', `expr-re'."
903 (store-match-data nil
)
904 (let ((space (skip-chars-backward " \t"))
910 (and (looking-at "\\?")
911 (or (eq (char-syntax (char-before (point))) ?w
)
912 (ruby-special-char-p))))
914 ((looking-at ruby-operator-re
))
915 ((eq option
'heredoc
)
916 (and (< space
0) (not (ruby-singleton-class-p start
))))
917 ((or (looking-at "[\\[({,;]")
918 (and (looking-at "[!?]")
919 (or (not (eq option
'modifier
))
921 (save-excursion (forward-char -
1) (looking-at "\\Sw$"))))
922 (and (looking-at ruby-symbol-re
)
923 (skip-chars-backward ruby-symbol-chars
)
925 ((looking-at (regexp-opt
926 (append ruby-block-beg-keywords
927 ruby-block-op-keywords
928 ruby-block-mid-keywords
)
930 (goto-char (match-end 0))
931 (not (looking-at "\\s_")))
932 ((eq option
'expr-qstr
)
933 (looking-at "[a-zA-Z][a-zA-z0-9_]* +%[^ \t]"))
934 ((eq option
'expr-re
)
935 (looking-at "[a-zA-Z][a-zA-z0-9_]* +/[^ \t]"))
938 (defun ruby-forward-string (term &optional end no-error expand
)
939 "Move forward across one balanced pair of string delimiters.
940 Skips escaped delimiters. If EXPAND is non-nil, also ignores
941 delimiters in interpolated strings.
943 TERM should be a string containing either a single, self-matching
944 delimiter (e.g. \"/\"), or a pair of matching delimiters with the
945 close delimiter first (e.g. \"][\").
947 When non-nil, search is bounded by position END.
949 Throws an error if a balanced match is not found, unless NO-ERROR
950 is non-nil, in which case nil will be returned.
952 This command assumes the character after point is an opening
954 (let ((n 1) (c (string-to-char term
))
955 (re (concat "[^\\]\\(\\\\\\\\\\)*\\("
956 (if (string= term
"^") ;[^] is not a valid regexp
958 (concat "[" term
"]"))
959 (when expand
"\\|\\(#{\\)")
961 (while (and (re-search-forward re end no-error
)
962 (if (match-beginning 3)
963 (ruby-forward-string "}{" end no-error nil
)
964 (> (setq n
(if (eq (char-before (point)) c
)
969 ((error "Unterminated string")))))
971 (defun ruby-deep-indent-paren-p (c)
973 (cond ((listp ruby-deep-indent-paren
)
974 (let ((deep (assoc c ruby-deep-indent-paren
)))
976 (or (cdr deep
) ruby-deep-indent-paren-style
))
977 ((memq c ruby-deep-indent-paren
)
978 ruby-deep-indent-paren-style
))))
979 ((eq c ruby-deep-indent-paren
) ruby-deep-indent-paren-style
)
980 ((eq c ?\
( ) ruby-deep-arglist
)))
982 (defun ruby-parse-partial (&optional end in-string nest depth pcol indent
)
983 "TODO: document throughout function body."
984 (or depth
(setq depth
0))
985 (or indent
(setq indent
0))
986 (when (re-search-forward ruby-delimiter end
'move
)
987 (let ((pnt (point)) w re expand
)
988 (goto-char (match-beginning 0))
990 ((and (memq (char-before) '(?
@ ?$
)) (looking-at "\\sw"))
992 ((looking-at "[\"`]") ;skip string
995 (ruby-forward-string (buffer-substring (point) (1+ (point)))
999 (setq in-string
(point))
1004 (re-search-forward "[^\\]\\(\\\\\\\\\\)*'" end t
))
1007 (setq in-string
(point))
1013 ((and (not (eobp)) (ruby-expr-beg 'expr-re
))
1014 (if (ruby-forward-string "/" end t t
)
1016 (setq in-string
(point))
1023 (ruby-expr-beg 'expr-qstr
)
1024 (not (looking-at "%="))
1025 (looking-at "%[QqrxWw]?\\([^a-zA-Z0-9 \t\n]\\)"))
1026 (goto-char (match-beginning 1))
1027 (setq expand
(not (memq (char-before) '(?q ?w
))))
1028 (setq w
(match-string 1))
1030 ((string= w
"[") (setq re
"]["))
1031 ((string= w
"{") (setq re
"}{"))
1032 ((string= w
"(") (setq re
")("))
1033 ((string= w
"<") (setq re
"><"))
1034 ((and expand
(string= w
"\\"))
1035 (setq w
(concat "\\" w
))))
1036 (unless (cond (re (ruby-forward-string re end t expand
))
1037 (expand (ruby-forward-string w end t t
))
1038 (t (re-search-forward
1039 (if (string= w
"\\")
1041 (concat "[^\\]\\(\\\\\\\\\\)*" w
))
1043 (setq in-string
(point))
1047 ((looking-at "\\?") ;skip ?char
1049 ((and (ruby-expr-beg)
1050 (looking-at "?\\(\\\\C-\\|\\\\M-\\)*\\\\?."))
1051 (goto-char (match-end 0)))
1054 ((looking-at "\\$") ;skip $char
1057 ((looking-at "#") ;skip comment
1061 ((looking-at "[\\[{(]")
1062 (let ((deep (ruby-deep-indent-paren-p (char-after))))
1063 (if (and deep
(or (not (eq (char-after) ?\
{)) (ruby-expr-beg)))
1065 (and (eq deep
'space
) (looking-at ".\\s +[^# \t\n]")
1066 (setq pnt
(1- (match-end 0))))
1067 (setq nest
(cons (cons (char-after (point)) pnt
) nest
))
1068 (setq pcol
(cons (cons pnt depth
) pcol
))
1070 (setq nest
(cons (cons (char-after (point)) pnt
) nest
))
1071 (setq depth
(1+ depth
))))
1074 ((looking-at "[])}]")
1075 (if (ruby-deep-indent-paren-p (matching-paren (char-after)))
1076 (setq depth
(cdr (car pcol
)) pcol
(cdr pcol
))
1077 (setq depth
(1- depth
)))
1078 (setq nest
(cdr nest
))
1080 ((looking-at ruby-block-end-re
)
1081 (if (or (and (not (bolp))
1084 (setq w
(char-after (point)))
1089 (setq w
(char-after (point)))
1094 (setq nest
(cdr nest
))
1095 (setq depth
(1- depth
)))
1097 ((looking-at "def\\s +[^(\n;]*")
1101 (not (eq ?_
(char-after (point))))))
1103 (setq nest
(cons (cons nil pnt
) nest
))
1104 (setq depth
(1+ depth
))))
1105 (goto-char (match-end 0)))
1106 ((looking-at (concat "\\_<\\(" ruby-block-beg-re
"\\)\\_>"))
1109 (or (not (looking-at "do\\_>"))
1111 (back-to-indentation)
1112 (not (looking-at ruby-non-block-do-re
)))))
1116 (setq w
(char-after (point)))
1120 (not (eq ?
! (char-after (point))))
1121 (skip-chars-forward " \t")
1122 (goto-char (match-beginning 0))
1123 (or (not (looking-at ruby-modifier-re
))
1124 (ruby-expr-beg 'modifier
))
1126 (setq nest
(cons (cons nil pnt
) nest
))
1127 (setq depth
(1+ depth
)))
1129 ((looking-at ":\\(['\"]\\)")
1130 (goto-char (match-beginning 1))
1131 (ruby-forward-string (match-string 1) end t
))
1132 ((looking-at ":\\([-,.+*/%&|^~<>]=?\\|===?\\|<=>\\|![~=]?\\)")
1133 (goto-char (match-end 0)))
1134 ((looking-at ":\\([a-zA-Z_][a-zA-Z_0-9]*[!?=]?\\)?")
1135 (goto-char (match-end 0)))
1136 ((or (looking-at "\\.\\.\\.?")
1137 (looking-at "\\.[0-9]+")
1138 (looking-at "\\.[a-zA-Z_0-9]+")
1140 (goto-char (match-end 0)))
1141 ((looking-at "^=begin")
1142 (if (re-search-forward "^=end" end t
)
1144 (setq in-string
(match-end 0))
1148 ((and (ruby-expr-beg 'heredoc
)
1149 (looking-at "<<\\(-\\)?\\(\\([\"'`]\\)\\([^\n]+?\\)\\3\\|\\(?:\\sw\\|\\s_\\)+\\)"))
1150 (setq re
(regexp-quote (or (match-string 4) (match-string 2))))
1151 (if (match-beginning 1) (setq re
(concat "\\s *" re
)))
1152 (let* ((id-end (goto-char (match-end 0)))
1153 (line-end-position (point-at-eol))
1154 (state (list in-string nest depth pcol indent
)))
1155 ;; parse the rest of the line
1156 (while (and (> line-end-position
(point))
1157 (setq state
(apply 'ruby-parse-partial
1158 line-end-position state
))))
1159 (setq in-string
(car state
)
1163 indent
(nth 4 state
))
1164 ;; skip heredoc section
1165 (if (re-search-forward (concat "^" re
"$") end
'move
)
1167 (setq in-string id-end
)
1171 ((looking-at "^__END__$")
1173 ((and (looking-at ruby-here-doc-beg-re
)
1174 (boundp 'ruby-indent-point
))
1175 (if (re-search-forward (ruby-here-doc-end-match)
1176 ruby-indent-point t
)
1178 (setq in-string
(match-end 0))
1179 (goto-char ruby-indent-point
)))
1181 (error "Bad string %s" (buffer-substring (point) pnt
))))))
1182 (list in-string nest depth pcol
))
1184 (defun ruby-parse-region (start end
)
1190 (ruby-beginning-of-indent))
1192 (narrow-to-region (point) end
)
1193 (while (and (> end
(point))
1194 (setq state
(apply 'ruby-parse-partial end state
))))))
1195 (list (nth 0 state
) ; in-string
1196 (car (nth 1 state
)) ; nest
1197 (nth 2 state
) ; depth
1198 (car (car (nth 3 state
))) ; pcol
1199 ;(car (nth 5 state)) ; indent
1202 (defun ruby-indent-size (pos nest
)
1203 "Return the indentation level in spaces NEST levels deeper than POS."
1204 (+ pos
(* (or nest
1) ruby-indent-level
)))
1206 (defun ruby-calculate-indent (&optional parse-start
)
1207 "Return the proper indentation level of the current line."
1208 ;; TODO: Document body
1211 (let ((ruby-indent-point (point))
1212 (case-fold-search nil
)
1213 state eol begin op-end
1214 (paren (progn (skip-syntax-forward " ")
1215 (and (char-after) (matching-paren (char-after)))))
1218 (goto-char parse-start
)
1219 (ruby-beginning-of-indent)
1220 (setq parse-start
(point)))
1221 (back-to-indentation)
1222 (setq indent
(current-column))
1223 (setq state
(ruby-parse-region parse-start ruby-indent-point
))
1225 ((nth 0 state
) ; within string
1226 (setq indent nil
)) ; do nothing
1227 ((car (nth 1 state
)) ; in paren
1228 (goto-char (setq begin
(cdr (nth 1 state
))))
1229 (let ((deep (ruby-deep-indent-paren-p (car (nth 1 state
)))))
1231 (cond ((and (eq deep t
) (eq (car (nth 1 state
)) paren
))
1232 (skip-syntax-backward " ")
1233 (setq indent
(1- (current-column))))
1234 ((let ((s (ruby-parse-region (point) ruby-indent-point
)))
1235 (and (nth 2 s
) (> (nth 2 s
) 0)
1236 (or (goto-char (cdr (nth 1 s
))) t
)))
1238 (setq indent
(ruby-indent-size (current-column)
1241 (setq indent
(current-column))
1242 (cond ((eq deep
'space
))
1243 (paren (setq indent
(1- indent
)))
1244 (t (setq indent
(ruby-indent-size (1- indent
) 1))))))
1245 (if (nth 3 state
) (goto-char (nth 3 state
))
1246 (goto-char parse-start
) (back-to-indentation))
1247 (setq indent
(ruby-indent-size (current-column) (nth 2 state
))))
1248 (and (eq (car (nth 1 state
)) paren
)
1249 (ruby-deep-indent-paren-p (matching-paren paren
))
1250 (search-backward (char-to-string paren
))
1251 (setq indent
(current-column)))))
1252 ((and (nth 2 state
) (> (nth 2 state
) 0)) ; in nest
1253 (if (null (cdr (nth 1 state
)))
1254 (error "Invalid nesting"))
1255 (goto-char (cdr (nth 1 state
)))
1256 (forward-word -
1) ; skip back a keyword
1257 (setq begin
(point))
1259 ((looking-at "do\\>[^_]") ; iter block is a special case
1260 (if (nth 3 state
) (goto-char (nth 3 state
))
1261 (goto-char parse-start
) (back-to-indentation))
1262 (setq indent
(ruby-indent-size (current-column) (nth 2 state
))))
1264 (setq indent
(+ (current-column) ruby-indent-level
)))))
1266 ((and (nth 2 state
) (< (nth 2 state
) 0)) ; in negative nest
1267 (setq indent
(ruby-indent-size (current-column) (nth 2 state
)))))
1269 (goto-char ruby-indent-point
)
1274 ((and (not (ruby-deep-indent-paren-p paren
))
1275 (re-search-forward ruby-negative eol t
))
1276 (and (not (eq ?_
(char-after (match-end 0))))
1277 (setq indent
(- indent ruby-indent-level
))))
1282 (or (ruby-deep-indent-paren-p t
)
1283 (null (car (nth 1 state
)))))
1284 ;; goto beginning of non-empty no-comment line
1287 (skip-chars-backward " \t\n")
1290 (if (re-search-forward "^\\s *#" end t
)
1294 ;; skip the comment at the end
1295 (skip-chars-backward " \t")
1296 (let (end (pos (point)))
1298 (while (and (re-search-forward "#" pos t
)
1299 (setq end
(1- (point)))
1300 (or (ruby-special-char-p end
)
1301 (and (setq state
(ruby-parse-region
1305 (goto-char (or end pos
))
1306 (skip-chars-backward " \t")
1307 (setq begin
(if (and end
(nth 0 state
)) pos
(cdr (nth 1 state
))))
1308 (setq state
(ruby-parse-region parse-start
(point))))
1309 (or (bobp) (forward-char -
1))
1311 (or (and (looking-at ruby-symbol-re
)
1312 (skip-chars-backward ruby-symbol-chars
)
1313 (looking-at (concat "\\<\\(" ruby-block-hanging-re
1315 (not (eq (point) (nth 3 state
)))
1317 (goto-char (match-end 0))
1318 (not (looking-at "[a-z_]"))))
1319 (and (looking-at ruby-operator-re
)
1320 (not (ruby-special-char-p))
1323 (or (not (looking-at ruby-operator-re
))
1324 (not (eq (char-before) ?
:))))
1325 ;; Operator at the end of line.
1326 (let ((c (char-after (point))))
1330 ;; (goto-char begin)
1331 ;; (skip-chars-forward " \t")
1332 ;; (not (or (eolp) (looking-at "#")
1333 ;; (and (eq (car (nth 1 state)) ?{)
1334 ;; (looking-at "|"))))))
1335 ;; Not a regexp or percent literal.
1336 (null (nth 0 (ruby-parse-region (or begin parse-start
)
1338 (or (not (eq ?|
(char-after (point))))
1340 (or (eolp) (forward-char -
1))
1342 ((search-backward "|" nil t
)
1343 (skip-chars-backward " \t\n")
1347 (not (looking-at "{")))
1350 (not (looking-at "do\\>[^_]")))))
1358 (not (looking-at (concat "\\<\\(" ruby-block-hanging-re
1360 (eq (ruby-deep-indent-paren-p t
) 'space
)
1363 (goto-char (or begin parse-start
))
1364 (skip-syntax-forward " ")
1366 ((car (nth 1 state
)) indent
)
1368 (+ indent ruby-indent-level
))))))))
1369 (goto-char ruby-indent-point
)
1371 (skip-syntax-forward " ")
1372 (if (looking-at "\\.[^.]")
1373 (+ indent ruby-indent-level
)
1376 (defun ruby-beginning-of-defun (&optional arg
)
1377 "Move backward to the beginning of the current defun.
1378 With ARG, move backward multiple defuns. Negative ARG means
1381 (let (case-fold-search)
1382 (and (re-search-backward (concat "^\\s *" ruby-defun-beg-re
"\\_>")
1384 (beginning-of-line))))
1386 (defun ruby-end-of-defun ()
1387 "Move point to the end of the current defun.
1388 The defun begins at or after the point. This function is called
1392 (let (case-fold-search)
1393 (when (looking-back (concat "^\\s *" ruby-block-end-re
)
1394 (line-beginning-position))
1397 (defun ruby-beginning-of-indent ()
1398 "Backtrack to a line which can be used as a reference for
1399 calculating indentation on the lines after it."
1400 (while (and (re-search-backward ruby-indent-beg-re nil
'move
)
1401 (if (ruby-in-ppss-context-p 'anything
)
1403 ;; We can stop, then.
1404 (beginning-of-line)))))
1406 (defun ruby-move-to-block (n)
1407 "Move to the beginning (N < 0) or the end (N > 0) of the
1408 current block, a sibling block, or an outer block. Do that (abs N) times."
1409 (back-to-indentation)
1410 (let ((signum (if (> n
0) 1 -
1))
1412 (depth (or (nth 2 (ruby-parse-region (point) (line-end-position))) 0))
1415 (when (looking-at ruby-block-mid-re
)
1416 (setq depth
(+ depth signum
)))
1417 (when (< (* depth signum
) 0)
1418 ;; Moving end -> end or beginning -> beginning.
1420 (dotimes (_ (abs n
))
1422 (setq down
(save-excursion
1423 (back-to-indentation)
1424 ;; There is a block start or block end keyword on this
1425 ;; line, don't need to look for another block.
1426 (and (re-search-forward
1427 (if backward ruby-block-end-re
1428 (concat "\\_<\\(" ruby-block-beg-re
"\\)\\_>"))
1429 (line-end-position) t
)
1430 (not (nth 8 (syntax-ppss))))))
1431 (while (and (not done
) (not (if backward
(bobp) (eobp))))
1432 (forward-line signum
)
1434 ;; Skip empty and commented out lines.
1435 ((looking-at "^\\s *$"))
1436 ((looking-at "^\\s *#"))
1437 ;; Skip block comments;
1438 ((and (not backward
) (looking-at "^=begin\\>"))
1439 (re-search-forward "^=end\\>"))
1440 ((and backward
(looking-at "^=end\\>"))
1441 (re-search-backward "^=begin\\>"))
1442 ;; Jump over a multiline literal.
1443 ((ruby-in-ppss-context-p 'string
)
1444 (goto-char (nth 8 (syntax-ppss)))
1447 (when (bolp) (forward-char -
1)))) ; After a heredoc.
1449 (let ((state (ruby-parse-region (point) (line-end-position))))
1450 (unless (car state
) ; Line ends with unfinished string.
1451 (setq depth
(+ (nth 2 state
) depth
))))
1453 ;; Increased depth, we found a block.
1454 ((> (* signum depth
) 0)
1456 ;; We're at the same depth as when we started, and we've
1457 ;; encountered a block before. Stop.
1458 ((and down
(zerop depth
))
1460 ;; Lower depth, means outer block, can stop now.
1461 ((< (* signum depth
) 0)
1463 (back-to-indentation)))
1465 (defun ruby-beginning-of-block (&optional arg
)
1466 "Move backward to the beginning of the current block.
1467 With ARG, move up multiple blocks."
1469 (ruby-move-to-block (- (or arg
1))))
1471 (defun ruby-end-of-block (&optional arg
)
1472 "Move forward to the end of the current block.
1473 With ARG, move out of multiple blocks."
1475 (ruby-move-to-block (or arg
1)))
1477 (defun ruby-forward-sexp (&optional arg
)
1478 "Move forward across one balanced expression (sexp).
1479 With ARG, do it many times. Negative ARG means move backward."
1480 ;; TODO: Document body
1483 (ruby-use-smie (forward-sexp arg
))
1484 ((and (numberp arg
) (< arg
0)) (ruby-backward-sexp (- arg
)))
1486 (let ((i (or arg
1)))
1489 (skip-syntax-forward " ")
1490 (if (looking-at ",\\s *") (goto-char (match-end 0)))
1491 (cond ((looking-at "\\?\\(\\\\[CM]-\\)*\\\\?\\S ")
1492 (goto-char (match-end 0)))
1494 (skip-chars-forward ",.:;|&^~=!?\\+\\-\\*")
1495 (looking-at "\\s("))
1496 (goto-char (scan-sexps (point) 1)))
1497 ((and (looking-at (concat "\\<\\(" ruby-block-beg-re
1499 (not (eq (char-before (point)) ?.
))
1500 (not (eq (char-before (point)) ?
:)))
1503 ((looking-at "\\(\\$\\|@@?\\)?\\sw")
1505 (while (progn (forward-word 1) (looking-at "_")))
1506 (cond ((looking-at "::") (forward-char 2) t
)
1507 ((> (skip-chars-forward ".") 0))
1508 ((looking-at "\\?\\|!\\(=[~=>]\\|[^~=]\\)")
1509 (forward-char 1) nil
)))))
1513 (setq expr
(or expr
(ruby-expr-beg)
1514 (looking-at "%\\sw?\\Sw\\|[\"'`/]")))
1515 (nth 1 (setq state
(apply #'ruby-parse-partial
1518 (skip-chars-forward "<"))
1521 ((error) (forward-word 1)))
1524 (defun ruby-backward-sexp (&optional arg
)
1525 "Move backward across one balanced expression (sexp).
1526 With ARG, do it many times. Negative ARG means move forward."
1527 ;; TODO: Document body
1530 (ruby-use-smie (backward-sexp arg
))
1531 ((and (numberp arg
) (< arg
0)) (ruby-forward-sexp (- arg
)))
1533 (let ((i (or arg
1)))
1536 (skip-chars-backward " \t\n,.:;|&^~=!?\\+\\-\\*")
1538 (cond ((looking-at "\\s)")
1539 (goto-char (scan-sexps (1+ (point)) -
1))
1540 (pcase (char-before)
1541 (`?%
(forward-char -
1))
1542 ((or `?q
`?Q
`?w
`?W
`?r
`?x
)
1543 (if (eq (char-before (1- (point))) ?%
)
1544 (forward-char -
2))))
1546 ((looking-at "\\s\"\\|\\\\\\S_")
1547 (let ((c (char-to-string (char-before (match-end 0)))))
1548 (while (and (search-backward c
)
1549 (eq (logand (skip-chars-backward "\\") 1)
1552 ((looking-at "\\s.\\|\\s\\")
1553 (if (ruby-special-char-p) (forward-char -
1)))
1554 ((looking-at "\\s(") nil
)
1557 (while (progn (forward-word -
1)
1558 (pcase (char-before)
1560 (`?.
(forward-char -
1) t
)
1563 (and (eq (char-before) (char-after))
1567 (eq (char-before) :)))))
1568 (if (looking-at ruby-block-end-re
)
1569 (ruby-beginning-of-block))
1575 (defun ruby-indent-exp (&optional ignored
)
1576 "Indent each line in the balanced expression following the point."
1578 (let ((here (point-marker)) start top column
(nest t
))
1579 (set-marker-insertion-type here t
)
1583 (setq start
(point) top
(current-indentation))
1584 (while (and (not (eobp))
1586 (setq column
(ruby-calculate-indent start
))
1587 (cond ((> column top
)
1589 ((and (= column top
) nest
)
1590 (setq nest nil
) t
))))
1591 (ruby-indent-to column
)
1592 (beginning-of-line 2)))
1594 (set-marker here nil
))))
1596 (defun ruby-add-log-current-method ()
1597 "Return the current method name as a string.
1598 This string includes all namespaces.
1607 See `add-log-current-defun-function'."
1610 (let* ((indent 0) mname mlist
1614 (concat "^[ \t]*" re
"[ \t]+"
1616 ;; \\. and :: for class methods
1617 "\\([A-Za-z_]" ruby-symbol-re
"*\\|\\.\\|::" "\\)"
1619 (definition-re (funcall make-definition-re ruby-defun-beg-re
))
1620 (module-re (funcall make-definition-re
"\\(class\\|module\\)")))
1621 ;; Get the current method definition (or class/module).
1622 (when (re-search-backward definition-re nil t
)
1623 (goto-char (match-beginning 1))
1624 (if (not (string-equal "def" (match-string 1)))
1625 (setq mlist
(list (match-string 2)))
1626 ;; We're inside the method. For classes and modules,
1627 ;; this check is skipped for performance.
1628 (when (ruby-block-contains-point start
)
1629 (setq mname
(match-string 2))))
1630 (setq indent
(current-column))
1631 (beginning-of-line))
1632 ;; Walk up the class/module nesting.
1633 (while (and (> indent
0)
1634 (re-search-backward module-re nil t
))
1635 (goto-char (match-beginning 1))
1636 (when (< (current-column) indent
)
1637 (setq mlist
(cons (match-string 2) mlist
))
1638 (setq indent
(current-column))
1639 (beginning-of-line)))
1640 ;; Process the method name.
1642 (let ((mn (split-string mname
"\\.\\|::")))
1645 (unless (string-equal "self" (car mn
)) ; def self.foo
1647 (let ((ml (nreverse mlist
)))
1648 ;; If the method name references one of the
1649 ;; containing modules, drop the more nested ones.
1651 (if (string-equal (car ml
) (car mn
))
1652 (setq mlist
(nreverse (cdr ml
)) ml nil
))
1653 (or (setq ml
(cdr ml
)) (nreverse mlist
))))
1655 (setcdr (last mlist
) (butlast mn
))
1656 (setq mlist
(butlast mn
))))
1657 (setq mname
(concat "." (car (last mn
)))))
1658 ;; See if the method is in singleton class context.
1659 (let ((in-singleton-class
1660 (when (re-search-forward ruby-singleton-class-re start t
)
1661 (goto-char (match-beginning 0))
1662 ;; FIXME: Optimize it out, too?
1663 ;; This can be slow in a large file, but
1664 ;; unlike class/module declaration
1665 ;; indentations, method definitions can be
1666 ;; intermixed with these, and may or may not
1667 ;; be additionally indented after visibility
1669 (ruby-block-contains-point start
))))
1671 (if in-singleton-class
"." "#")
1673 ;; Generate the string.
1675 (setq mlist
(mapconcat (function identity
) mlist
"::")))
1677 (if mlist
(concat mlist mname
) mname
)
1680 (defun ruby-block-contains-point (pt)
1686 (defun ruby-brace-to-do-end (orig end
)
1687 (let (beg-marker end-marker
)
1689 (when (eq (char-before) ?\
})
1691 (when (save-excursion
1692 (skip-chars-backward " \t")
1696 (setq end-marker
(point-marker))
1697 (when (and (not (eobp)) (eq (char-syntax (char-after)) ?w
))
1701 (when (eq (char-syntax (char-before)) ?w
)
1704 (setq beg-marker
(point-marker))
1705 (when (looking-at "\\(\\s \\)*|")
1706 (unless (match-beginning 1)
1708 (goto-char (1+ (match-end 0)))
1709 (search-forward "|"))
1710 (unless (looking-at "\\s *$")
1712 (indent-region beg-marker end-marker
)
1713 (goto-char beg-marker
)
1716 (defun ruby-do-end-to-brace (orig end
)
1717 (let (beg-marker end-marker beg-pos end-pos
)
1718 (goto-char (- end
3))
1719 (when (looking-at ruby-block-end-re
)
1721 (setq end-marker
(point-marker))
1725 ;; Maybe this should be customizable, let's see if anyone asks.
1727 (setq beg-marker
(point-marker))
1728 (when (looking-at "\\s +|")
1729 (delete-char (- (match-end 0) (match-beginning 0) 1))
1731 (re-search-forward "|" (line-end-position) t
))
1733 (skip-chars-forward " \t\n\r")
1734 (setq beg-pos
(point))
1735 (goto-char end-marker
)
1736 (skip-chars-backward " \t\n\r")
1737 (setq end-pos
(point)))
1740 (and (= (line-number-at-pos beg-pos
) (line-number-at-pos end-pos
))
1741 (< (+ (current-column) (- end-pos beg-pos
) 2) fill-column
)))
1743 (goto-char end-marker
)
1744 (just-one-space -
1))
1745 (goto-char beg-marker
)
1748 (defun ruby-toggle-block ()
1749 "Toggle block type from do-end to braces or back.
1750 The block must begin on the current line or above it and end after the point.
1751 If the result is do-end block, it will always be multiline."
1753 (let ((start (point)) beg end
)
1756 (if (and (re-search-backward "\\(?:[^#]\\)\\({\\)\\|\\(\\_<do\\_>\\)")
1758 (goto-char (or (match-beginning 1) (match-beginning 2)))
1760 (save-match-data (ruby-forward-sexp))
1763 (if (match-beginning 1)
1764 (ruby-brace-to-do-end beg end
)
1765 (ruby-do-end-to-brace beg end
)))
1766 (goto-char start
))))
1768 (defun ruby--string-region ()
1769 "Return region for string at point."
1770 (let ((state (syntax-ppss)))
1771 (when (memq (nth 3 state
) '(?
' ?
\"))
1773 (goto-char (nth 8 state
))
1775 (list (nth 8 state
) (point))))))
1777 (defun ruby-string-at-point-p ()
1778 "Check if cursor is at a string or not."
1779 (ruby--string-region))
1781 (defun ruby--inverse-string-quote (string-quote)
1782 "Get the inverse string quoting for STRING-QUOTE."
1783 (if (equal string-quote
"\"") "'" "\""))
1785 (defun ruby-toggle-string-quotes ()
1786 "Toggle string literal quoting between single and double."
1788 (when (ruby-string-at-point-p)
1789 (let* ((region (ruby--string-region))
1790 (min (nth 0 region
))
1791 (max (nth 1 region
))
1792 (string-quote (ruby--inverse-string-quote (buffer-substring-no-properties min
(1+ min
))))
1794 (buffer-substring-no-properties (1+ min
) (1- max
))))
1796 (if (equal string-quote
"\"")
1797 (replace-regexp-in-string "\\\\\"" "\"" (replace-regexp-in-string "\\([^\\\\]\\)'" "\\1\\\\'" content
))
1798 (replace-regexp-in-string "\\\\'" "'" (replace-regexp-in-string "\\([^\\\\]\\)\"" "\\1\\\\\"" content
))))
1799 (let ((orig-point (point)))
1800 (delete-region min max
)
1802 (format "%s%s%s" string-quote content string-quote
))
1803 (goto-char orig-point
)))))
1806 (defconst ruby-percent-literal-beg-re
1807 "\\(%\\)[qQrswWxIi]?\\([[:punct:]]\\)"
1808 "Regexp to match the beginning of percent literal.")
1810 (defconst ruby-syntax-methods-before-regexp
1811 '("gsub" "gsub!" "sub" "sub!" "scan" "split" "split!" "index" "match"
1812 "assert_match" "Given" "Then" "When")
1813 "Methods that can take regexp as the first argument.
1814 It will be properly highlighted even when the call omits parens.")
1816 (defvar ruby-syntax-before-regexp-re
1818 ;; Special tokens that can't be followed by a division operator.
1819 "\\(^\\|[[{|=(,~;<>!]"
1820 ;; Distinguish ternary operator tokens.
1821 ;; FIXME: They don't really have to be separated with spaces.
1823 ;; Control flow keywords and operators following bol or whitespace.
1824 "\\|\\(?:^\\|\\s \\)"
1825 (regexp-opt '("if" "elsif" "unless" "while" "until" "when" "and"
1826 "or" "not" "&&" "||"))
1827 ;; Method name from the list.
1829 (regexp-opt ruby-syntax-methods-before-regexp
)
1831 "Regexp to match text that can be followed by a regular expression."))
1833 (defun ruby-syntax-propertize-function (start end
)
1834 "Syntactic keywords for Ruby mode. See `syntax-propertize-function'."
1835 (let (case-fold-search)
1837 (remove-text-properties start end
'(ruby-expansion-match-data))
1838 (ruby-syntax-propertize-heredoc end
)
1839 (ruby-syntax-enclosing-percent-literal end
)
1841 (syntax-propertize-rules
1842 ;; $' $" $` .... are variables.
1843 ;; ?' ?" ?` are character literals (one-char strings in 1.9+).
1844 ("\\([?$]\\)[#\"'`]"
1845 (1 (if (save-excursion
1846 (nth 3 (syntax-ppss (match-beginning 0))))
1847 ;; Within a string, skip.
1848 (goto-char (match-end 1))
1849 (string-to-syntax "\\"))))
1850 ;; Part of symbol when at the end of a method name.
1852 (0 (unless (save-excursion
1853 (or (nth 8 (syntax-ppss (match-beginning 0)))
1854 (eq (char-before) ?
:)
1855 (let (parse-sexp-lookup-properties)
1856 (zerop (skip-syntax-backward "w_")))
1857 (memq (preceding-char) '(?
@ ?$
))))
1858 (string-to-syntax "_"))))
1859 ;; Regular expressions. Start with matching unescaped slash.
1860 ("\\(?:\\=\\|[^\\]\\)\\(?:\\\\\\\\\\)*\\(/\\)"
1861 (1 (let ((state (save-excursion (syntax-ppss (match-beginning 1)))))
1863 ;; Beginning of a regexp.
1864 (and (null (nth 8 state
))
1867 (looking-back ruby-syntax-before-regexp-re
1869 ;; End of regexp. We don't match the whole
1870 ;; regexp at once because it can have
1871 ;; string interpolation inside, or span
1873 (eq ?
/ (nth 3 state
)))
1874 (string-to-syntax "\"/")))))
1875 ;; Expression expansions in strings. We're handling them
1876 ;; here, so that the regexp rule never matches inside them.
1877 (ruby-expression-expansion-re
1878 (0 (ignore (ruby-syntax-propertize-expansion))))
1879 ("^=en\\(d\\)\\_>" (1 "!"))
1880 ("^\\(=\\)begin\\_>" (1 "!"))
1881 ;; Handle here documents.
1882 ((concat ruby-here-doc-beg-re
".*\\(\n\\)")
1883 (7 (unless (or (nth 8 (save-excursion
1884 (syntax-ppss (match-beginning 0))))
1885 (ruby-singleton-class-p (match-beginning 0)))
1886 (put-text-property (match-beginning 7) (match-end 7)
1887 'syntax-table
(string-to-syntax "\""))
1888 (ruby-syntax-propertize-heredoc end
))))
1889 ;; Handle percent literals: %w(), %q{}, etc.
1890 ((concat "\\(?:^\\|[[ \t\n<+(,=]\\)" ruby-percent-literal-beg-re
)
1891 (1 (prog1 "|" (ruby-syntax-propertize-percent-literal end
)))))
1894 (defun ruby-syntax-propertize-heredoc (limit)
1895 (let ((ppss (syntax-ppss))
1897 (when (eq ?
\n (nth 3 ppss
))
1899 (goto-char (nth 8 ppss
))
1901 (while (re-search-forward ruby-here-doc-beg-re
1902 (line-end-position) t
)
1903 (unless (ruby-singleton-class-p (match-beginning 0))
1904 (push (concat (ruby-here-doc-end-match) "\n") res
))))
1906 ;; With multiple openers on the same line, we don't know in which
1907 ;; part `start' is, so we have to go back to the beginning.
1909 (goto-char (nth 8 ppss
))
1910 (setq res
(nreverse res
)))
1911 (while (and res
(re-search-forward (pop res
) limit
'move
))
1913 (put-text-property (1- (point)) (point)
1914 'syntax-table
(string-to-syntax "\""))))
1915 ;; End up at bol following the heredoc openers.
1916 ;; Propertize expression expansions from this point forward.
1919 (defun ruby-syntax-enclosing-percent-literal (limit)
1920 (let ((state (syntax-ppss))
1922 ;; When already inside percent literal, re-propertize it.
1923 (when (eq t
(nth 3 state
))
1924 (goto-char (nth 8 state
))
1925 (when (looking-at ruby-percent-literal-beg-re
)
1926 (ruby-syntax-propertize-percent-literal limit
))
1927 (when (< (point) start
) (goto-char start
)))))
1929 (defun ruby-syntax-propertize-percent-literal (limit)
1930 (goto-char (match-beginning 2))
1931 ;; Not inside a simple string or comment.
1932 (when (eq t
(nth 3 (syntax-ppss)))
1933 (let* ((op (char-after))
1934 (ops (char-to-string op
))
1935 (cl (or (cdr (aref (syntax-table) op
))
1936 (cdr (assoc op
'((?
< . ?
>))))))
1937 parse-sexp-lookup-properties
)
1941 (if cl
; Paired delimiters.
1942 ;; Delimiter pairs of the same kind can be nested
1943 ;; inside the literal, as long as they are balanced.
1944 ;; Create syntax table that ignores other characters.
1945 (with-syntax-table (make-char-table 'syntax-table nil
)
1946 (modify-syntax-entry op
(concat "(" (char-to-string cl
)))
1947 (modify-syntax-entry cl
(concat ")" ops
))
1948 (modify-syntax-entry ?
\\ "\\")
1950 (narrow-to-region (point) limit
)
1951 (forward-list))) ; skip to the paired character
1952 ;; Single character delimiter.
1953 (re-search-forward (concat "[^\\]\\(?:\\\\\\\\\\)*"
1954 (regexp-quote ops
)) limit nil
))
1955 ;; Found the closing delimiter.
1956 (put-text-property (1- (point)) (point) 'syntax-table
1957 (string-to-syntax "|")))
1958 ;; Unclosed literal, do nothing.
1959 ((scan-error search-failed
)))))))
1961 (defun ruby-syntax-propertize-expansion ()
1962 ;; Save the match data to a text property, for font-locking later.
1963 ;; Set the syntax of all double quotes and backticks to punctuation.
1964 (let* ((beg (match-beginning 2))
1966 (state (and beg
(save-excursion (syntax-ppss beg
)))))
1967 (when (ruby-syntax-expansion-allowed-p state
)
1968 (put-text-property beg
(1+ beg
) 'ruby-expansion-match-data
1971 (while (re-search-forward "[\"`]" end
'move
)
1972 (put-text-property (match-beginning 0) (match-end 0)
1973 'syntax-table
(string-to-syntax "."))))))
1975 (defun ruby-syntax-expansion-allowed-p (parse-state)
1976 "Return non-nil if expression expansion is allowed."
1977 (let ((term (nth 3 parse-state
)))
1979 ((memq term
'(?
\" ?
` ?
\n ?
/)))
1983 (goto-char (nth 8 parse-state
))
1984 (looking-at "%\\(?:[QWrxI]\\|\\W\\)")))))))
1986 (defun ruby-syntax-propertize-expansions (start end
)
1989 (while (re-search-forward ruby-expression-expansion-re end
'move
)
1990 (ruby-syntax-propertize-expansion))))
1992 (defun ruby-in-ppss-context-p (context &optional ppss
)
1993 (let ((ppss (or ppss
(syntax-ppss (point)))))
1995 ((eq context
'anything
)
1998 ((eq context
'string
)
2000 ((eq context
'heredoc
)
2001 (eq ?
\n (nth 3 ppss
)))
2002 ((eq context
'non-heredoc
)
2003 (and (ruby-in-ppss-context-p 'anything
)
2004 (not (ruby-in-ppss-context-p 'heredoc
))))
2005 ((eq context
'comment
)
2009 "Internal error on `ruby-in-ppss-context-p': "
2010 "context name `%s' is unknown")
2014 (defvar ruby-font-lock-syntax-table
2015 (let ((tbl (copy-syntax-table ruby-mode-syntax-table
)))
2016 (modify-syntax-entry ?_
"w" tbl
)
2018 "The syntax table to use for fontifying Ruby mode buffers.
2019 See `font-lock-syntax-table'.")
2021 (defconst ruby-font-lock-keyword-beg-re
"\\(?:^\\|[^.@$]\\|\\.\\.\\)")
2023 (defconst ruby-font-lock-keywords
2025 ("^\\s *def\\s +\\(?:[^( \t\n.]*\\.\\)?\\([^( \t\n]+\\)"
2026 1 font-lock-function-name-face
)
2029 ruby-font-lock-keyword-beg-re
2066 (1 font-lock-keyword-face
))
2067 ;; Core methods that have required arguments.
2069 ruby-font-lock-keyword-beg-re
2071 '( ;; built-in methods on Kernel
2101 ;; keyword-like private methods on Module
2112 "private_class_method"
2114 "public_class_method"
2119 (1 (unless (looking-at " *\\(?:[]|,.)}=]\\|$\\)")
2120 font-lock-builtin-face
)))
2121 ;; Kernel methods that have no required arguments.
2123 ruby-font-lock-keyword-beg-re
2148 (1 font-lock-builtin-face
))
2149 ;; Here-doc beginnings.
2150 (,ruby-here-doc-beg-re
2151 (0 (unless (ruby-singleton-class-p (match-beginning 0))
2152 'font-lock-string-face
)))
2153 ;; Perl-ish keywords.
2154 "\\_<\\(?:BEGIN\\|END\\)\\_>\\|^__END__$"
2156 (,(concat ruby-font-lock-keyword-beg-re
2157 "\\_<\\(nil\\|true\\|false\\)\\_>")
2158 1 font-lock-constant-face
)
2159 ;; Keywords that evaluate to certain values.
2160 ("\\_<__\\(?:LINE\\|ENCODING\\|FILE\\)__\\_>"
2161 (0 font-lock-builtin-face
))
2162 ;; Symbols with symbol characters.
2163 ("\\(^\\|[^:]\\)\\(:@?\\(?:\\w\\|_\\)+\\)\\([!?=]\\)?"
2164 (2 font-lock-constant-face
)
2165 (3 (unless (and (eq (char-before (match-end 3)) ?
=)
2166 (eq (char-after (match-end 3)) ?
>))
2168 font-lock-constant-face
)
2170 ;; Symbols with special characters.
2171 ("\\(^\\|[^:]\\)\\(:\\([-+~]@?\\|[/%&|^`]\\|\\*\\*?\\|<\\(<\\|=>?\\)?\\|>[>=]?\\|===?\\|=~\\|![~=]?\\|\\[\\]=?\\|#{[^}\n\\\\]*\\(\\\\.[^}\n\\\\]*\\)*}\\)\\)"
2172 2 font-lock-constant-face
)
2174 (,(concat "\\$\\(?:[:\"!@;,/\\._><\\$?~=*&`'+0-9]\\|-[0adFiIlpvw]\\|"
2175 (regexp-opt '("LOAD_PATH" "LOADED_FEATURES" "PROGRAM_NAME"
2176 "ERROR_INFO" "ERROR_POSITION"
2177 "FS" "FIELD_SEPARATOR"
2178 "OFS" "OUTPUT_FIELD_SEPARATOR"
2179 "RS" "INPUT_RECORD_SEPARATOR"
2180 "ORS" "OUTPUT_RECORD_SEPARATOR"
2181 "NR" "INPUT_LINE_NUMBER"
2182 "LAST_READ_LINE" "DEFAULT_OUTPUT" "DEFAULT_INPUT"
2183 "PID" "PROCESS_ID" "CHILD_STATUS"
2184 "LAST_MATCH_INFO" "IGNORECASE"
2185 "ARGV" "MATCH" "PREMATCH" "POSTMATCH"
2186 "LAST_PAREN_MATCH" "stdin" "stdout" "stderr"
2187 "DEBUG" "FILENAME" "VERBOSE" "SAFE" "CLASSPATH"
2188 "JRUBY_VERSION" "JRUBY_REVISION" "ENV_JAVA"))
2190 0 font-lock-builtin-face
)
2191 ("\\(\\$\\|@\\|@@\\)\\(\\w\\|_\\)+"
2192 0 font-lock-variable-name-face
)
2194 ("\\(?:\\_<\\|::\\)\\([A-Z]+\\(\\w\\|_\\)*\\)"
2195 1 (unless (eq ?\
( (char-after)) font-lock-type-face
))
2196 ("\\(^\\s *\\|[[{(,]\\s *\\|\\sw\\s +\\)\\(\\(\\sw\\|_\\)+\\):[^:]"
2197 (2 font-lock-constant-face
))
2198 ;; Conversion methods on Kernel.
2199 (,(concat ruby-font-lock-keyword-beg-re
2200 (regexp-opt '("Array" "Complex" "Float" "Hash"
2201 "Integer" "Rational" "String") 'symbols
))
2202 (1 font-lock-builtin-face
))
2203 ;; Expression expansion.
2204 (ruby-match-expression-expansion
2205 2 font-lock-variable-name-face t
)
2207 ("\\(?:^\\|[^[:alnum:]_]\\)\\(!+\\)[^=~]"
2208 1 font-lock-negation-char-face
)
2209 ;; Character literals.
2210 ;; FIXME: Support longer escape sequences.
2211 ("\\_<\\?\\\\?\\S " 0 font-lock-string-face
)
2213 ("\\(?:\\s|\\|/\\)\\([imxo]+\\)"
2214 1 (when (save-excursion
2215 (let ((state (syntax-ppss (match-beginning 0))))
2217 (or (eq (char-after) ?
/)
2219 (goto-char (nth 8 state
))
2220 (looking-at "%r"))))))
2221 font-lock-preprocessor-face
))
2223 "Additional expressions to highlight in Ruby mode.")
2225 (defun ruby-match-expression-expansion (limit)
2226 (let* ((prop 'ruby-expansion-match-data
)
2227 (pos (next-single-char-property-change (point) prop nil limit
))
2229 (when (and pos
(> pos
(point)))
2231 (or (and (setq value
(get-text-property pos prop
))
2232 (progn (set-match-data value
) t
))
2233 (ruby-match-expression-expansion limit
)))))
2236 (define-derived-mode ruby-mode prog-mode
"Ruby"
2237 "Major mode for editing Ruby code.
2240 (ruby-mode-variables)
2242 (setq-local imenu-create-index-function
'ruby-imenu-create-index
)
2243 (setq-local add-log-current-defun-function
'ruby-add-log-current-method
)
2244 (setq-local beginning-of-defun-function
'ruby-beginning-of-defun
)
2245 (setq-local end-of-defun-function
'ruby-end-of-defun
)
2247 (add-hook 'after-save-hook
'ruby-mode-set-encoding nil
'local
)
2248 (add-hook 'electric-indent-functions
'ruby--electric-indent-p nil
'local
)
2250 (setq-local font-lock-defaults
'((ruby-font-lock-keywords) nil nil
))
2251 (setq-local font-lock-keywords ruby-font-lock-keywords
)
2252 (setq-local font-lock-syntax-table ruby-font-lock-syntax-table
)
2254 (setq-local syntax-propertize-function
#'ruby-syntax-propertize-function
))
2256 ;;; Invoke ruby-mode when appropriate
2259 (add-to-list 'auto-mode-alist
2260 (cons (purecopy (concat "\\(?:\\."
2261 "rb\\|ru\\|rake\\|thor"
2262 "\\|jbuilder\\|rabl\\|gemspec\\|podspec"
2264 "\\(?:Gem\\|Rake\\|Cap\\|Thor"
2266 "\\|Vagrant\\|Guard\\|Pod\\)file"
2267 "\\)\\'")) 'ruby-mode
))
2270 (dolist (name (list "ruby" "rbx" "jruby" "ruby1.9" "ruby1.8"))
2271 (add-to-list 'interpreter-mode-alist
(cons (purecopy name
) 'ruby-mode
)))
2273 (provide 'ruby-mode
)
2275 ;;; ruby-mode.el ends here