1 ;;; perl-mode.el --- Perl code editing commands for GNU Emacs
3 ;; Copyright (C) 1990, 1994, 2003, 2005 Free Software Foundation, Inc.
5 ;; Author: William F. Mann
10 ;; Adapted from C code editing commands 'c-mode.el', Copyright 1987 by the
11 ;; Free Software Foundation, under terms of its General Public License.
13 ;; This file is part of GNU Emacs.
15 ;; GNU Emacs is free software; you can redistribute it and/or modify
16 ;; it under the terms of the GNU General Public License as published by
17 ;; the Free Software Foundation; either version 2, or (at your option)
20 ;; GNU Emacs is distributed in the hope that it will be useful,
21 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 ;; GNU General Public License for more details.
25 ;; You should have received a copy of the GNU General Public License
26 ;; along with GNU Emacs; see the file COPYING. If not, write to the
27 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
28 ;; Boston, MA 02111-1307, USA.
32 ;; To enter perl-mode automatically, add (autoload 'perl-mode "perl-mode")
33 ;; to your .emacs file and change the first line of your perl script to:
34 ;; #!/usr/bin/perl -- # -*-Perl-*-
35 ;; With arguments to perl:
36 ;; #!/usr/bin/perl -P- # -*-Perl-*-
37 ;; To handle files included with do 'filename.pl';, add something like
38 ;; (setq auto-mode-alist (append (list (cons "\\.pl\\'" 'perl-mode))
40 ;; to your .emacs file; otherwise the .pl suffix defaults to prolog-mode.
42 ;; This code is based on the 18.53 version c-mode.el, with extensive
43 ;; rewriting. Most of the features of c-mode survived intact.
45 ;; I added a new feature which adds functionality to TAB; it is controlled
46 ;; by the variable perl-tab-to-comment. With it enabled, TAB does the
47 ;; first thing it can from the following list: change the indentation;
48 ;; move past leading white space; delete an empty comment; reindent a
49 ;; comment; move to end of line; create an empty comment; tell you that
50 ;; the line ends in a quoted string, or has a # which should be a \#.
52 ;; If your machine is slow, you may want to remove some of the bindings
53 ;; to perl-electric-terminator. I changed the indenting defaults to be
54 ;; what Larry Wall uses in perl/lib, but left in all the options.
56 ;; I also tuned a few things: comments and labels starting in column
57 ;; zero are left there by perl-indent-exp; perl-beginning-of-function
58 ;; goes back to the first open brace/paren in column zero, the open brace
59 ;; in 'sub ... {', or the equal sign in 'format ... ='; perl-indent-exp
60 ;; (meta-^q) indents from the current line through the close of the next
61 ;; brace/paren, so you don't need to start exactly at a brace or paren.
63 ;; It may be good style to put a set of redundant braces around your
64 ;; main program. This will let you reindent it with meta-^q.
66 ;; Known problems (these are all caused by limitations in the Emacs Lisp
67 ;; parsing routine (parse-partial-sexp), which was not designed for such
68 ;; a rich language; writing a more suitable parser would be a big job):
69 ;; 2) The globbing syntax <pattern> is not recognized, so special
70 ;; characters in the pattern string must be backslashed.
71 ;; 3) The << quoting operators are not recognized; see below.
72 ;; 5) To make '$' work correctly, $' is not recognized as a variable.
73 ;; Use "$'" or $POSTMATCH instead.
75 ;; If you don't use font-lock, additional problems will appear:
76 ;; 1) Regular expression delimiters do not act as quotes, so special
77 ;; characters such as `'"#:;[](){} may need to be backslashed
78 ;; in regular expressions and in both parts of s/// and tr///.
79 ;; 4) The q and qq quoting operators are not recognized; see below.
80 ;; 5) To make variables such a $' and $#array work, perl-mode treats
81 ;; $ just like backslash, so '$' is not treated correctly.
82 ;; 6) Unfortunately, treating $ like \ makes ${var} be treated as an
83 ;; unmatched }. See below.
84 ;; 7) When ' (quote) is used as a package name separator, perl-mode
85 ;; doesn't understand, and thinks it is seeing a quoted string.
87 ;; Here are some ugly tricks to bypass some of these problems: the perl
88 ;; expression /`/ (that's a back-tick) usually evaluates harmlessly,
89 ;; but will trick perl-mode into starting a quoted string, which
90 ;; can be ended with another /`/. Assuming you have no embedded
91 ;; back-ticks, this can used to help solve problem 3:
93 ;; /`/; $ugly = q?"'$?; /`/;
95 ;; The same trick can be used for problem 6 as in:
96 ;; /{/; while (<${glob_me}>)
97 ;; but a simpler solution is to add a space between the $ and the {:
98 ;; while (<$ {glob_me}>)
100 ;; Problem 7 is even worse, but this 'fix' does work :-(
107 (eval-when-compile (require 'cl
))
110 "Major mode for editing Perl code."
114 (defvar perl-mode-abbrev-table nil
115 "Abbrev table in use in perl-mode buffers.")
116 (define-abbrev-table 'perl-mode-abbrev-table
())
118 (defvar perl-mode-map
119 (let ((map (make-sparse-keymap)))
120 (define-key map
"{" 'perl-electric-terminator
)
121 (define-key map
"}" 'perl-electric-terminator
)
122 (define-key map
";" 'perl-electric-terminator
)
123 (define-key map
":" 'perl-electric-terminator
)
124 (define-key map
"\e\C-a" 'perl-beginning-of-function
)
125 (define-key map
"\e\C-e" 'perl-end-of-function
)
126 (define-key map
"\e\C-h" 'perl-mark-function
)
127 (define-key map
"\e\C-q" 'perl-indent-exp
)
128 (define-key map
"\177" 'backward-delete-char-untabify
)
129 (define-key map
"\t" 'perl-indent-command
)
131 "Keymap used in Perl mode.")
133 (autoload 'c-macro-expand
"cmacexp"
134 "Display the result of expanding all C macros occurring in the region.
135 The expansion is entirely correct because it uses the C preprocessor."
138 (defvar perl-mode-syntax-table
139 (let ((st (make-syntax-table (standard-syntax-table))))
140 (modify-syntax-entry ?
\n ">" st
)
141 (modify-syntax-entry ?
# "<" st
)
142 ;; `$' is also a prefix char so I was tempted to say "/ p",
143 ;; but the `p' thingy basically overrides the `/' :-( --stef
144 (modify-syntax-entry ?$
"/" st
)
145 (modify-syntax-entry ?%
". p" st
)
146 (modify-syntax-entry ?
@ ". p" st
)
147 (modify-syntax-entry ?
& "." st
)
148 (modify-syntax-entry ?
\' "\"" st
)
149 (modify-syntax-entry ?
* "." st
)
150 (modify-syntax-entry ?
+ "." st
)
151 (modify-syntax-entry ?-
"." st
)
152 (modify-syntax-entry ?
/ "." st
)
153 (modify-syntax-entry ?
< "." st
)
154 (modify-syntax-entry ?
= "." st
)
155 (modify-syntax-entry ?
> "." st
)
156 (modify-syntax-entry ?
\\ "\\" st
)
157 (modify-syntax-entry ?
` "\"" st
)
158 (modify-syntax-entry ?|
"." st
)
160 "Syntax table in use in `perl-mode' buffers.")
162 (defvar perl-imenu-generic-expression
164 (nil "^sub\\s-+\\([-A-Za-z0-9+_:]+\\)" 1)
166 ("Variables" "^\\([$@%][-A-Za-z0-9+_:]+\\)\\s-*=" 1)
167 ("Packages" "^package\\s-+\\([-A-Za-z0-9+_:]+\\);" 1)
168 ("Doc sections" "^=head[0-9][ \t]+\\(.*\\)" 1))
169 "Imenu generic expression for Perl mode. See `imenu-generic-expression'.")
171 ;; Regexps updated with help from Tom Tromey <tromey@cambric.colorado.edu> and
172 ;; Jim Campbell <jec@murzim.ca.boeing.com>.
174 (defconst perl-font-lock-keywords-1
175 '(;; What is this for?
176 ;;("\\(--- .* ---\\|=== .* ===\\)" . font-lock-string-face)
178 ;; Fontify preprocessor statements as we do in `c-font-lock-keywords'.
179 ;; Ilya Zakharevich <ilya@math.ohio-state.edu> thinks this is a bad idea.
180 ;; ("^#[ \t]*include[ \t]+\\(<[^>\"\n]+>\\)" 1 font-lock-string-face)
181 ;; ("^#[ \t]*define[ \t]+\\(\\sw+\\)(" 1 font-lock-function-name-face)
183 ;; ("\\<\\(defined\\)\\>[ \t]*(?\\(\\sw+\\)?" nil nil
184 ;; (1 font-lock-constant-face) (2 font-lock-variable-name-face nil t)))
185 ;; ("^#[ \t]*\\(\\sw+\\)\\>[ \t]*\\(\\sw+\\)?"
186 ;; (1 font-lock-constant-face) (2 font-lock-variable-name-face nil t))
188 ;; Fontify function and package names in declarations.
189 ("\\<\\(package\\|sub\\)\\>[ \t]*\\(\\sw+\\)?"
190 (1 font-lock-keyword-face
) (2 font-lock-function-name-face nil t
))
191 ("\\<\\(import\\|no\\|require\\|use\\)\\>[ \t]*\\(\\sw+\\)?"
192 (1 font-lock-keyword-face
) (2 font-lock-constant-face nil t
)))
193 "Subdued level highlighting for Perl mode.")
195 (defconst perl-font-lock-keywords-2
196 (append perl-font-lock-keywords-1
199 ;; Fontify keywords, except those fontified otherwise.
201 (regexp-opt '("if" "until" "while" "elsif" "else" "unless"
202 "do" "dump" "for" "foreach" "exit" "die"
203 "BEGIN" "END" "return" "exec" "eval") t
)
206 ;; Fontify local and my keywords as types.
207 '("\\<\\(local\\|my\\)\\>" . font-lock-type-face
)
209 ;; Fontify function, variable and file name references.
210 '("&\\(\\sw+\\(::\\sw+\\)*\\)" 1 font-lock-function-name-face
)
211 ;; Additionally underline non-scalar variables. Maybe this is a bad idea.
212 ;;'("[$@%*][#{]?\\(\\sw+\\)" 1 font-lock-variable-name-face)
213 '("[$*]{?\\(\\sw+\\(::\\sw+\\)*\\)" 1 font-lock-variable-name-face
)
214 '("\\([@%]\\|\\$#\\)\\(\\sw+\\(::\\sw+\\)*\\)"
215 (2 (cons font-lock-variable-name-face
'(underline))))
216 '("<\\(\\sw+\\)>" 1 font-lock-constant-face
)
218 ;; Fontify keywords with/and labels as we do in `c++-font-lock-keywords'.
219 '("\\<\\(continue\\|goto\\|last\\|next\\|redo\\)\\>[ \t]*\\(\\sw+\\)?"
220 (1 font-lock-keyword-face
) (2 font-lock-constant-face nil t
))
221 '("^[ \t]*\\(\\sw+\\)[ \t]*:[^:]" 1 font-lock-constant-face
)))
222 "Gaudy level highlighting for Perl mode.")
224 (defvar perl-font-lock-keywords perl-font-lock-keywords-1
225 "Default expressions to highlight in Perl mode.")
227 (defvar perl-quote-like-pairs
228 '((?\
( . ?\
)) (?\
[ . ?\
]) (?\
{ . ?\
}) (?\
< . ?\
>)))
230 ;; FIXME: handle here-docs and regexps.
231 ;; <<EOF <<"EOF" <<'EOF' (no space)
240 ;; qr /.../ = precompiled regexp =~=~ m/.../
249 (defvar perl-font-lock-syntactic-keywords
250 ;; Turn POD into b-style comments
251 '(("^\\(=\\)\\sw" (1 "< b"))
252 ("^=cut[ \t]*\\(\n\\)" (1 "> b"))
253 ;; Catch ${ so that ${var} doesn't screw up indentation.
254 ;; This also catches $' to handle 'foo$', although it should really
255 ;; check that it occurs inside a '..' string.
256 ("\\(\\$\\)[{']" (1 ". p"))
257 ;; Handle funny names like $DB'stop.
258 ("\\$ ?{?^?[_a-zA-Z][_a-zA-Z0-9]*\\('\\)[_a-zA-Z]" (1 "_"))
260 ("^[ \t]*format.*=[ \t]*\\(\n\\)" (1 '(7)))
261 ;; Funny things in sub arg specifications like `sub myfunc ($$)'
262 ("\\<sub\\s-+\\S-+\\s-*(\\([^)]+\\))" 1 '(1))
263 ;; regexp and funny quotes
264 ("[?:.,;=!~({[][ \t\n]*\\(/\\)" (1 '(7)))
265 ("[?:.,;=!~({[ \t\n]\\([msy]\\|q[qxrw]?\\|tr\\)\\>\\s-*\\([^])}> \n\t]\\)"
267 ;; /foo/m $a->m $#m $m @m %m
268 ;; \s (appears often in regexps).
270 (2 (if (assoc (char-after (match-beginning 2))
271 perl-quote-like-pairs
)
273 ;; TODO: here-documents ("<<\\(\\sw\\|['\"]\\)")
276 (defvar perl-empty-syntax-table
277 (let ((st (copy-syntax-table)))
278 ;; Make all chars be of punctuation syntax.
279 (dotimes (i 256) (aset st i
'(1)))
280 (modify-syntax-entry ?
\\ "\\" st
)
282 "Syntax table used internally for processing quote-like operators.")
284 (defun perl-quote-syntax-table (char)
285 (let ((close (cdr (assq char perl-quote-like-pairs
)))
286 (st (copy-syntax-table perl-empty-syntax-table
)))
288 (modify-syntax-entry char
"\"" st
)
289 (modify-syntax-entry char
"(" st
)
290 (modify-syntax-entry close
")" st
))
293 (defun perl-font-lock-syntactic-face-function (state)
294 (let ((char (nth 3 state
)))
297 ;; Comment or docstring.
298 (if (nth 7 state
) font-lock-doc-face font-lock-comment-face
))
299 ((and (char-valid-p char
) (eq (char-syntax (nth 3 state
)) ?
\"))
301 font-lock-string-face
)
302 ((eq (nth 3 state
) ?
\n)
303 ;; A `format' command.
305 (when (and (re-search-forward "^\\s *\\.\\s *$" nil t
)
307 (put-text-property (point) (1+ (point)) 'syntax-table
'(7)))
308 font-lock-string-face
))
310 ;; This is regexp like quote thingy.
311 (setq char
(char-after (nth 8 state
)))
313 (let ((twoargs (save-excursion
314 (goto-char (nth 8 state
))
315 (skip-syntax-backward " ")
316 (skip-syntax-backward "w")
317 (member (buffer-substring
318 (point) (progn (forward-word 1) (point)))
320 (close (cdr (assq char perl-quote-like-pairs
)))
322 (st (perl-quote-syntax-table char
)))
324 ;; The closing char is the same as the opening char.
325 (with-syntax-table st
326 (parse-partial-sexp (point) (point-max)
327 nil nil state
'syntax-table
)
329 (parse-partial-sexp (point) (point-max)
330 nil nil state
'syntax-table
)))
331 ;; The open/close chars are matched like () [] {} and <>.
332 (let ((parse-sexp-lookup-properties nil
))
335 (with-syntax-table st
336 (goto-char (nth 8 state
)) (forward-sexp 1))
339 ;; Skip whitespace and make sure that font-lock will
340 ;; refontify the second part in the proper context.
342 (point) (progn (forward-comment (point-max)) (point))
343 'font-lock-multiline t
)
348 (perl-quote-syntax-table (char-after))
350 (put-text-property pos
(line-end-position)
351 'jit-lock-defer-multiline t
)
352 (looking-at "\\s-*\\sw*e"))
353 (put-text-property (point) (1+ (point))
355 (if (assoc (char-after)
356 perl-quote-like-pairs
)
358 ;; The arg(s) is not terminated, so it extends until EOB.
359 (scan-error (goto-char (point-max))))))
360 ;; Point is now right after the arg(s).
361 ;; Erase any syntactic marks within the quoted text.
362 (put-text-property pos
(1- (point)) 'syntax-table nil
)
363 (when (eq (char-before (1- (point))) ?$
)
364 (put-text-property (- (point) 2) (1- (point))
366 (put-text-property (1- (point)) (point)
367 'syntax-table
(if close
'(15) '(7)))
368 font-lock-string-face
))))))
369 ;; (if (or twoargs (not (looking-at "\\s-*\\sw*e")))
370 ;; font-lock-string-face
371 ;; (font-lock-fontify-syntactically-region
372 ;; ;; FIXME: `end' is accessed via dyn-scoping.
373 ;; pos (min end (1- (point))) nil '(nil))
377 (defcustom perl-indent-level
4
378 "*Indentation of Perl statements with respect to containing block."
380 (defcustom perl-continued-statement-offset
4
381 "*Extra indent for lines not starting new statements."
383 (defcustom perl-continued-brace-offset -
4
384 "*Extra indent for substatements that start with open-braces.
385 This is in addition to `perl-continued-statement-offset'."
387 (defcustom perl-brace-offset
0
388 "*Extra indentation for braces, compared with other text in same context."
390 (defcustom perl-brace-imaginary-offset
0
391 "*Imagined indentation of an open brace that actually follows a statement."
393 (defcustom perl-label-offset -
2
394 "*Offset of Perl label lines relative to usual indentation."
396 (defcustom perl-indent-continued-arguments nil
397 "*If non-nil offset of argument lines relative to usual indentation.
398 If nil, continued arguments are aligned with the first argument."
399 :type
'(choice integer
(const nil
)))
401 (defcustom perl-tab-always-indent tab-always-indent
402 "Non-nil means TAB in Perl mode always indents the current line.
403 Otherwise it inserts a tab character if you type it past the first
404 nonwhite character on the line."
407 ;; I changed the default to nil for consistency with general Emacs
408 ;; conventions -- rms.
409 (defcustom perl-tab-to-comment nil
410 "*Non-nil means TAB moves to eol or makes a comment in some cases.
411 For lines which don't need indenting, TAB either indents an
412 existing comment, moves to end-of-line, or if at end-of-line already,
413 create a new comment."
416 (defcustom perl-nochange
";?#\\|\f\\|\\s(\\|\\(\\w\\|\\s_\\)+:[^:]"
417 "*Lines starting with this regular expression are not auto-indented."
422 (defvar perl-outline-regexp
423 (concat (mapconcat 'cadr perl-imenu-generic-expression
"\\|")
426 (defun perl-outline-level ()
428 ((looking-at "package\\s-") 0)
429 ((looking-at "sub\\s-") 1)
430 ((looking-at "=head[0-9]") (- (char-before (match-end 0)) ?
0))
431 ((looking-at "=cut") 1)
434 (defvar perl-mode-hook nil
435 "Normal hook to run when entering Perl mode.")
439 "Major mode for editing Perl code.
440 Expression and list commands understand all Perl brackets.
441 Tab indents for Perl code.
442 Comments are delimited with # ... \\n.
443 Paragraphs are separated by blank lines only.
444 Delete converts tabs to spaces as it moves back.
446 Variables controlling indentation style:
447 `perl-tab-always-indent'
448 Non-nil means TAB in Perl mode should always indent the current line,
449 regardless of where in the line point is when the TAB command is used.
450 `perl-tab-to-comment'
451 Non-nil means that for lines which don't need indenting, TAB will
452 either delete an empty comment, indent an existing comment, move
453 to end-of-line, or if at end-of-line already, create a new comment.
455 Lines starting with this regular expression are not auto-indented.
457 Indentation of Perl statements within surrounding block.
458 The surrounding block's indentation is the indentation
459 of the line on which the open-brace appears.
460 `perl-continued-statement-offset'
461 Extra indentation given to a substatement, such as the
462 then-clause of an if or body of a while.
463 `perl-continued-brace-offset'
464 Extra indentation given to a brace that starts a substatement.
465 This is in addition to `perl-continued-statement-offset'.
467 Extra indentation for line if it starts with an open brace.
468 `perl-brace-imaginary-offset'
469 An open brace following other text is treated as if it were
470 this far to the right of the start of its line.
472 Extra indentation for line that is a label.
473 `perl-indent-continued-arguments'
474 Offset of argument lines relative to usual indentation.
476 Various indentation styles: K&R BSD BLK GNU LW
477 perl-indent-level 5 8 0 2 4
478 perl-continued-statement-offset 5 8 4 2 4
479 perl-continued-brace-offset 0 0 0 0 -4
480 perl-brace-offset -5 -8 0 0 0
481 perl-brace-imaginary-offset 0 0 4 0 0
482 perl-label-offset -5 -8 -2 -2 -2
484 Turning on Perl mode runs the normal hook `perl-mode-hook'."
486 (kill-all-local-variables)
487 (use-local-map perl-mode-map
)
488 (setq major-mode
'perl-mode
)
489 (setq mode-name
"Perl")
490 (setq local-abbrev-table perl-mode-abbrev-table
)
491 (set-syntax-table perl-mode-syntax-table
)
492 (make-local-variable 'paragraph-start
)
493 (setq paragraph-start
(concat "$\\|" page-delimiter
))
494 (make-local-variable 'paragraph-separate
)
495 (setq paragraph-separate paragraph-start
)
496 (make-local-variable 'paragraph-ignore-fill-prefix
)
497 (setq paragraph-ignore-fill-prefix t
)
498 (make-local-variable 'indent-line-function
)
499 (setq indent-line-function
'perl-indent-line
)
500 (make-local-variable 'require-final-newline
)
501 (setq require-final-newline mode-require-final-newline
)
502 (make-local-variable 'comment-start
)
503 (setq comment-start
"# ")
504 (make-local-variable 'comment-end
)
505 (setq comment-end
"")
506 (make-local-variable 'comment-start-skip
)
507 (setq comment-start-skip
"\\(^\\|\\s-\\);?#+ *")
508 (make-local-variable 'comment-indent-function
)
509 (setq comment-indent-function
'perl-comment-indent
)
510 (make-local-variable 'parse-sexp-ignore-comments
)
511 (setq parse-sexp-ignore-comments t
)
512 ;; Tell font-lock.el how to handle Perl.
513 (setq font-lock-defaults
'((perl-font-lock-keywords
514 perl-font-lock-keywords-1
515 perl-font-lock-keywords-2
)
516 nil nil
((?\_ .
"w")) nil
517 (font-lock-syntactic-keywords
518 . perl-font-lock-syntactic-keywords
)
519 (font-lock-syntactic-face-function
520 . perl-font-lock-syntactic-face-function
)
521 (parse-sexp-lookup-properties . t
)))
522 ;; Tell imenu how to handle Perl.
523 (set (make-local-variable 'imenu-generic-expression
)
524 perl-imenu-generic-expression
)
525 (setq imenu-case-fold-search nil
)
526 ;; Setup outline-minor-mode.
527 (set (make-local-variable 'outline-regexp
) perl-outline-regexp
)
528 (set (make-local-variable 'outline-level
) 'perl-outline-level
)
529 (run-mode-hooks 'perl-mode-hook
))
531 ;; This is used by indent-for-comment
532 ;; to decide how much to indent a comment in Perl code
533 ;; based on its context.
534 (defun perl-comment-indent ()
535 (if (and (bolp) (not (eolp)))
536 0 ;Existing comment at bol stays there.
539 (defalias 'electric-perl-terminator
'perl-electric-terminator
)
540 (defun perl-electric-terminator (arg)
541 "Insert character and adjust indentation.
542 If at end-of-line, and not in a comment or a quote, correct the's indentation."
544 (let ((insertpos (point)))
545 (and (not arg
) ; decide whether to indent
549 (and (not ; eliminate comments quickly
550 (and comment-start-skip
551 (re-search-forward comment-start-skip insertpos t
)) )
552 (or (/= last-command-char ?
:)
553 ;; Colon is special only after a label ....
554 (looking-at "\\s-*\\(\\w\\|\\s_\\)+$"))
555 (let ((pps (parse-partial-sexp
556 (perl-beginning-of-function) insertpos
)))
557 (not (or (nth 3 pps
) (nth 4 pps
) (nth 5 pps
))))))
558 (progn ; must insert, indent, delete
559 (insert-char last-command-char
1)
562 (self-insert-command (prefix-numeric-value arg
)))
564 ;; not used anymore, but may be useful someday:
565 ;;(defun perl-inside-parens-p ()
566 ;; (condition-case ()
569 ;; (narrow-to-region (point)
570 ;; (perl-beginning-of-function))
571 ;; (goto-char (point-max))
572 ;; (= (char-after (or (scan-lists (point) -1 1) (point-min))) ?\()))
575 (defun perl-indent-command (&optional arg
)
576 "Indent current line as Perl code, or optionally, insert a tab character.
578 With an argument, indent the current line, regardless of other options.
580 If `perl-tab-always-indent' is nil and point is not in the indentation
581 area at the beginning of the line, simply insert a tab.
583 Otherwise, indent the current line. If point was within the indentation
584 area it is moved to the end of the indentation area. If the line was
585 already indented properly and point was not within the indentation area,
586 and if `perl-tab-to-comment' is non-nil (the default), then do the first
587 possible action from the following list:
589 1) delete an empty comment
590 2) move forward to start of comment, indenting if necessary
591 3) move forward to end of line
592 4) create an empty comment
593 5) move backward to start of comment, indenting if necessary."
595 (if arg
; If arg, just indent this line
596 (perl-indent-line "\f")
597 (if (and (not perl-tab-always-indent
)
598 (> (current-column) (current-indentation)))
600 (let* ((oldpnt (point))
601 (lsexp (progn (beginning-of-line) (point)))
602 (bof (perl-beginning-of-function))
605 (perl-indent-line "\f\\|;?#" bof
))))
606 (and perl-tab-to-comment
607 (= oldpnt
(point)) ; done if point moved
608 (if (listp delta
) ; if line starts in a quoted string
609 (setq lsexp
(or (nth 2 delta
) bof
))
610 (= delta
0)) ; done if indenting occurred
611 (let ((eol (progn (end-of-line) (point)))
613 (if (= (char-after bof
) ?
=)
615 (message "In a format statement"))
616 (setq state
(parse-partial-sexp lsexp eol
))
618 (if (= oldpnt eol
) ; already at eol in a string
619 (message "In a string which starts with a %c."
621 (if (not (nth 4 state
))
622 (if (= oldpnt eol
) ; no comment, create one?
623 (indent-for-comment))
625 (if (and comment-start-skip
626 (re-search-forward comment-start-skip eol
'move
))
628 (progn ; kill existing comment
629 (goto-char (match-beginning 0))
630 (skip-chars-backward " \t")
631 (kill-region (point) eol
))
632 (if (or (< oldpnt
(point)) (= oldpnt eol
))
633 (indent-for-comment) ; indent existing comment
637 (message "Use backslash to quote # characters.")
640 (defun perl-indent-line (&optional nochange parse-start
)
641 "Indent current line as Perl code.
642 Return the amount the indentation
643 changed by, or (parse-state) if line starts in a quoted string."
644 (let ((case-fold-search nil
)
645 (pos (- (point-max) (point)))
646 (bof (or parse-start
(save-excursion (perl-beginning-of-function))))
647 beg indent shift-amt
)
651 (cond ((eq (char-after bof
) ?
=) 0)
652 ((listp (setq indent
(perl-calculate-indent bof
))) indent
)
653 ((looking-at (or nochange perl-nochange
)) 0)
655 (skip-chars-forward " \t\f")
656 (setq indent
(perl-indent-new-calculate nil indent bof
))
657 (- indent
(current-column)))))
658 (skip-chars-forward " \t\f")
659 (if (and (numberp shift-amt
) (/= 0 shift-amt
))
660 (progn (delete-region beg
(point))
662 ;; If initial point was within line's indentation,
663 ;; position after the indentation. Else stay at same point in text.
664 (if (> (- (point-max) pos
) (point))
665 (goto-char (- (point-max) pos
)))
668 (defun perl-continuation-line-p (limit)
669 "Move to end of previous line and return non-nil if continued."
670 ;; Statement level. Is it a continuation or a new statement?
671 ;; Find previous non-comment character.
672 (perl-backward-to-noncomment)
673 ;; Back up over label lines, since they don't
674 ;; affect whether our line is a continuation.
675 (while (or (eq (preceding-char) ?\
,)
676 (and (eq (preceding-char) ?
:)
677 (memq (char-syntax (char-after (- (point) 2)))
679 (if (eq (preceding-char) ?\
,)
680 (perl-backward-to-start-of-continued-exp limit
)
682 (perl-backward-to-noncomment))
683 ;; Now we get the answer.
684 (not (memq (preceding-char) '(?\
; ?\} ?\{))))
686 (defun perl-hanging-paren-p ()
687 "Non-nil if we are right after a hanging parenthesis-like char."
688 (and (looking-at "[ \t]*$")
690 (skip-syntax-backward " (") (not (bolp)))))
692 (defun perl-indent-new-calculate (&optional virtual default parse-start
)
694 (and virtual
(save-excursion (skip-chars-backward " \t") (bolp))
696 (and (looking-at "\\(\\w\\|\\s_\\)+:[^:]")
697 (max 1 (+ (or default
(perl-calculate-indent parse-start
))
699 (and (= (char-syntax (following-char)) ?\
))
703 (perl-indent-new-calculate 'virtual nil parse-start
)))
704 (and (and (= (following-char) ?
{)
705 (save-excursion (forward-char) (perl-hanging-paren-p)))
706 (+ (or default
(perl-calculate-indent parse-start
))
708 (or default
(perl-calculate-indent parse-start
))))
710 (defun perl-calculate-indent (&optional parse-start
)
711 "Return appropriate indentation for current line as Perl code.
712 In usual case returns an integer: the column to indent to.
713 Returns (parse-state) if line starts inside a string.
714 Optional argument PARSE-START should be the position of `beginning-of-defun'."
716 (let ((indent-point (point))
717 (case-fold-search nil
)
719 state containing-sexp
)
720 (if parse-start
;used to avoid searching
721 (goto-char parse-start
)
722 (perl-beginning-of-function))
723 ;; We might be now looking at a local function that has nothing to
724 ;; do with us because `indent-point' is past it. In this case
725 ;; look further back up for another `perl-beginning-of-function'.
726 (while (and (looking-at "{")
729 (looking-at "\\s-+sub\\>"))
730 (> indent-point
(save-excursion (forward-sexp 1) (point))))
731 (perl-beginning-of-function))
732 (while (< (point) indent-point
) ;repeat until right sexp
733 (setq state
(parse-partial-sexp (point) indent-point
0))
734 ;; state = (depth_in_parens innermost_containing_list
735 ;; last_complete_sexp string_terminator_or_nil inside_commentp
736 ;; following_quotep minimum_paren-depth_this_scan)
737 ;; Parsing stops if depth in parentheses becomes equal to third arg.
738 (setq containing-sexp
(nth 1 state
)))
739 (cond ((nth 3 state
) state
) ; In a quoted string?
740 ((null containing-sexp
) ; Line is at top level.
741 (skip-chars-forward " \t\f")
742 (if (= (following-char) ?
{)
743 0 ; move to beginning of line if it starts a function body
744 ;; indent a little if this is a continuation line
745 (perl-backward-to-noncomment)
747 (memq (preceding-char) '(?\
; ?\})))
748 0 perl-continued-statement-offset
)))
749 ((/= (char-after containing-sexp
) ?
{)
750 ;; line is expression, not statement:
751 ;; indent to just after the surrounding open.
752 (goto-char (1+ containing-sexp
))
753 (if (perl-hanging-paren-p)
754 ;; We're indenting an arg of a call like:
755 ;; $a = foobarlongnamefun (
760 (skip-syntax-backward "(")
762 (while (save-excursion
763 (skip-syntax-backward " ") (not (bolp)))
766 (+ (current-column) perl-indent-level
))
767 (if perl-indent-continued-arguments
768 (+ perl-indent-continued-arguments
(current-indentation))
769 (skip-chars-forward " \t")
772 ;; Statement level. Is it a continuation or a new statement?
773 (if (perl-continuation-line-p containing-sexp
)
774 ;; This line is continuation of preceding line's statement;
775 ;; indent perl-continued-statement-offset more than the
776 ;; previous line of the statement.
778 (perl-backward-to-start-of-continued-exp containing-sexp
)
779 (+ (if (save-excursion
780 (perl-continuation-line-p containing-sexp
))
781 ;; If the continued line is itself a continuation
782 ;; line, then align, otherwise add an offset.
783 0 perl-continued-statement-offset
)
785 (if (save-excursion (goto-char indent-point
)
786 (looking-at "[ \t]*{"))
787 perl-continued-brace-offset
0)))
788 ;; This line starts a new statement.
789 ;; Position at last unclosed open.
790 (goto-char containing-sexp
)
792 ;; Is line first statement after an open-brace?
793 ;; If no, find that first statement and indent like it.
796 ;; Skip over comments and labels following openbrace.
798 (skip-chars-forward " \t\f\n")
799 (cond ((looking-at ";?#")
801 ((looking-at "\\(\\w\\|\\s_\\)+:[^:]")
804 (setq colon-line-end
(point)))
805 (search-forward ":")))))
806 ;; The first following code counts
807 ;; if it is before the line we want to indent.
808 (and (< (point) indent-point
)
809 (if (> colon-line-end
(point))
810 (- (current-indentation) perl-label-offset
)
812 ;; If no previous statement,
813 ;; indent it relative to line brace is on.
814 ;; For open paren in column zero, don't let statement
815 ;; start there too. If perl-indent-level is zero,
816 ;; use perl-brace-offset + perl-continued-statement-offset
817 ;; For open-braces not the first thing in a line,
818 ;; add in perl-brace-imaginary-offset.
819 (+ (if (and (bolp) (zerop perl-indent-level
))
820 (+ perl-brace-offset perl-continued-statement-offset
)
822 ;; Move back over whitespace before the openbrace.
823 ;; If openbrace is not first nonwhite thing on the line,
824 ;; add the perl-brace-imaginary-offset.
825 (progn (skip-chars-backward " \t")
826 (if (bolp) 0 perl-brace-imaginary-offset
))
827 ;; If the openbrace is preceded by a parenthesized exp,
828 ;; move to the beginning of that;
829 ;; possibly a different line
831 (if (eq (preceding-char) ?\
))
833 ;; Get initial indentation of the line we are on.
834 (current-indentation))))))))))
836 (defun perl-backward-to-noncomment ()
837 "Move point backward to after the first non-white-space, skipping comments."
839 (forward-comment (- (point-max))))
841 (defun perl-backward-to-start-of-continued-exp (lim)
842 (if (= (preceding-char) ?\
))
846 (goto-char (1+ lim
)))
847 (skip-chars-forward " \t\f"))
849 ;; note: this may be slower than the c-mode version, but I can understand it.
850 (defalias 'indent-perl-exp
'perl-indent-exp
)
851 (defun perl-indent-exp ()
852 "Indent each line of the Perl grouping following point."
854 (let* ((case-fold-search nil
)
855 (oldpnt (point-marker))
856 (bof-mark (save-excursion
858 (perl-beginning-of-function)
860 eol last-mark lsexp-mark delta
)
861 (if (= (char-after (marker-position bof-mark
)) ?
=)
862 (message "Can't indent a format statement")
863 (message "Indenting Perl expression...")
864 (save-excursion (end-of-line) (setq eol
(point)))
865 (save-excursion ; locate matching close paren
866 (while (and (not (eobp)) (<= (point) eol
))
867 (parse-partial-sexp (point) (point-max) 0))
868 (setq last-mark
(point-marker)))
869 (setq lsexp-mark bof-mark
)
871 (while (< (point) (marker-position last-mark
))
872 (setq delta
(perl-indent-line nil
(marker-position bof-mark
)))
873 (if (numberp delta
) ; unquoted start-of-line?
876 (delete-horizontal-space))
877 (setq lsexp-mark
(point-marker))))
880 (if (nth 4 (parse-partial-sexp (marker-position lsexp-mark
) eol
))
881 (progn ; line ends in a comment
883 (if (or (not (looking-at "\\s-*;?#"))
886 (= (- (current-indentation) delta
) comment-column
)))
887 (if (and comment-start-skip
888 (re-search-forward comment-start-skip eol t
))
889 (indent-for-comment))))) ; indent existing comment
891 (goto-char (marker-position oldpnt
))
892 (message "Indenting Perl expression...done"))))
894 (defun perl-beginning-of-function (&optional arg
)
895 "Move backward to next beginning-of-function, or as far as possible.
896 With argument, repeat that many times; negative args move forward.
897 Returns new value of point in all cases."
899 (or arg
(setq arg
1))
900 (if (< arg
0) (forward-char 1))
902 (re-search-backward "^\\s(\\|^\\s-*sub\\b[^{]+{\\|^\\s-*format\\b[^=]*=\\|^\\."
904 (goto-char (1- (match-end 0))))
907 ;; note: this routine is adapted directly from emacs lisp.el, end-of-defun;
908 ;; no bugs have been removed :-)
909 (defun perl-end-of-function (&optional arg
)
910 "Move forward to next end-of-function.
911 The end of a function is found by moving forward from the beginning of one.
912 With argument, repeat that many times; negative args move backward."
914 (or arg
(setq arg
1))
916 (while (and (> arg
0) (< (point) (point-max)))
922 (perl-beginning-of-function 1)
925 (or (bobp) (forward-char -
1))
926 (perl-beginning-of-function -
1))
929 (skip-chars-forward " \t")
930 (if (looking-at "[#\n]")
936 (perl-beginning-of-function 1)
940 (if (progn (perl-beginning-of-function 2) (not (bobp)))
943 (skip-chars-forward " \t")
944 (if (looking-at "[#\n]")
946 (goto-char (point-min)))))
947 (setq arg
(1+ arg
)))))
949 (defalias 'mark-perl-function
'perl-mark-function
)
950 (defun perl-mark-function ()
951 "Put mark at end of Perl function, point at beginning."
954 (perl-end-of-function)
956 (perl-beginning-of-function)
957 (backward-paragraph))
961 ;; arch-tag: 8c7ff68d-15f3-46a2-ade2-b7c41f176826
962 ;;; perl-mode.el ends here