Don't quote nil and t in doc strings
[emacs.git] / lisp / progmodes / ruby-mode.el
blob21ad1021c9e1dce8bef66f225d0676f2584f87b8
1 ;;; ruby-mode.el --- Major mode for editing Ruby files
3 ;; Copyright (C) 1994-2015 Free Software Foundation, Inc.
5 ;; Authors: Yukihiro Matsumoto
6 ;; Nobuyoshi Nakada
7 ;; URL: http://www.emacswiki.org/cgi-bin/wiki/RubyMode
8 ;; Created: Fri Feb 4 14:49:13 JST 1994
9 ;; Keywords: languages ruby
10 ;; Version: 1.2
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/>.
27 ;;; Commentary:
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.
40 ;;; Code:
42 (defgroup ruby nil
43 "Major mode for editing Ruby code."
44 :prefix "ruby-"
45 :group 'languages)
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"))
62 "\\)\\_>")
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
86 '("and" "or" "not")
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
100 "class\\s *<<"
101 "Regexp to match the beginning of a singleton class context.")
103 (eval-and-compile
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'."
115 (concat "^"
116 (if (match-string 2) "[ \t]*" nil)
117 (regexp-quote
118 (or (match-string 4)
119 (match-string 5)
120 (match-string 6)))))
122 (defconst ruby-delimiter
123 (concat "[?$/%(){}#\"'`.:]\\|<<\\|\\[\\|\\]\\|\\_<\\("
124 ruby-block-beg-re
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))
150 (when ruby-use-smie
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)
156 map)
157 "Keymap used in Ruby mode.")
159 (easy-menu-define
160 ruby-mode-menu
161 ruby-mode-map
162 "Ruby Mode Menu"
163 '("Ruby"
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]
167 "--"
168 ["Toggle String Quotes" ruby-toggle-string-quotes t]
169 "--"
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)
211 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."
216 :type 'boolean
217 :group 'ruby
218 :safe 'booleanp)
220 (defcustom ruby-indent-level 2
221 "Indentation of Ruby statements."
222 :type 'integer
223 :group 'ruby
224 :safe 'integerp)
226 (defcustom ruby-comment-column (default-value 'comment-column)
227 "Indentation column of comments."
228 :type 'integer
229 :group 'ruby
230 :safe 'integerp)
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:
241 tee = if foo
243 else
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
249 the statement:
251 tee = if foo
253 else
257 Only has effect when `ruby-use-smie' is t.
259 :type `(choice
260 (const :tag "None" nil)
261 (const :tag "All" t)
262 (repeat :tag "User defined"
263 (choice ,@(mapcar
264 (lambda (kw) (list 'const kw))
265 ruby-alignable-keywords))))
266 :group 'ruby
267 :safe 'listp
268 :version "24.4")
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
274 of its parent.
276 Only has effect when `ruby-use-smie' is t."
277 :type 'boolean
278 :group 'ruby
279 :safe 'booleanp
280 :version "24.4")
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."
286 :type 'boolean
287 :group 'ruby
288 :safe 'booleanp)
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)
297 character
298 (repeat (choice character
299 (cons character (choice (const nil)
300 (const t)))
301 (const t) ; why?
303 :group 'ruby)
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))
309 :group 'ruby)
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")))
320 :group 'ruby)
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."
333 :type '(choice
334 (const :tag "Emacs Style" emacs)
335 (const :tag "Ruby Style" ruby)
336 (const :tag "Custom Style" custom))
337 :group 'ruby
338 :version "24.4")
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'."
343 :type 'string
344 :group 'ruby
345 :version "24.4")
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)
351 ;;; SMIE support
353 (require 'smie)
355 ;; Here's a simplified BNF grammar, for reference:
356 ;; http://www.cse.buffalo.edu/~regan/cse305/RubyBNF.pdf
357 (defconst ruby-smie-grammar
358 (smie-prec2->grammar
359 (smie-merge-prec2s
360 (smie-bnf->prec2
361 '((id)
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)
368 (id " @ " exp))
369 (exp1 (exp2) (exp2 "?" exp1 ":" exp1))
370 (exp2 (exp3) (exp3 "." exp2))
371 (exp3 ("def" insts "end")
372 ("begin" insts-rescue-insts "end")
373 ("do" insts "end")
374 ("class" insts "end") ("module" insts "end")
375 ("for" for-body "end")
376 ("[" expseq "]")
377 ("{" hashvals "}")
378 ("{" insts "}")
379 ("while" insts "end")
380 ("until" insts "end")
381 ("unless" insts "end")
382 ("if" if-body "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 "="))
399 '((assoc "when"))
400 '((assoc "elsif"))
401 '((assoc "rescue" "ensure"))
402 '((assoc ",")))
404 (smie-precs->prec2
405 '((right "=")
406 (right "+=" "-=" "*=" "/=" "%=" "**=" "&=" "|=" "^="
407 "<<=" ">>=" "&&=" "||=")
408 (left ".." "...")
409 (left "+" "-")
410 (left "*" "/" "%" "**")
411 (left "&&" "||")
412 (left "^" "&" "|")
413 (nonassoc "<=>")
414 (nonassoc ">" ">=" "<" "<=")
415 (nonassoc "==" "===" "!=")
416 (nonassoc "=~" "!~")
417 (left "<<" ">>")
418 (right "."))))))
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 ()
425 (save-excursion
426 (skip-chars-backward " \t")
427 (not (or (bolp)
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))
443 '("|" "||")))
444 (and (eq (car (syntax-after (1- (point)))) 2)
445 (member (save-excursion (ruby-smie--backward-token))
446 '("iuwu-mod" "and" "or")))
447 (save-excursion
448 (forward-comment 1)
449 (eq (char-after) ?.))))))
451 (defun ruby-smie--redundant-do-p (&optional skip)
452 (save-excursion
453 (if skip (backward-word 1))
454 (member (nth 2 (smie-backward-sexp ";")) '("while" "until" "for"))))
456 (defun ruby-smie--opening-pipe-p ()
457 (save-excursion
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 ()
464 (save-excursion
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)
470 (and
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)))
477 (save-excursion
478 (goto-char pos)
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")
482 'symbols))))
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 ()
492 (let ((pos (point)))
493 (skip-chars-forward " \t")
494 (cond
495 ((and (looking-at "\n") (looking-at "\\s\"")) ;A heredoc.
496 ;; Tokenize the whole heredoc as semicolon.
497 (goto-char (scan-sexps (point) 1))
498 ";")
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))
502 ";")
504 (forward-comment (point-max))
505 (cond
506 ((and (< pos (point))
507 (save-excursion
508 (ruby-smie--args-separator-p (prog1 (point) (goto-char pos)))))
509 " @ ")
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)))
516 (when dot
517 (setq tok (concat "." tok)))
518 (cond
519 ((member tok '("unless" "if" "while" "until"))
520 (if (save-excursion (forward-word -1) (ruby-smie--bosp))
521 tok "iuwu-mod"))
522 ((string-match-p "\\`|[*&]?\\'" tok)
523 (forward-char (- 1 (length tok)))
524 (setq tok "|")
525 (cond
526 ((ruby-smie--opening-pipe-p) "opening-|")
527 ((ruby-smie--closing-pipe-p) "closing-|")
528 (t tok)))
529 ((and (equal tok "") (looking-at "\\\\\n"))
530 (goto-char (match-end 0)) (ruby-smie--forward-token))
531 ((equal tok "do")
532 (cond
533 ((not (ruby-smie--redundant-do-p 'skip)) tok)
534 ((> (save-excursion (forward-comment (point-max)) (point))
535 (line-end-position))
536 (ruby-smie--forward-token)) ;Fully redundant.
537 (t ";")))
538 (t tok)))))))))
540 (defun ruby-smie--backward-token ()
541 (let ((pos (point)))
542 (forward-comment (- (point)))
543 (cond
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))
549 ";")
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".
555 " @ ")
557 (let ((tok (smie-default-backward-token))
558 (dot (ruby-smie--at-dot-call)))
559 (when dot
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.
563 (cond
564 ((member tok '("unless" "if" "while" "until"))
565 (if (ruby-smie--bosp)
566 tok "iuwu-mod"))
567 ((equal tok "|")
568 (cond
569 ((ruby-smie--opening-pipe-p) "opening-|")
570 ((ruby-smie--closing-pipe-p) "closing-|")
571 (t tok)))
572 ((string-match-p "\\`|[*&]\\'" tok)
573 (forward-char 1)
574 (substring tok 1))
575 ((and (equal tok "") (eq ?\\ (char-before)) (looking-at "\n"))
576 (forward-char -1) (ruby-smie--backward-token))
577 ((equal tok "do")
578 (cond
579 ((not (ruby-smie--redundant-do-p)) tok)
580 ((> (save-excursion (forward-word 1)
581 (forward-comment (point-max)) (point))
582 (line-end-position))
583 (ruby-smie--backward-token)) ;Fully redundant.
584 (t ";")))
585 (t tok)))))))
587 (defun ruby-smie--indent-to-stmt ()
588 (save-excursion
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))
603 (`(:before . ";")
604 (cond
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 `"(" `"[" `"{"))
614 (cond
615 ((and (equal token "{")
616 (not (smie-rule-prev-p "(" "{" "[" "," "=>" "=" "return" ";"))
617 (save-excursion
618 (forward-comment -1)
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
625 ;; open-paren.
626 (cond
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 ".")
632 (let (smie--parent)
633 (save-excursion
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))
638 (save-excursion
639 (unless (integerp (car parent)) (forward-char -1))
640 (not (ruby-smie--bosp))))
641 (progn
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'?
649 (save-excursion
650 (forward-char 1)
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)))))
656 (`(:before . " @ ")
657 (save-excursion
658 (skip-chars-forward " \t")
659 (cons 'column (current-column))))
660 (`(:before . "do") (ruby-smie--indent-to-stmt))
661 (`(:before . ".")
662 (if (smie-rule-sibling-p)
663 (and ruby-align-chained-calls 0)
664 ruby-indent-level))
665 (`(:before . ,(or `"else" `"then" `"elsif" `"rescue" `"ensure"))
666 (smie-rule-parent))
667 (`(:before . "when")
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)
677 ruby-indent-level))
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)
687 (save-excursion
688 (unless point (setq point (point)))
689 (forward-line 0)
690 (skip-chars-forward " \t")
691 (eq (point) point)))
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)
697 (goto-char beg)
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))
704 (cond
705 ((string= "alias" decl)
706 (if prefix (setq name (concat prefix name)))
707 (push (cons name pos) index-alist))
708 ((string= "def" decl)
709 (if prefix
710 (setq name
711 (cond
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)
723 (setq beg (point))
724 (setq index-alist
725 (nconc (ruby-imenu-create-index-in-block
726 (concat name (if sing "." "#"))
727 next beg) index-alist))
728 (goto-char beg))))
729 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."
737 (let (state
738 (end (or end (point-max))))
739 (if ruby-use-smie
740 (save-restriction
741 (back-to-indentation)
742 (narrow-to-region (point) end)
743 (smie-forward-sexp))
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)
750 (if ruby-use-smie
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 -*-")
772 (`custom
773 ruby-custom-encoding-magic-comment-template))))
774 (insert
775 (format encoding-magic-comment-template encoding)
776 "\n")))
778 (defun ruby--detect-encoding ()
779 (if (eq ruby-insert-encoding-magic-comment 'always-utf8)
780 "utf-8"
781 (let ((coding-system
782 (or save-buffer-coding-system
783 buffer-file-coding-system)))
784 (if coding-system
785 (setq coding-system
786 (or (coding-system-get coding-system 'mime-charset)
787 (coding-system-change-eol-conversion coding-system nil))))
788 (if coding-system
789 (symbol-name
790 (if ruby-use-encoding-map
791 (let ((elt (assq coding-system ruby-encoding-map)))
792 (if elt (cdr elt) coding-system))
793 coding-system))
794 "ascii-8bit"))))
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."
802 (save-excursion
803 (widen)
804 (goto-char (point-min))
805 (when (ruby--encoding-comment-required-p)
806 (goto-char (point-min))
807 (let ((coding-system (ruby--detect-encoding)))
808 (when coding-system
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)
825 (cond
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 '(?_ ?? ?! ?:)))
833 (let ((pt (point)))
834 (save-excursion
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."
847 (save-excursion
848 (beginning-of-line)
849 (back-to-indentation)
850 (current-column)))
852 (defun ruby-indent-line (&optional ignored)
853 "Correct the indentation of the current Ruby line."
854 (interactive)
855 (ruby-indent-to (ruby-calculate-indent)))
857 (defun ruby-indent-to (column)
858 "Indent the current line to COLUMN."
859 (when column
860 (let (shift top beg)
861 (and (< column 0) (error "Invalid nesting"))
862 (setq shift (current-column))
863 (beginning-of-line)
864 (setq beg (point))
865 (back-to-indentation)
866 (setq top (current-column))
867 (skip-chars-backward " \t")
868 (if (>= shift top) (setq shift (- shift top))
869 (setq shift 0))
870 (if (and (bolp)
871 (= column top))
872 (move-to-column (+ column shift))
873 (move-to-column top)
874 (delete-region beg (point))
875 (beginning-of-line)
876 (indent-to column)
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)
892 (save-excursion
893 (when pos (goto-char pos))
894 (forward-word -1)
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'."
902 (save-excursion
903 (store-match-data nil)
904 (let ((space (skip-chars-backward " \t"))
905 (start (point)))
906 (cond
907 ((bolp) t)
908 ((progn
909 (forward-char -1)
910 (and (looking-at "\\?")
911 (or (eq (char-syntax (char-before (point))) ?w)
912 (ruby-special-char-p))))
913 nil)
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))
920 (bolp)
921 (save-excursion (forward-char -1) (looking-at "\\Sw$"))))
922 (and (looking-at ruby-symbol-re)
923 (skip-chars-backward ruby-symbol-chars)
924 (cond
925 ((looking-at (regexp-opt
926 (append ruby-block-beg-keywords
927 ruby-block-op-keywords
928 ruby-block-mid-keywords)
929 'words))
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]"))
936 (t nil)))))))))
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
953 delimiter."
954 (let ((n 1) (c (string-to-char term))
955 (re (concat "[^\\]\\(\\\\\\\\\\)*\\("
956 (if (string= term "^") ;[^] is not a valid regexp
957 "\\^"
958 (concat "[" term "]"))
959 (when expand "\\|\\(#{\\)")
960 "\\)")))
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)
965 (1- n) (1+ n))) 0)))
966 (forward-char -1))
967 (cond ((zerop n))
968 (no-error nil)
969 ((error "Unterminated string")))))
971 (defun ruby-deep-indent-paren-p (c)
972 "TODO: document."
973 (cond ((listp ruby-deep-indent-paren)
974 (let ((deep (assoc c ruby-deep-indent-paren)))
975 (cond (deep
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))
989 (cond
990 ((and (memq (char-before) '(?@ ?$)) (looking-at "\\sw"))
991 (goto-char pnt))
992 ((looking-at "[\"`]") ;skip string
993 (cond
994 ((and (not (eobp))
995 (ruby-forward-string (buffer-substring (point) (1+ (point)))
996 end t t))
997 nil)
999 (setq in-string (point))
1000 (goto-char end))))
1001 ((looking-at "'")
1002 (cond
1003 ((and (not (eobp))
1004 (re-search-forward "[^\\]\\(\\\\\\\\\\)*'" end t))
1005 nil)
1007 (setq in-string (point))
1008 (goto-char end))))
1009 ((looking-at "/=")
1010 (goto-char pnt))
1011 ((looking-at "/")
1012 (cond
1013 ((and (not (eobp)) (ruby-expr-beg 'expr-re))
1014 (if (ruby-forward-string "/" end t t)
1016 (setq in-string (point))
1017 (goto-char end)))
1019 (goto-char pnt))))
1020 ((looking-at "%")
1021 (cond
1022 ((and (not (eobp))
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))
1029 (cond
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 "\\")
1040 "\\\\[^\\]*\\\\"
1041 (concat "[^\\]\\(\\\\\\\\\\)*" w))
1042 end t)))
1043 (setq in-string (point))
1044 (goto-char end)))
1046 (goto-char pnt))))
1047 ((looking-at "\\?") ;skip ?char
1048 (cond
1049 ((and (ruby-expr-beg)
1050 (looking-at "?\\(\\\\C-\\|\\\\M-\\)*\\\\?."))
1051 (goto-char (match-end 0)))
1053 (goto-char pnt))))
1054 ((looking-at "\\$") ;skip $char
1055 (goto-char pnt)
1056 (forward-char 1))
1057 ((looking-at "#") ;skip comment
1058 (forward-line 1)
1059 (goto-char (point))
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)))
1064 (progn
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))
1069 (setq depth 0))
1070 (setq nest (cons (cons (char-after (point)) pnt) nest))
1071 (setq depth (1+ depth))))
1072 (goto-char pnt)
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))
1079 (goto-char pnt))
1080 ((looking-at ruby-block-end-re)
1081 (if (or (and (not (bolp))
1082 (progn
1083 (forward-char -1)
1084 (setq w (char-after (point)))
1085 (or (eq ?_ w)
1086 (eq ?. w))))
1087 (progn
1088 (goto-char pnt)
1089 (setq w (char-after (point)))
1090 (or (eq ?_ w)
1091 (eq ?! w)
1092 (eq ?? w))))
1094 (setq nest (cdr nest))
1095 (setq depth (1- depth)))
1096 (goto-char pnt))
1097 ((looking-at "def\\s +[^(\n;]*")
1098 (if (or (bolp)
1099 (progn
1100 (forward-char -1)
1101 (not (eq ?_ (char-after (point))))))
1102 (progn
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 "\\)\\_>"))
1107 (and
1108 (save-match-data
1109 (or (not (looking-at "do\\_>"))
1110 (save-excursion
1111 (back-to-indentation)
1112 (not (looking-at ruby-non-block-do-re)))))
1113 (or (bolp)
1114 (progn
1115 (forward-char -1)
1116 (setq w (char-after (point)))
1117 (not (or (eq ?_ w)
1118 (eq ?. w)))))
1119 (goto-char pnt)
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))
1125 (goto-char pnt)
1126 (setq nest (cons (cons nil pnt) nest))
1127 (setq depth (1+ depth)))
1128 (goto-char pnt))
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]+")
1139 (looking-at "\\."))
1140 (goto-char (match-end 0)))
1141 ((looking-at "^=begin")
1142 (if (re-search-forward "^=end" end t)
1143 (forward-line 1)
1144 (setq in-string (match-end 0))
1145 (goto-char end)))
1146 ((looking-at "<<")
1147 (cond
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)
1160 nest (nth 1 state)
1161 depth (nth 2 state)
1162 pcol (nth 3 state)
1163 indent (nth 4 state))
1164 ;; skip heredoc section
1165 (if (re-search-forward (concat "^" re "$") end 'move)
1166 (forward-line 1)
1167 (setq in-string id-end)
1168 (goto-char end))))
1170 (goto-char pnt))))
1171 ((looking-at "^__END__$")
1172 (goto-char pnt))
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)
1177 (forward-line 1)
1178 (setq in-string (match-end 0))
1179 (goto-char ruby-indent-point)))
1181 (error (format "Bad string %s"
1182 (buffer-substring (point) pnt)
1183 ))))))
1184 (list in-string nest depth pcol))
1186 (defun ruby-parse-region (start end)
1187 "TODO: document."
1188 (let (state)
1189 (save-excursion
1190 (if start
1191 (goto-char start)
1192 (ruby-beginning-of-indent))
1193 (save-restriction
1194 (narrow-to-region (point) end)
1195 (while (and (> end (point))
1196 (setq state (apply 'ruby-parse-partial end state))))))
1197 (list (nth 0 state) ; in-string
1198 (car (nth 1 state)) ; nest
1199 (nth 2 state) ; depth
1200 (car (car (nth 3 state))) ; pcol
1201 ;(car (nth 5 state)) ; indent
1204 (defun ruby-indent-size (pos nest)
1205 "Return the indentation level in spaces NEST levels deeper than POS."
1206 (+ pos (* (or nest 1) ruby-indent-level)))
1208 (defun ruby-calculate-indent (&optional parse-start)
1209 "Return the proper indentation level of the current line."
1210 ;; TODO: Document body
1211 (save-excursion
1212 (beginning-of-line)
1213 (let ((ruby-indent-point (point))
1214 (case-fold-search nil)
1215 state eol begin op-end
1216 (paren (progn (skip-syntax-forward " ")
1217 (and (char-after) (matching-paren (char-after)))))
1218 (indent 0))
1219 (if parse-start
1220 (goto-char parse-start)
1221 (ruby-beginning-of-indent)
1222 (setq parse-start (point)))
1223 (back-to-indentation)
1224 (setq indent (current-column))
1225 (setq state (ruby-parse-region parse-start ruby-indent-point))
1226 (cond
1227 ((nth 0 state) ; within string
1228 (setq indent nil)) ; do nothing
1229 ((car (nth 1 state)) ; in paren
1230 (goto-char (setq begin (cdr (nth 1 state))))
1231 (let ((deep (ruby-deep-indent-paren-p (car (nth 1 state)))))
1232 (if deep
1233 (cond ((and (eq deep t) (eq (car (nth 1 state)) paren))
1234 (skip-syntax-backward " ")
1235 (setq indent (1- (current-column))))
1236 ((let ((s (ruby-parse-region (point) ruby-indent-point)))
1237 (and (nth 2 s) (> (nth 2 s) 0)
1238 (or (goto-char (cdr (nth 1 s))) t)))
1239 (forward-word -1)
1240 (setq indent (ruby-indent-size (current-column)
1241 (nth 2 state))))
1243 (setq indent (current-column))
1244 (cond ((eq deep 'space))
1245 (paren (setq indent (1- indent)))
1246 (t (setq indent (ruby-indent-size (1- indent) 1))))))
1247 (if (nth 3 state) (goto-char (nth 3 state))
1248 (goto-char parse-start) (back-to-indentation))
1249 (setq indent (ruby-indent-size (current-column) (nth 2 state))))
1250 (and (eq (car (nth 1 state)) paren)
1251 (ruby-deep-indent-paren-p (matching-paren paren))
1252 (search-backward (char-to-string paren))
1253 (setq indent (current-column)))))
1254 ((and (nth 2 state) (> (nth 2 state) 0)) ; in nest
1255 (if (null (cdr (nth 1 state)))
1256 (error "Invalid nesting"))
1257 (goto-char (cdr (nth 1 state)))
1258 (forward-word -1) ; skip back a keyword
1259 (setq begin (point))
1260 (cond
1261 ((looking-at "do\\>[^_]") ; iter block is a special case
1262 (if (nth 3 state) (goto-char (nth 3 state))
1263 (goto-char parse-start) (back-to-indentation))
1264 (setq indent (ruby-indent-size (current-column) (nth 2 state))))
1266 (setq indent (+ (current-column) ruby-indent-level)))))
1268 ((and (nth 2 state) (< (nth 2 state) 0)) ; in negative nest
1269 (setq indent (ruby-indent-size (current-column) (nth 2 state)))))
1270 (when indent
1271 (goto-char ruby-indent-point)
1272 (end-of-line)
1273 (setq eol (point))
1274 (beginning-of-line)
1275 (cond
1276 ((and (not (ruby-deep-indent-paren-p paren))
1277 (re-search-forward ruby-negative eol t))
1278 (and (not (eq ?_ (char-after (match-end 0))))
1279 (setq indent (- indent ruby-indent-level))))
1280 ((and
1281 (save-excursion
1282 (beginning-of-line)
1283 (not (bobp)))
1284 (or (ruby-deep-indent-paren-p t)
1285 (null (car (nth 1 state)))))
1286 ;; goto beginning of non-empty no-comment line
1287 (let (end done)
1288 (while (not done)
1289 (skip-chars-backward " \t\n")
1290 (setq end (point))
1291 (beginning-of-line)
1292 (if (re-search-forward "^\\s *#" end t)
1293 (beginning-of-line)
1294 (setq done t))))
1295 (end-of-line)
1296 ;; skip the comment at the end
1297 (skip-chars-backward " \t")
1298 (let (end (pos (point)))
1299 (beginning-of-line)
1300 (while (and (re-search-forward "#" pos t)
1301 (setq end (1- (point)))
1302 (or (ruby-special-char-p end)
1303 (and (setq state (ruby-parse-region
1304 parse-start end))
1305 (nth 0 state))))
1306 (setq end nil))
1307 (goto-char (or end pos))
1308 (skip-chars-backward " \t")
1309 (setq begin (if (and end (nth 0 state)) pos (cdr (nth 1 state))))
1310 (setq state (ruby-parse-region parse-start (point))))
1311 (or (bobp) (forward-char -1))
1312 (and
1313 (or (and (looking-at ruby-symbol-re)
1314 (skip-chars-backward ruby-symbol-chars)
1315 (looking-at (concat "\\<\\(" ruby-block-hanging-re
1316 "\\)\\>"))
1317 (not (eq (point) (nth 3 state)))
1318 (save-excursion
1319 (goto-char (match-end 0))
1320 (not (looking-at "[a-z_]"))))
1321 (and (looking-at ruby-operator-re)
1322 (not (ruby-special-char-p))
1323 (save-excursion
1324 (forward-char -1)
1325 (or (not (looking-at ruby-operator-re))
1326 (not (eq (char-before) ?:))))
1327 ;; Operator at the end of line.
1328 (let ((c (char-after (point))))
1329 (and
1330 ;; (or (null begin)
1331 ;; (save-excursion
1332 ;; (goto-char begin)
1333 ;; (skip-chars-forward " \t")
1334 ;; (not (or (eolp) (looking-at "#")
1335 ;; (and (eq (car (nth 1 state)) ?{)
1336 ;; (looking-at "|"))))))
1337 ;; Not a regexp or percent literal.
1338 (null (nth 0 (ruby-parse-region (or begin parse-start)
1339 (point))))
1340 (or (not (eq ?| (char-after (point))))
1341 (save-excursion
1342 (or (eolp) (forward-char -1))
1343 (cond
1344 ((search-backward "|" nil t)
1345 (skip-chars-backward " \t\n")
1346 (and (not (eolp))
1347 (progn
1348 (forward-char -1)
1349 (not (looking-at "{")))
1350 (progn
1351 (forward-word -1)
1352 (not (looking-at "do\\>[^_]")))))
1353 (t t))))
1354 (not (eq ?, c))
1355 (setq op-end t)))))
1356 (setq indent
1357 (cond
1358 ((and
1359 (null op-end)
1360 (not (looking-at (concat "\\<\\(" ruby-block-hanging-re
1361 "\\)\\>")))
1362 (eq (ruby-deep-indent-paren-p t) 'space)
1363 (not (bobp)))
1364 (widen)
1365 (goto-char (or begin parse-start))
1366 (skip-syntax-forward " ")
1367 (current-column))
1368 ((car (nth 1 state)) indent)
1370 (+ indent ruby-indent-level))))))))
1371 (goto-char ruby-indent-point)
1372 (beginning-of-line)
1373 (skip-syntax-forward " ")
1374 (if (looking-at "\\.[^.]")
1375 (+ indent ruby-indent-level)
1376 indent))))
1378 (defun ruby-beginning-of-defun (&optional arg)
1379 "Move backward to the beginning of the current defun.
1380 With ARG, move backward multiple defuns. Negative ARG means
1381 move forward."
1382 (interactive "p")
1383 (let (case-fold-search)
1384 (and (re-search-backward (concat "^\\s *" ruby-defun-beg-re "\\_>")
1385 nil t (or arg 1))
1386 (beginning-of-line))))
1388 (defun ruby-end-of-defun ()
1389 "Move point to the end of the current defun.
1390 The defun begins at or after the point. This function is called
1391 by `end-of-defun'."
1392 (interactive "p")
1393 (ruby-forward-sexp)
1394 (let (case-fold-search)
1395 (when (looking-back (concat "^\\s *" ruby-block-end-re)
1396 (line-beginning-position))
1397 (forward-line 1))))
1399 (defun ruby-beginning-of-indent ()
1400 "Backtrack to a line which can be used as a reference for
1401 calculating indentation on the lines after it."
1402 (while (and (re-search-backward ruby-indent-beg-re nil 'move)
1403 (if (ruby-in-ppss-context-p 'anything)
1405 ;; We can stop, then.
1406 (beginning-of-line)))))
1408 (defun ruby-move-to-block (n)
1409 "Move to the beginning (N < 0) or the end (N > 0) of the
1410 current block, a sibling block, or an outer block. Do that (abs N) times."
1411 (back-to-indentation)
1412 (let ((signum (if (> n 0) 1 -1))
1413 (backward (< n 0))
1414 (depth (or (nth 2 (ruby-parse-region (point) (line-end-position))) 0))
1415 case-fold-search
1416 down done)
1417 (when (looking-at ruby-block-mid-re)
1418 (setq depth (+ depth signum)))
1419 (when (< (* depth signum) 0)
1420 ;; Moving end -> end or beginning -> beginning.
1421 (setq depth 0))
1422 (dotimes (_ (abs n))
1423 (setq done nil)
1424 (setq down (save-excursion
1425 (back-to-indentation)
1426 ;; There is a block start or block end keyword on this
1427 ;; line, don't need to look for another block.
1428 (and (re-search-forward
1429 (if backward ruby-block-end-re
1430 (concat "\\_<\\(" ruby-block-beg-re "\\)\\_>"))
1431 (line-end-position) t)
1432 (not (nth 8 (syntax-ppss))))))
1433 (while (and (not done) (not (if backward (bobp) (eobp))))
1434 (forward-line signum)
1435 (cond
1436 ;; Skip empty and commented out lines.
1437 ((looking-at "^\\s *$"))
1438 ((looking-at "^\\s *#"))
1439 ;; Skip block comments;
1440 ((and (not backward) (looking-at "^=begin\\>"))
1441 (re-search-forward "^=end\\>"))
1442 ((and backward (looking-at "^=end\\>"))
1443 (re-search-backward "^=begin\\>"))
1444 ;; Jump over a multiline literal.
1445 ((ruby-in-ppss-context-p 'string)
1446 (goto-char (nth 8 (syntax-ppss)))
1447 (unless backward
1448 (forward-sexp)
1449 (when (bolp) (forward-char -1)))) ; After a heredoc.
1451 (let ((state (ruby-parse-region (point) (line-end-position))))
1452 (unless (car state) ; Line ends with unfinished string.
1453 (setq depth (+ (nth 2 state) depth))))
1454 (cond
1455 ;; Increased depth, we found a block.
1456 ((> (* signum depth) 0)
1457 (setq down t))
1458 ;; We're at the same depth as when we started, and we've
1459 ;; encountered a block before. Stop.
1460 ((and down (zerop depth))
1461 (setq done t))
1462 ;; Lower depth, means outer block, can stop now.
1463 ((< (* signum depth) 0)
1464 (setq done t)))))))
1465 (back-to-indentation)))
1467 (defun ruby-beginning-of-block (&optional arg)
1468 "Move backward to the beginning of the current block.
1469 With ARG, move up multiple blocks."
1470 (interactive "p")
1471 (ruby-move-to-block (- (or arg 1))))
1473 (defun ruby-end-of-block (&optional arg)
1474 "Move forward to the end of the current block.
1475 With ARG, move out of multiple blocks."
1476 (interactive "p")
1477 (ruby-move-to-block (or arg 1)))
1479 (defun ruby-forward-sexp (&optional arg)
1480 "Move forward across one balanced expression (sexp).
1481 With ARG, do it many times. Negative ARG means move backward."
1482 ;; TODO: Document body
1483 (interactive "p")
1484 (cond
1485 (ruby-use-smie (forward-sexp arg))
1486 ((and (numberp arg) (< arg 0)) (ruby-backward-sexp (- arg)))
1488 (let ((i (or arg 1)))
1489 (condition-case nil
1490 (while (> i 0)
1491 (skip-syntax-forward " ")
1492 (if (looking-at ",\\s *") (goto-char (match-end 0)))
1493 (cond ((looking-at "\\?\\(\\\\[CM]-\\)*\\\\?\\S ")
1494 (goto-char (match-end 0)))
1495 ((progn
1496 (skip-chars-forward ",.:;|&^~=!?\\+\\-\\*")
1497 (looking-at "\\s("))
1498 (goto-char (scan-sexps (point) 1)))
1499 ((and (looking-at (concat "\\<\\(" ruby-block-beg-re
1500 "\\)\\>"))
1501 (not (eq (char-before (point)) ?.))
1502 (not (eq (char-before (point)) ?:)))
1503 (ruby-end-of-block)
1504 (forward-word 1))
1505 ((looking-at "\\(\\$\\|@@?\\)?\\sw")
1506 (while (progn
1507 (while (progn (forward-word 1) (looking-at "_")))
1508 (cond ((looking-at "::") (forward-char 2) t)
1509 ((> (skip-chars-forward ".") 0))
1510 ((looking-at "\\?\\|!\\(=[~=>]\\|[^~=]\\)")
1511 (forward-char 1) nil)))))
1512 ((let (state expr)
1513 (while
1514 (progn
1515 (setq expr (or expr (ruby-expr-beg)
1516 (looking-at "%\\sw?\\Sw\\|[\"'`/]")))
1517 (nth 1 (setq state (apply #'ruby-parse-partial
1518 nil state))))
1519 (setq expr t)
1520 (skip-chars-forward "<"))
1521 (not expr))))
1522 (setq i (1- i)))
1523 ((error) (forward-word 1)))
1524 i))))
1526 (defun ruby-backward-sexp (&optional arg)
1527 "Move backward across one balanced expression (sexp).
1528 With ARG, do it many times. Negative ARG means move forward."
1529 ;; TODO: Document body
1530 (interactive "p")
1531 (cond
1532 (ruby-use-smie (backward-sexp arg))
1533 ((and (numberp arg) (< arg 0)) (ruby-forward-sexp (- arg)))
1535 (let ((i (or arg 1)))
1536 (condition-case nil
1537 (while (> i 0)
1538 (skip-chars-backward " \t\n,.:;|&^~=!?\\+\\-\\*")
1539 (forward-char -1)
1540 (cond ((looking-at "\\s)")
1541 (goto-char (scan-sexps (1+ (point)) -1))
1542 (pcase (char-before)
1543 (`?% (forward-char -1))
1544 ((or `?q `?Q `?w `?W `?r `?x)
1545 (if (eq (char-before (1- (point))) ?%)
1546 (forward-char -2))))
1547 nil)
1548 ((looking-at "\\s\"\\|\\\\\\S_")
1549 (let ((c (char-to-string (char-before (match-end 0)))))
1550 (while (and (search-backward c)
1551 (eq (logand (skip-chars-backward "\\") 1)
1552 1))))
1553 nil)
1554 ((looking-at "\\s.\\|\\s\\")
1555 (if (ruby-special-char-p) (forward-char -1)))
1556 ((looking-at "\\s(") nil)
1558 (forward-char 1)
1559 (while (progn (forward-word -1)
1560 (pcase (char-before)
1561 (`?_ t)
1562 (`?. (forward-char -1) t)
1563 ((or `?$ `?@)
1564 (forward-char -1)
1565 (and (eq (char-before) (char-after))
1566 (forward-char -1)))
1567 (`?:
1568 (forward-char -1)
1569 (eq (char-before) :)))))
1570 (if (looking-at ruby-block-end-re)
1571 (ruby-beginning-of-block))
1572 nil))
1573 (setq i (1- i)))
1574 ((error)))
1575 i))))
1577 (defun ruby-indent-exp (&optional ignored)
1578 "Indent each line in the balanced expression following the point."
1579 (interactive "*P")
1580 (let ((here (point-marker)) start top column (nest t))
1581 (set-marker-insertion-type here t)
1582 (unwind-protect
1583 (progn
1584 (beginning-of-line)
1585 (setq start (point) top (current-indentation))
1586 (while (and (not (eobp))
1587 (progn
1588 (setq column (ruby-calculate-indent start))
1589 (cond ((> column top)
1590 (setq nest t))
1591 ((and (= column top) nest)
1592 (setq nest nil) t))))
1593 (ruby-indent-to column)
1594 (beginning-of-line 2)))
1595 (goto-char here)
1596 (set-marker here nil))))
1598 (defun ruby-add-log-current-method ()
1599 "Return the current method name as a string.
1600 This string includes all namespaces.
1602 For example:
1604 #exit
1605 String#gsub
1606 Net::HTTP#active?
1607 File.open
1609 See `add-log-current-defun-function'."
1610 (condition-case nil
1611 (save-excursion
1612 (let* ((indent 0) mname mlist
1613 (start (point))
1614 (make-definition-re
1615 (lambda (re)
1616 (concat "^[ \t]*" re "[ \t]+"
1617 "\\("
1618 ;; \\. and :: for class methods
1619 "\\([A-Za-z_]" ruby-symbol-re "*\\|\\.\\|::" "\\)"
1620 "+\\)")))
1621 (definition-re (funcall make-definition-re ruby-defun-beg-re))
1622 (module-re (funcall make-definition-re "\\(class\\|module\\)")))
1623 ;; Get the current method definition (or class/module).
1624 (when (re-search-backward definition-re nil t)
1625 (goto-char (match-beginning 1))
1626 (if (not (string-equal "def" (match-string 1)))
1627 (setq mlist (list (match-string 2)))
1628 ;; We're inside the method. For classes and modules,
1629 ;; this check is skipped for performance.
1630 (when (ruby-block-contains-point start)
1631 (setq mname (match-string 2))))
1632 (setq indent (current-column))
1633 (beginning-of-line))
1634 ;; Walk up the class/module nesting.
1635 (while (and (> indent 0)
1636 (re-search-backward module-re nil t))
1637 (goto-char (match-beginning 1))
1638 (when (< (current-column) indent)
1639 (setq mlist (cons (match-string 2) mlist))
1640 (setq indent (current-column))
1641 (beginning-of-line)))
1642 ;; Process the method name.
1643 (when mname
1644 (let ((mn (split-string mname "\\.\\|::")))
1645 (if (cdr mn)
1646 (progn
1647 (unless (string-equal "self" (car mn)) ; def self.foo
1648 ;; def C.foo
1649 (let ((ml (nreverse mlist)))
1650 ;; If the method name references one of the
1651 ;; containing modules, drop the more nested ones.
1652 (while ml
1653 (if (string-equal (car ml) (car mn))
1654 (setq mlist (nreverse (cdr ml)) ml nil))
1655 (or (setq ml (cdr ml)) (nreverse mlist))))
1656 (if mlist
1657 (setcdr (last mlist) (butlast mn))
1658 (setq mlist (butlast mn))))
1659 (setq mname (concat "." (car (last mn)))))
1660 ;; See if the method is in singleton class context.
1661 (let ((in-singleton-class
1662 (when (re-search-forward ruby-singleton-class-re start t)
1663 (goto-char (match-beginning 0))
1664 ;; FIXME: Optimize it out, too?
1665 ;; This can be slow in a large file, but
1666 ;; unlike class/module declaration
1667 ;; indentations, method definitions can be
1668 ;; intermixed with these, and may or may not
1669 ;; be additionally indented after visibility
1670 ;; keywords.
1671 (ruby-block-contains-point start))))
1672 (setq mname (concat
1673 (if in-singleton-class "." "#")
1674 mname))))))
1675 ;; Generate the string.
1676 (if (consp mlist)
1677 (setq mlist (mapconcat (function identity) mlist "::")))
1678 (if mname
1679 (if mlist (concat mlist mname) mname)
1680 mlist)))))
1682 (defun ruby-block-contains-point (pt)
1683 (save-excursion
1684 (save-match-data
1685 (ruby-forward-sexp)
1686 (> (point) pt))))
1688 (defun ruby-brace-to-do-end (orig end)
1689 (let (beg-marker end-marker)
1690 (goto-char end)
1691 (when (eq (char-before) ?\})
1692 (delete-char -1)
1693 (when (save-excursion
1694 (skip-chars-backward " \t")
1695 (not (bolp)))
1696 (insert "\n"))
1697 (insert "end")
1698 (setq end-marker (point-marker))
1699 (when (and (not (eobp)) (eq (char-syntax (char-after)) ?w))
1700 (insert " "))
1701 (goto-char orig)
1702 (delete-char 1)
1703 (when (eq (char-syntax (char-before)) ?w)
1704 (insert " "))
1705 (insert "do")
1706 (setq beg-marker (point-marker))
1707 (when (looking-at "\\(\\s \\)*|")
1708 (unless (match-beginning 1)
1709 (insert " "))
1710 (goto-char (1+ (match-end 0)))
1711 (search-forward "|"))
1712 (unless (looking-at "\\s *$")
1713 (insert "\n"))
1714 (indent-region beg-marker end-marker)
1715 (goto-char beg-marker)
1716 t)))
1718 (defun ruby-do-end-to-brace (orig end)
1719 (let (beg-marker end-marker beg-pos end-pos)
1720 (goto-char (- end 3))
1721 (when (looking-at ruby-block-end-re)
1722 (delete-char 3)
1723 (setq end-marker (point-marker))
1724 (insert "}")
1725 (goto-char orig)
1726 (delete-char 2)
1727 ;; Maybe this should be customizable, let's see if anyone asks.
1728 (insert "{ ")
1729 (setq beg-marker (point-marker))
1730 (when (looking-at "\\s +|")
1731 (delete-char (- (match-end 0) (match-beginning 0) 1))
1732 (forward-char)
1733 (re-search-forward "|" (line-end-position) t))
1734 (save-excursion
1735 (skip-chars-forward " \t\n\r")
1736 (setq beg-pos (point))
1737 (goto-char end-marker)
1738 (skip-chars-backward " \t\n\r")
1739 (setq end-pos (point)))
1740 (when (or
1741 (< end-pos beg-pos)
1742 (and (= (line-number-at-pos beg-pos) (line-number-at-pos end-pos))
1743 (< (+ (current-column) (- end-pos beg-pos) 2) fill-column)))
1744 (just-one-space -1)
1745 (goto-char end-marker)
1746 (just-one-space -1))
1747 (goto-char beg-marker)
1748 t)))
1750 (defun ruby-toggle-block ()
1751 "Toggle block type from do-end to braces or back.
1752 The block must begin on the current line or above it and end after the point.
1753 If the result is do-end block, it will always be multiline."
1754 (interactive)
1755 (let ((start (point)) beg end)
1756 (end-of-line)
1757 (unless
1758 (if (and (re-search-backward "\\(?:[^#]\\)\\({\\)\\|\\(\\_<do\\_>\\)")
1759 (progn
1760 (goto-char (or (match-beginning 1) (match-beginning 2)))
1761 (setq beg (point))
1762 (save-match-data (ruby-forward-sexp))
1763 (setq end (point))
1764 (> end start)))
1765 (if (match-beginning 1)
1766 (ruby-brace-to-do-end beg end)
1767 (ruby-do-end-to-brace beg end)))
1768 (goto-char start))))
1770 (defun ruby--string-region ()
1771 "Return region for string at point."
1772 (let ((state (syntax-ppss)))
1773 (when (memq (nth 3 state) '(?' ?\"))
1774 (save-excursion
1775 (goto-char (nth 8 state))
1776 (forward-sexp)
1777 (list (nth 8 state) (point))))))
1779 (defun ruby-string-at-point-p ()
1780 "Check if cursor is at a string or not."
1781 (ruby--string-region))
1783 (defun ruby--inverse-string-quote (string-quote)
1784 "Get the inverse string quoting for STRING-QUOTE."
1785 (if (equal string-quote "\"") "'" "\""))
1787 (defun ruby-toggle-string-quotes ()
1788 "Toggle string literal quoting between single and double."
1789 (interactive)
1790 (when (ruby-string-at-point-p)
1791 (let* ((region (ruby--string-region))
1792 (min (nth 0 region))
1793 (max (nth 1 region))
1794 (string-quote (ruby--inverse-string-quote (buffer-substring-no-properties min (1+ min))))
1795 (content
1796 (buffer-substring-no-properties (1+ min) (1- max))))
1797 (setq content
1798 (if (equal string-quote "\"")
1799 (replace-regexp-in-string "\\\\\"" "\"" (replace-regexp-in-string "\\([^\\\\]\\)'" "\\1\\\\'" content))
1800 (replace-regexp-in-string "\\\\\'" "'" (replace-regexp-in-string "\\([^\\\\]\\)\"" "\\1\\\\\"" content))))
1801 (let ((orig-point (point)))
1802 (delete-region min max)
1803 (insert
1804 (format "%s%s%s" string-quote content string-quote))
1805 (goto-char orig-point)))))
1807 (eval-and-compile
1808 (defconst ruby-percent-literal-beg-re
1809 "\\(%\\)[qQrswWxIi]?\\([[:punct:]]\\)"
1810 "Regexp to match the beginning of percent literal.")
1812 (defconst ruby-syntax-methods-before-regexp
1813 '("gsub" "gsub!" "sub" "sub!" "scan" "split" "split!" "index" "match"
1814 "assert_match" "Given" "Then" "When")
1815 "Methods that can take regexp as the first argument.
1816 It will be properly highlighted even when the call omits parens.")
1818 (defvar ruby-syntax-before-regexp-re
1819 (concat
1820 ;; Special tokens that can't be followed by a division operator.
1821 "\\(^\\|[[{|=(,~;<>!]"
1822 ;; Distinguish ternary operator tokens.
1823 ;; FIXME: They don't really have to be separated with spaces.
1824 "\\|[?:] "
1825 ;; Control flow keywords and operators following bol or whitespace.
1826 "\\|\\(?:^\\|\\s \\)"
1827 (regexp-opt '("if" "elsif" "unless" "while" "until" "when" "and"
1828 "or" "not" "&&" "||"))
1829 ;; Method name from the list.
1830 "\\|\\_<"
1831 (regexp-opt ruby-syntax-methods-before-regexp)
1832 "\\)\\s *")
1833 "Regexp to match text that can be followed by a regular expression."))
1835 (defun ruby-syntax-propertize-function (start end)
1836 "Syntactic keywords for Ruby mode. See `syntax-propertize-function'."
1837 (let (case-fold-search)
1838 (goto-char start)
1839 (remove-text-properties start end '(ruby-expansion-match-data))
1840 (ruby-syntax-propertize-heredoc end)
1841 (ruby-syntax-enclosing-percent-literal end)
1842 (funcall
1843 (syntax-propertize-rules
1844 ;; $' $" $` .... are variables.
1845 ;; ?' ?" ?` are character literals (one-char strings in 1.9+).
1846 ("\\([?$]\\)[#\"'`]"
1847 (1 (if (save-excursion
1848 (nth 3 (syntax-ppss (match-beginning 0))))
1849 ;; Within a string, skip.
1850 (goto-char (match-end 1))
1851 (string-to-syntax "\\"))))
1852 ;; Part of symbol when at the end of a method name.
1853 ("[!?]"
1854 (0 (unless (save-excursion
1855 (or (nth 8 (syntax-ppss (match-beginning 0)))
1856 (eq (char-before) ?:)
1857 (let (parse-sexp-lookup-properties)
1858 (zerop (skip-syntax-backward "w_")))
1859 (memq (preceding-char) '(?@ ?$))))
1860 (string-to-syntax "_"))))
1861 ;; Regular expressions. Start with matching unescaped slash.
1862 ("\\(?:\\=\\|[^\\]\\)\\(?:\\\\\\\\\\)*\\(/\\)"
1863 (1 (let ((state (save-excursion (syntax-ppss (match-beginning 1)))))
1864 (when (or
1865 ;; Beginning of a regexp.
1866 (and (null (nth 8 state))
1867 (save-excursion
1868 (forward-char -1)
1869 (looking-back ruby-syntax-before-regexp-re
1870 (point-at-bol))))
1871 ;; End of regexp. We don't match the whole
1872 ;; regexp at once because it can have
1873 ;; string interpolation inside, or span
1874 ;; several lines.
1875 (eq ?/ (nth 3 state)))
1876 (string-to-syntax "\"/")))))
1877 ;; Expression expansions in strings. We're handling them
1878 ;; here, so that the regexp rule never matches inside them.
1879 (ruby-expression-expansion-re
1880 (0 (ignore (ruby-syntax-propertize-expansion))))
1881 ("^=en\\(d\\)\\_>" (1 "!"))
1882 ("^\\(=\\)begin\\_>" (1 "!"))
1883 ;; Handle here documents.
1884 ((concat ruby-here-doc-beg-re ".*\\(\n\\)")
1885 (7 (unless (or (nth 8 (save-excursion
1886 (syntax-ppss (match-beginning 0))))
1887 (ruby-singleton-class-p (match-beginning 0)))
1888 (put-text-property (match-beginning 7) (match-end 7)
1889 'syntax-table (string-to-syntax "\""))
1890 (ruby-syntax-propertize-heredoc end))))
1891 ;; Handle percent literals: %w(), %q{}, etc.
1892 ((concat "\\(?:^\\|[[ \t\n<+(,=]\\)" ruby-percent-literal-beg-re)
1893 (1 (prog1 "|" (ruby-syntax-propertize-percent-literal end)))))
1894 (point) end)))
1896 (defun ruby-syntax-propertize-heredoc (limit)
1897 (let ((ppss (syntax-ppss))
1898 (res '()))
1899 (when (eq ?\n (nth 3 ppss))
1900 (save-excursion
1901 (goto-char (nth 8 ppss))
1902 (beginning-of-line)
1903 (while (re-search-forward ruby-here-doc-beg-re
1904 (line-end-position) t)
1905 (unless (ruby-singleton-class-p (match-beginning 0))
1906 (push (concat (ruby-here-doc-end-match) "\n") res))))
1907 (save-excursion
1908 ;; With multiple openers on the same line, we don't know in which
1909 ;; part `start' is, so we have to go back to the beginning.
1910 (when (cdr res)
1911 (goto-char (nth 8 ppss))
1912 (setq res (nreverse res)))
1913 (while (and res (re-search-forward (pop res) limit 'move))
1914 (if (null res)
1915 (put-text-property (1- (point)) (point)
1916 'syntax-table (string-to-syntax "\""))))
1917 ;; End up at bol following the heredoc openers.
1918 ;; Propertize expression expansions from this point forward.
1919 ))))
1921 (defun ruby-syntax-enclosing-percent-literal (limit)
1922 (let ((state (syntax-ppss))
1923 (start (point)))
1924 ;; When already inside percent literal, re-propertize it.
1925 (when (eq t (nth 3 state))
1926 (goto-char (nth 8 state))
1927 (when (looking-at ruby-percent-literal-beg-re)
1928 (ruby-syntax-propertize-percent-literal limit))
1929 (when (< (point) start) (goto-char start)))))
1931 (defun ruby-syntax-propertize-percent-literal (limit)
1932 (goto-char (match-beginning 2))
1933 ;; Not inside a simple string or comment.
1934 (when (eq t (nth 3 (syntax-ppss)))
1935 (let* ((op (char-after))
1936 (ops (char-to-string op))
1937 (cl (or (cdr (aref (syntax-table) op))
1938 (cdr (assoc op '((?< . ?>))))))
1939 parse-sexp-lookup-properties)
1940 (save-excursion
1941 (condition-case nil
1942 (progn
1943 (if cl ; Paired delimiters.
1944 ;; Delimiter pairs of the same kind can be nested
1945 ;; inside the literal, as long as they are balanced.
1946 ;; Create syntax table that ignores other characters.
1947 (with-syntax-table (make-char-table 'syntax-table nil)
1948 (modify-syntax-entry op (concat "(" (char-to-string cl)))
1949 (modify-syntax-entry cl (concat ")" ops))
1950 (modify-syntax-entry ?\\ "\\")
1951 (save-restriction
1952 (narrow-to-region (point) limit)
1953 (forward-list))) ; skip to the paired character
1954 ;; Single character delimiter.
1955 (re-search-forward (concat "[^\\]\\(?:\\\\\\\\\\)*"
1956 (regexp-quote ops)) limit nil))
1957 ;; Found the closing delimiter.
1958 (put-text-property (1- (point)) (point) 'syntax-table
1959 (string-to-syntax "|")))
1960 ;; Unclosed literal, do nothing.
1961 ((scan-error search-failed)))))))
1963 (defun ruby-syntax-propertize-expansion ()
1964 ;; Save the match data to a text property, for font-locking later.
1965 ;; Set the syntax of all double quotes and backticks to punctuation.
1966 (let* ((beg (match-beginning 2))
1967 (end (match-end 2))
1968 (state (and beg (save-excursion (syntax-ppss beg)))))
1969 (when (ruby-syntax-expansion-allowed-p state)
1970 (put-text-property beg (1+ beg) 'ruby-expansion-match-data
1971 (match-data))
1972 (goto-char beg)
1973 (while (re-search-forward "[\"`]" end 'move)
1974 (put-text-property (match-beginning 0) (match-end 0)
1975 'syntax-table (string-to-syntax "."))))))
1977 (defun ruby-syntax-expansion-allowed-p (parse-state)
1978 "Return non-nil if expression expansion is allowed."
1979 (let ((term (nth 3 parse-state)))
1980 (cond
1981 ((memq term '(?\" ?` ?\n ?/)))
1982 ((eq term t)
1983 (save-match-data
1984 (save-excursion
1985 (goto-char (nth 8 parse-state))
1986 (looking-at "%\\(?:[QWrxI]\\|\\W\\)")))))))
1988 (defun ruby-syntax-propertize-expansions (start end)
1989 (save-excursion
1990 (goto-char start)
1991 (while (re-search-forward ruby-expression-expansion-re end 'move)
1992 (ruby-syntax-propertize-expansion))))
1994 (defun ruby-in-ppss-context-p (context &optional ppss)
1995 (let ((ppss (or ppss (syntax-ppss (point)))))
1996 (if (cond
1997 ((eq context 'anything)
1998 (or (nth 3 ppss)
1999 (nth 4 ppss)))
2000 ((eq context 'string)
2001 (nth 3 ppss))
2002 ((eq context 'heredoc)
2003 (eq ?\n (nth 3 ppss)))
2004 ((eq context 'non-heredoc)
2005 (and (ruby-in-ppss-context-p 'anything)
2006 (not (ruby-in-ppss-context-p 'heredoc))))
2007 ((eq context 'comment)
2008 (nth 4 ppss))
2010 (error (concat
2011 "Internal error on `ruby-in-ppss-context-p': "
2012 "context name `" (symbol-name context) "' is unknown"))))
2013 t)))
2015 (defvar ruby-font-lock-syntax-table
2016 (let ((tbl (copy-syntax-table ruby-mode-syntax-table)))
2017 (modify-syntax-entry ?_ "w" tbl)
2018 tbl)
2019 "The syntax table to use for fontifying Ruby mode buffers.
2020 See `font-lock-syntax-table'.")
2022 (defconst ruby-font-lock-keyword-beg-re "\\(?:^\\|[^.@$]\\|\\.\\.\\)")
2024 (defconst ruby-font-lock-keywords
2025 `(;; Functions.
2026 ("^\\s *def\\s +\\(?:[^( \t\n.]*\\.\\)?\\([^( \t\n]+\\)"
2027 1 font-lock-function-name-face)
2028 ;; Keywords.
2029 (,(concat
2030 ruby-font-lock-keyword-beg-re
2031 (regexp-opt
2032 '("alias"
2033 "and"
2034 "begin"
2035 "break"
2036 "case"
2037 "class"
2038 "def"
2039 "defined?"
2040 "do"
2041 "elsif"
2042 "else"
2043 "fail"
2044 "ensure"
2045 "for"
2046 "end"
2047 "if"
2048 "in"
2049 "module"
2050 "next"
2051 "not"
2052 "or"
2053 "redo"
2054 "rescue"
2055 "retry"
2056 "return"
2057 "self"
2058 "super"
2059 "then"
2060 "unless"
2061 "undef"
2062 "until"
2063 "when"
2064 "while"
2065 "yield")
2066 'symbols))
2067 (1 font-lock-keyword-face))
2068 ;; Core methods that have required arguments.
2069 (,(concat
2070 ruby-font-lock-keyword-beg-re
2071 (regexp-opt
2072 '( ;; built-in methods on Kernel
2073 "at_exit"
2074 "autoload"
2075 "autoload?"
2076 "callcc"
2077 "catch"
2078 "eval"
2079 "exec"
2080 "format"
2081 "lambda"
2082 "load"
2083 "loop"
2084 "open"
2086 "print"
2087 "printf"
2088 "proc"
2089 "putc"
2090 "puts"
2091 "require"
2092 "require_relative"
2093 "spawn"
2094 "sprintf"
2095 "syscall"
2096 "system"
2097 "throw"
2098 "trace_var"
2099 "trap"
2100 "untrace_var"
2101 "warn"
2102 ;; keyword-like private methods on Module
2103 "alias_method"
2104 "attr"
2105 "attr_accessor"
2106 "attr_reader"
2107 "attr_writer"
2108 "define_method"
2109 "extend"
2110 "include"
2111 "module_function"
2112 "prepend"
2113 "private_class_method"
2114 "private_constant"
2115 "public_class_method"
2116 "public_constant"
2117 "refine"
2118 "using")
2119 'symbols))
2120 (1 (unless (looking-at " *\\(?:[]|,.)}=]\\|$\\)")
2121 font-lock-builtin-face)))
2122 ;; Kernel methods that have no required arguments.
2123 (,(concat
2124 ruby-font-lock-keyword-beg-re
2125 (regexp-opt
2126 '("__callee__"
2127 "__dir__"
2128 "__method__"
2129 "abort"
2130 "binding"
2131 "block_given?"
2132 "caller"
2133 "exit"
2134 "exit!"
2135 "fail"
2136 "fork"
2137 "global_variables"
2138 "local_variables"
2139 "private"
2140 "protected"
2141 "public"
2142 "raise"
2143 "rand"
2144 "readline"
2145 "readlines"
2146 "sleep"
2147 "srand")
2148 'symbols))
2149 (1 font-lock-builtin-face))
2150 ;; Here-doc beginnings.
2151 (,ruby-here-doc-beg-re
2152 (0 (unless (ruby-singleton-class-p (match-beginning 0))
2153 'font-lock-string-face)))
2154 ;; Perl-ish keywords.
2155 "\\_<\\(?:BEGIN\\|END\\)\\_>\\|^__END__$"
2156 ;; Variables.
2157 (,(concat ruby-font-lock-keyword-beg-re
2158 "\\_<\\(nil\\|true\\|false\\)\\_>")
2159 1 font-lock-constant-face)
2160 ;; Keywords that evaluate to certain values.
2161 ("\\_<__\\(?:LINE\\|ENCODING\\|FILE\\)__\\_>"
2162 (0 font-lock-builtin-face))
2163 ;; Symbols with symbol characters.
2164 ("\\(^\\|[^:]\\)\\(:@?\\(?:\\w\\|_\\)+\\)\\([!?=]\\)?"
2165 (2 font-lock-constant-face)
2166 (3 (unless (and (eq (char-before (match-end 3)) ?=)
2167 (eq (char-after (match-end 3)) ?>))
2168 ;; bug#18466
2169 font-lock-constant-face)
2170 nil t))
2171 ;; Symbols with special characters.
2172 ("\\(^\\|[^:]\\)\\(:\\([-+~]@?\\|[/%&|^`]\\|\\*\\*?\\|<\\(<\\|=>?\\)?\\|>[>=]?\\|===?\\|=~\\|![~=]?\\|\\[\\]=?\\|#{[^}\n\\\\]*\\(\\\\.[^}\n\\\\]*\\)*}\\)\\)"
2173 2 font-lock-constant-face)
2174 ;; Special globals.
2175 (,(concat "\\$\\(?:[:\"!@;,/\\._><\\$?~=*&`'+0-9]\\|-[0adFiIlpvw]\\|"
2176 (regexp-opt '("LOAD_PATH" "LOADED_FEATURES" "PROGRAM_NAME"
2177 "ERROR_INFO" "ERROR_POSITION"
2178 "FS" "FIELD_SEPARATOR"
2179 "OFS" "OUTPUT_FIELD_SEPARATOR"
2180 "RS" "INPUT_RECORD_SEPARATOR"
2181 "ORS" "OUTPUT_RECORD_SEPARATOR"
2182 "NR" "INPUT_LINE_NUMBER"
2183 "LAST_READ_LINE" "DEFAULT_OUTPUT" "DEFAULT_INPUT"
2184 "PID" "PROCESS_ID" "CHILD_STATUS"
2185 "LAST_MATCH_INFO" "IGNORECASE"
2186 "ARGV" "MATCH" "PREMATCH" "POSTMATCH"
2187 "LAST_PAREN_MATCH" "stdin" "stdout" "stderr"
2188 "DEBUG" "FILENAME" "VERBOSE" "SAFE" "CLASSPATH"
2189 "JRUBY_VERSION" "JRUBY_REVISION" "ENV_JAVA"))
2190 "\\_>\\)")
2191 0 font-lock-builtin-face)
2192 ("\\(\\$\\|@\\|@@\\)\\(\\w\\|_\\)+"
2193 0 font-lock-variable-name-face)
2194 ;; Constants.
2195 ("\\(?:\\_<\\|::\\)\\([A-Z]+\\(\\w\\|_\\)*\\)"
2196 1 (unless (eq ?\( (char-after)) font-lock-type-face))
2197 ("\\(^\\s *\\|[\[\{\(,]\\s *\\|\\sw\\s +\\)\\(\\(\\sw\\|_\\)+\\):[^:]"
2198 (2 font-lock-constant-face))
2199 ;; Conversion methods on Kernel.
2200 (,(concat ruby-font-lock-keyword-beg-re
2201 (regexp-opt '("Array" "Complex" "Float" "Hash"
2202 "Integer" "Rational" "String") 'symbols))
2203 (1 font-lock-builtin-face))
2204 ;; Expression expansion.
2205 (ruby-match-expression-expansion
2206 2 font-lock-variable-name-face t)
2207 ;; Negation char.
2208 ("\\(?:^\\|[^[:alnum:]_]\\)\\(!+\\)[^=~]"
2209 1 font-lock-negation-char-face)
2210 ;; Character literals.
2211 ;; FIXME: Support longer escape sequences.
2212 ("\\_<\\?\\\\?\\S " 0 font-lock-string-face)
2213 ;; Regexp options.
2214 ("\\(?:\\s|\\|/\\)\\([imxo]+\\)"
2215 1 (when (save-excursion
2216 (let ((state (syntax-ppss (match-beginning 0))))
2217 (and (nth 3 state)
2218 (or (eq (char-after) ?/)
2219 (progn
2220 (goto-char (nth 8 state))
2221 (looking-at "%r"))))))
2222 font-lock-preprocessor-face))
2224 "Additional expressions to highlight in Ruby mode.")
2226 (defun ruby-match-expression-expansion (limit)
2227 (let* ((prop 'ruby-expansion-match-data)
2228 (pos (next-single-char-property-change (point) prop nil limit))
2229 value)
2230 (when (and pos (> pos (point)))
2231 (goto-char pos)
2232 (or (and (setq value (get-text-property pos prop))
2233 (progn (set-match-data value) t))
2234 (ruby-match-expression-expansion limit)))))
2236 ;;;###autoload
2237 (define-derived-mode ruby-mode prog-mode "Ruby"
2238 "Major mode for editing Ruby code.
2240 \\{ruby-mode-map}"
2241 (ruby-mode-variables)
2243 (setq-local imenu-create-index-function 'ruby-imenu-create-index)
2244 (setq-local add-log-current-defun-function 'ruby-add-log-current-method)
2245 (setq-local beginning-of-defun-function 'ruby-beginning-of-defun)
2246 (setq-local end-of-defun-function 'ruby-end-of-defun)
2248 (add-hook 'after-save-hook 'ruby-mode-set-encoding nil 'local)
2249 (add-hook 'electric-indent-functions 'ruby--electric-indent-p nil 'local)
2251 (setq-local font-lock-defaults '((ruby-font-lock-keywords) nil nil))
2252 (setq-local font-lock-keywords ruby-font-lock-keywords)
2253 (setq-local font-lock-syntax-table ruby-font-lock-syntax-table)
2255 (setq-local syntax-propertize-function #'ruby-syntax-propertize-function))
2257 ;;; Invoke ruby-mode when appropriate
2259 ;;;###autoload
2260 (add-to-list 'auto-mode-alist
2261 (cons (purecopy (concat "\\(?:\\."
2262 "rb\\|ru\\|rake\\|thor"
2263 "\\|jbuilder\\|rabl\\|gemspec\\|podspec"
2264 "\\|/"
2265 "\\(?:Gem\\|Rake\\|Cap\\|Thor"
2266 "\\|Puppet\\|Berks"
2267 "\\|Vagrant\\|Guard\\|Pod\\)file"
2268 "\\)\\'")) 'ruby-mode))
2270 ;;;###autoload
2271 (dolist (name (list "ruby" "rbx" "jruby" "ruby1.9" "ruby1.8"))
2272 (add-to-list 'interpreter-mode-alist (cons (purecopy name) 'ruby-mode)))
2274 (provide 'ruby-mode)
2276 ;;; ruby-mode.el ends here