(perl-font-lock-syntactic-keywords): Recognize `sub ($$)'.
[bpt/emacs.git] / lisp / progmodes / perl-mode.el
1 ;;; perl-mode.el --- Perl code editing commands for GNU Emacs
2
3 ;; Copyright (C) 1990, 1994, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
4 ;; Free Software Foundation, Inc.
5
6 ;; Author: William F. Mann
7 ;; Maintainer: FSF
8 ;; Adapted-By: ESR
9 ;; Keywords: languages
10
11 ;; Adapted from C code editing commands 'c-mode.el', Copyright 1987 by the
12 ;; Free Software Foundation, under terms of its General Public License.
13
14 ;; This file is part of GNU Emacs.
15
16 ;; GNU Emacs is free software; you can redistribute it and/or modify
17 ;; it under the terms of the GNU General Public License as published by
18 ;; the Free Software Foundation; either version 3, or (at your option)
19 ;; any later version.
20
21 ;; GNU Emacs is distributed in the hope that it will be useful,
22 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
23 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 ;; GNU General Public License for more details.
25
26 ;; You should have received a copy of the GNU General Public License
27 ;; along with GNU Emacs; see the file COPYING. If not, write to the
28 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
29 ;; Boston, MA 02110-1301, USA.
30
31 ;;; Commentary:
32
33 ;; To enter perl-mode automatically, add (autoload 'perl-mode "perl-mode")
34 ;; to your .emacs file and change the first line of your perl script to:
35 ;; #!/usr/bin/perl -- # -*-Perl-*-
36 ;; With arguments to perl:
37 ;; #!/usr/bin/perl -P- # -*-Perl-*-
38 ;; To handle files included with do 'filename.pl';, add something like
39 ;; (setq auto-mode-alist (append (list (cons "\\.pl\\'" 'perl-mode))
40 ;; auto-mode-alist))
41 ;; to your .emacs file; otherwise the .pl suffix defaults to prolog-mode.
42
43 ;; This code is based on the 18.53 version c-mode.el, with extensive
44 ;; rewriting. Most of the features of c-mode survived intact.
45
46 ;; I added a new feature which adds functionality to TAB; it is controlled
47 ;; by the variable perl-tab-to-comment. With it enabled, TAB does the
48 ;; first thing it can from the following list: change the indentation;
49 ;; move past leading white space; delete an empty comment; reindent a
50 ;; comment; move to end of line; create an empty comment; tell you that
51 ;; the line ends in a quoted string, or has a # which should be a \#.
52
53 ;; If your machine is slow, you may want to remove some of the bindings
54 ;; to perl-electric-terminator. I changed the indenting defaults to be
55 ;; what Larry Wall uses in perl/lib, but left in all the options.
56
57 ;; I also tuned a few things: comments and labels starting in column
58 ;; zero are left there by perl-indent-exp; perl-beginning-of-function
59 ;; goes back to the first open brace/paren in column zero, the open brace
60 ;; in 'sub ... {', or the equal sign in 'format ... ='; perl-indent-exp
61 ;; (meta-^q) indents from the current line through the close of the next
62 ;; brace/paren, so you don't need to start exactly at a brace or paren.
63
64 ;; It may be good style to put a set of redundant braces around your
65 ;; main program. This will let you reindent it with meta-^q.
66
67 ;; Known problems (these are all caused by limitations in the Emacs Lisp
68 ;; parsing routine (parse-partial-sexp), which was not designed for such
69 ;; a rich language; writing a more suitable parser would be a big job):
70 ;; 2) The globbing syntax <pattern> is not recognized, so special
71 ;; characters in the pattern string must be backslashed.
72 ;; 3) The << quoting operators are not recognized; see below.
73 ;; 5) To make '$' work correctly, $' is not recognized as a variable.
74 ;; Use "$'" or $POSTMATCH instead.
75 ;;
76 ;; If you don't use font-lock, additional problems will appear:
77 ;; 1) Regular expression delimiters do not act as quotes, so special
78 ;; characters such as `'"#:;[](){} may need to be backslashed
79 ;; in regular expressions and in both parts of s/// and tr///.
80 ;; 4) The q and qq quoting operators are not recognized; see below.
81 ;; 5) To make variables such a $' and $#array work, perl-mode treats
82 ;; $ just like backslash, so '$' is not treated correctly.
83 ;; 6) Unfortunately, treating $ like \ makes ${var} be treated as an
84 ;; unmatched }. See below.
85 ;; 7) When ' (quote) is used as a package name separator, perl-mode
86 ;; doesn't understand, and thinks it is seeing a quoted string.
87
88 ;; Here are some ugly tricks to bypass some of these problems: the perl
89 ;; expression /`/ (that's a back-tick) usually evaluates harmlessly,
90 ;; but will trick perl-mode into starting a quoted string, which
91 ;; can be ended with another /`/. Assuming you have no embedded
92 ;; back-ticks, this can used to help solve problem 3:
93 ;;
94 ;; /`/; $ugly = q?"'$?; /`/;
95 ;;
96 ;; The same trick can be used for problem 6 as in:
97 ;; /{/; while (<${glob_me}>)
98 ;; but a simpler solution is to add a space between the $ and the {:
99 ;; while (<$ {glob_me}>)
100 ;;
101 ;; Problem 7 is even worse, but this 'fix' does work :-(
102 ;; $DB'stop#'
103 ;; [$DB'line#'
104 ;; ] =~ s/;9$//;
105
106 ;;; Code:
107
108 (eval-when-compile (require 'cl))
109
110 (defvar font-lock-comment-face)
111 (defvar font-lock-doc-face)
112 (defvar font-lock-string-face)
113
114 (defgroup perl nil
115 "Major mode for editing Perl code."
116 :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces)
117 :prefix "perl-"
118 :group 'languages)
119
120 (defvar perl-mode-abbrev-table nil
121 "Abbrev table in use in perl-mode buffers.")
122 (define-abbrev-table 'perl-mode-abbrev-table ())
123
124 (defvar perl-mode-map
125 (let ((map (make-sparse-keymap)))
126 (define-key map "{" 'perl-electric-terminator)
127 (define-key map "}" 'perl-electric-terminator)
128 (define-key map ";" 'perl-electric-terminator)
129 (define-key map ":" 'perl-electric-terminator)
130 (define-key map "\e\C-a" 'perl-beginning-of-function)
131 (define-key map "\e\C-e" 'perl-end-of-function)
132 (define-key map "\e\C-h" 'perl-mark-function)
133 (define-key map "\e\C-q" 'perl-indent-exp)
134 (define-key map "\177" 'backward-delete-char-untabify)
135 (define-key map "\t" 'perl-indent-command)
136 map)
137 "Keymap used in Perl mode.")
138
139 (autoload 'c-macro-expand "cmacexp"
140 "Display the result of expanding all C macros occurring in the region.
141 The expansion is entirely correct because it uses the C preprocessor."
142 t)
143
144 (defvar perl-mode-syntax-table
145 (let ((st (make-syntax-table (standard-syntax-table))))
146 (modify-syntax-entry ?\n ">" st)
147 (modify-syntax-entry ?# "<" st)
148 ;; `$' is also a prefix char so I was tempted to say "/ p",
149 ;; but the `p' thingy basically overrides the `/' :-( --stef
150 (modify-syntax-entry ?$ "/" st)
151 (modify-syntax-entry ?% ". p" st)
152 (modify-syntax-entry ?@ ". p" 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)
159 (modify-syntax-entry ?< "." st)
160 (modify-syntax-entry ?= "." st)
161 (modify-syntax-entry ?> "." st)
162 (modify-syntax-entry ?\\ "\\" st)
163 (modify-syntax-entry ?` "\"" st)
164 (modify-syntax-entry ?| "." st)
165 st)
166 "Syntax table in use in `perl-mode' buffers.")
167
168 (defvar perl-imenu-generic-expression
169 '(;; Functions
170 (nil "^sub\\s-+\\([-A-Za-z0-9+_:]+\\)" 1)
171 ;;Variables
172 ("Variables" "^\\([$@%][-A-Za-z0-9+_:]+\\)\\s-*=" 1)
173 ("Packages" "^package\\s-+\\([-A-Za-z0-9+_:]+\\);" 1)
174 ("Doc sections" "^=head[0-9][ \t]+\\(.*\\)" 1))
175 "Imenu generic expression for Perl mode. See `imenu-generic-expression'.")
176
177 ;; Regexps updated with help from Tom Tromey <tromey@cambric.colorado.edu> and
178 ;; Jim Campbell <jec@murzim.ca.boeing.com>.
179
180 (defconst perl-font-lock-keywords-1
181 '(;; What is this for?
182 ;;("\\(--- .* ---\\|=== .* ===\\)" . font-lock-string-face)
183 ;;
184 ;; Fontify preprocessor statements as we do in `c-font-lock-keywords'.
185 ;; Ilya Zakharevich <ilya@math.ohio-state.edu> thinks this is a bad idea.
186 ;; ("^#[ \t]*include[ \t]+\\(<[^>\"\n]+>\\)" 1 font-lock-string-face)
187 ;; ("^#[ \t]*define[ \t]+\\(\\sw+\\)(" 1 font-lock-function-name-face)
188 ;; ("^#[ \t]*if\\>"
189 ;; ("\\<\\(defined\\)\\>[ \t]*(?\\(\\sw+\\)?" nil nil
190 ;; (1 font-lock-constant-face) (2 font-lock-variable-name-face nil t)))
191 ;; ("^#[ \t]*\\(\\sw+\\)\\>[ \t]*\\(\\sw+\\)?"
192 ;; (1 font-lock-constant-face) (2 font-lock-variable-name-face nil t))
193 ;;
194 ;; Fontify function and package names in declarations.
195 ("\\<\\(package\\|sub\\)\\>[ \t]*\\(\\sw+\\)?"
196 (1 font-lock-keyword-face) (2 font-lock-function-name-face nil t))
197 ("\\<\\(import\\|no\\|require\\|use\\)\\>[ \t]*\\(\\sw+\\)?"
198 (1 font-lock-keyword-face) (2 font-lock-constant-face nil t)))
199 "Subdued level highlighting for Perl mode.")
200
201 (defconst perl-font-lock-keywords-2
202 (append perl-font-lock-keywords-1
203 (list
204 ;;
205 ;; Fontify keywords, except those fontified otherwise.
206 (concat "\\<"
207 (regexp-opt '("if" "until" "while" "elsif" "else" "unless"
208 "do" "dump" "for" "foreach" "exit" "die"
209 "BEGIN" "END" "return" "exec" "eval") t)
210 "\\>")
211 ;;
212 ;; Fontify local and my keywords as types.
213 '("\\<\\(local\\|my\\)\\>" . font-lock-type-face)
214 ;;
215 ;; Fontify function, variable and file name references.
216 '("&\\(\\sw+\\(::\\sw+\\)*\\)" 1 font-lock-function-name-face)
217 ;; Additionally underline non-scalar variables. Maybe this is a bad idea.
218 ;;'("[$@%*][#{]?\\(\\sw+\\)" 1 font-lock-variable-name-face)
219 '("[$*]{?\\(\\sw+\\(::\\sw+\\)*\\)" 1 font-lock-variable-name-face)
220 '("\\([@%]\\|\\$#\\)\\(\\sw+\\(::\\sw+\\)*\\)"
221 (2 (cons font-lock-variable-name-face '(underline))))
222 '("<\\(\\sw+\\)>" 1 font-lock-constant-face)
223 ;;
224 ;; Fontify keywords with/and labels as we do in `c++-font-lock-keywords'.
225 '("\\<\\(continue\\|goto\\|last\\|next\\|redo\\)\\>[ \t]*\\(\\sw+\\)?"
226 (1 font-lock-keyword-face) (2 font-lock-constant-face nil t))
227 '("^[ \t]*\\(\\sw+\\)[ \t]*:[^:]" 1 font-lock-constant-face)))
228 "Gaudy level highlighting for Perl mode.")
229
230 (defvar perl-font-lock-keywords perl-font-lock-keywords-1
231 "Default expressions to highlight in Perl mode.")
232
233 (defvar perl-quote-like-pairs
234 '((?\( . ?\)) (?\[ . ?\]) (?\{ . ?\}) (?\< . ?\>)))
235
236 ;; FIXME: handle here-docs and regexps.
237 ;; <<EOF <<"EOF" <<'EOF' (no space)
238 ;; see `man perlop'
239 ;; ?...?
240 ;; /.../
241 ;; m [...]
242 ;; m /.../
243 ;; q /.../ = '...'
244 ;; qq /.../ = "..."
245 ;; qx /.../ = `...`
246 ;; qr /.../ = precompiled regexp =~=~ m/.../
247 ;; qw /.../
248 ;; s /.../.../
249 ;; s <...> /.../
250 ;; s '...'...'
251 ;; tr /.../.../
252 ;; y /.../.../
253 ;;
254 ;; <file*glob>
255 (defvar perl-font-lock-syntactic-keywords
256 ;; TODO: here-documents ("<<\\(\\sw\\|['\"]\\)")
257 '(;; Turn POD into b-style comments
258 ("^\\(=\\)\\sw" (1 "< b"))
259 ("^=cut[ \t]*\\(\n\\)" (1 "> b"))
260 ;; Catch ${ so that ${var} doesn't screw up indentation.
261 ;; This also catches $' to handle 'foo$', although it should really
262 ;; check that it occurs inside a '..' string.
263 ("\\(\\$\\)[{']" (1 ". p"))
264 ;; Handle funny names like $DB'stop.
265 ("\\$ ?{?^?[_a-zA-Z][_a-zA-Z0-9]*\\('\\)[_a-zA-Z]" (1 "_"))
266 ;; format statements
267 ("^[ \t]*format.*=[ \t]*\\(\n\\)" (1 '(7)))
268 ;; Funny things in `sub' arg-specs like `sub myfun ($)' or `sub ($)'.
269 ;; Be careful not to match "sub { (...) ... }".
270 ("\\<sub\\(?:[[:space:]]+[^{}[:punct:][:space:]]+\\)?[[:space:]]*(\\([^)]+\\))"
271 1 '(1))
272 ;; Regexp and funny quotes.
273 ("\\(?:[?:.,;=!~({[]\\|\\(^\\)\\)[ \t\n]*\\(/\\)"
274 (2 (if (and (match-end 1)
275 (save-excursion
276 (goto-char (match-end 1))
277 (skip-chars-backward " \t\n")
278 (not (memq (char-before)
279 '(?? ?: ?. ?, ?\; ?= ?! ?~ ?\( ?\[)))))
280 nil ;; A division sign instead of a regexp-match.
281 '(7))))
282 ("\\(^\\|[?:.,;=!~({[ \t]\\)\\([msy]\\|q[qxrw]?\\|tr\\)\\>\\s-*\\([^])}> \n\t]\\)"
283 ;; Nasty cases:
284 ;; /foo/m $a->m $#m $m @m %m
285 ;; \s (appears often in regexps).
286 ;; -s file
287 (3 (if (assoc (char-after (match-beginning 3))
288 perl-quote-like-pairs)
289 '(15) '(7))))
290 ;; Find and mark the end of funny quotes and format statements.
291 (perl-font-lock-special-syntactic-constructs)
292 ))
293
294 (defvar perl-empty-syntax-table
295 (let ((st (copy-syntax-table)))
296 ;; Make all chars be of punctuation syntax.
297 (dotimes (i 256) (aset st i '(1)))
298 (modify-syntax-entry ?\\ "\\" st)
299 st)
300 "Syntax table used internally for processing quote-like operators.")
301
302 (defun perl-quote-syntax-table (char)
303 (let ((close (cdr (assq char perl-quote-like-pairs)))
304 (st (copy-syntax-table perl-empty-syntax-table)))
305 (if (not close)
306 (modify-syntax-entry char "\"" st)
307 (modify-syntax-entry char "(" st)
308 (modify-syntax-entry close ")" st))
309 st))
310
311 (defun perl-font-lock-special-syntactic-constructs (limit)
312 ;; We used to do all this in a font-lock-syntactic-face-function, which
313 ;; did not work correctly because sometimes some parts of the buffer are
314 ;; treated with font-lock-syntactic-keywords but not with
315 ;; font-lock-syntactic-face-function (mostly because of
316 ;; font-lock-syntactically-fontified). That meant that some syntax-table
317 ;; properties were missing. So now we do the parse-partial-sexp loop
318 ;; ourselves directly from font-lock-syntactic-keywords, so we're sure
319 ;; it's done when necessary.
320 (let ((state (syntax-ppss))
321 char)
322 (while (< (point) limit)
323 (cond
324 ((or (null (setq char (nth 3 state)))
325 (and (characterp char) (eq (char-syntax (nth 3 state)) ?\")))
326 ;; Normal text, or comment, or docstring, or normal string.
327 nil)
328 ((eq (nth 3 state) ?\n)
329 ;; A `format' command.
330 (save-excursion
331 (when (and (re-search-forward "^\\s *\\.\\s *$" nil t)
332 (not (eobp)))
333 (put-text-property (point) (1+ (point)) 'syntax-table '(7)))))
334 (t
335 ;; This is regexp like quote thingy.
336 (setq char (char-after (nth 8 state)))
337 (save-excursion
338 (let ((twoargs (save-excursion
339 (goto-char (nth 8 state))
340 (skip-syntax-backward " ")
341 (skip-syntax-backward "w")
342 (member (buffer-substring
343 (point) (progn (forward-word 1) (point)))
344 '("tr" "s" "y"))))
345 (close (cdr (assq char perl-quote-like-pairs)))
346 (pos (point))
347 (st (perl-quote-syntax-table char)))
348 (if (not close)
349 ;; The closing char is the same as the opening char.
350 (with-syntax-table st
351 (parse-partial-sexp (point) (point-max)
352 nil nil state 'syntax-table)
353 (when twoargs
354 (parse-partial-sexp (point) (point-max)
355 nil nil state 'syntax-table)))
356 ;; The open/close chars are matched like () [] {} and <>.
357 (let ((parse-sexp-lookup-properties nil))
358 (condition-case err
359 (progn
360 (with-syntax-table st
361 (goto-char (nth 8 state)) (forward-sexp 1))
362 (when twoargs
363 (save-excursion
364 ;; Skip whitespace and make sure that font-lock will
365 ;; refontify the second part in the proper context.
366 (put-text-property
367 (point) (progn (forward-comment (point-max)) (point))
368 'font-lock-multiline t)
369 ;;
370 (unless
371 (save-excursion
372 (with-syntax-table
373 (perl-quote-syntax-table (char-after))
374 (forward-sexp 1))
375 (put-text-property pos (line-end-position)
376 'jit-lock-defer-multiline t)
377 (looking-at "\\s-*\\sw*e"))
378 (put-text-property (point) (1+ (point))
379 'syntax-table
380 (if (assoc (char-after)
381 perl-quote-like-pairs)
382 '(15) '(7)))))))
383 ;; The arg(s) is not terminated, so it extends until EOB.
384 (scan-error (goto-char (point-max))))))
385 ;; Point is now right after the arg(s).
386 ;; Erase any syntactic marks within the quoted text.
387 (put-text-property pos (1- (point)) 'syntax-table nil)
388 (when (eq (char-before (1- (point))) ?$)
389 (put-text-property (- (point) 2) (1- (point))
390 'syntax-table '(1)))
391 (put-text-property (1- (point)) (point)
392 'syntax-table (if close '(15) '(7)))))))
393
394 (setq state (parse-partial-sexp (point) limit nil nil state
395 'syntax-table))))
396 ;; Tell font-lock that this needs not further processing.
397 nil)
398
399
400 (defcustom perl-indent-level 4
401 "*Indentation of Perl statements with respect to containing block."
402 :type 'integer
403 :group 'perl)
404
405 ;; Is is not unusual to put both things like perl-indent-level and
406 ;; cperl-indent-level in the local variable section of a file. If only
407 ;; one of perl-mode and cperl-mode is in use, a warning will be issued
408 ;; about the variable. Autoload these here, so that no warning is
409 ;; issued when using either perl-mode or cperl-mode.
410 ;;;###autoload(put 'perl-indent-level 'safe-local-variable 'integerp)
411 ;;;###autoload(put 'perl-continued-statement-offset 'safe-local-variable 'integerp)
412 ;;;###autoload(put 'perl-continued-brace-offset 'safe-local-variable 'integerp)
413 ;;;###autoload(put 'perl-brace-offset 'safe-local-variable 'integerp)
414 ;;;###autoload(put 'perl-brace-imaginary-offset 'safe-local-variable 'integerp)
415 ;;;###autoload(put 'perl-label-offset 'safe-local-variable 'integerp)
416
417 (defcustom perl-continued-statement-offset 4
418 "*Extra indent for lines not starting new statements."
419 :type 'integer
420 :group 'perl)
421 (defcustom perl-continued-brace-offset -4
422 "*Extra indent for substatements that start with open-braces.
423 This is in addition to `perl-continued-statement-offset'."
424 :type 'integer
425 :group 'perl)
426 (defcustom perl-brace-offset 0
427 "*Extra indentation for braces, compared with other text in same context."
428 :type 'integer
429 :group 'perl)
430 (defcustom perl-brace-imaginary-offset 0
431 "*Imagined indentation of an open brace that actually follows a statement."
432 :type 'integer
433 :group 'perl)
434 (defcustom perl-label-offset -2
435 "*Offset of Perl label lines relative to usual indentation."
436 :type 'integer
437 :group 'perl)
438 (defcustom perl-indent-continued-arguments nil
439 "*If non-nil offset of argument lines relative to usual indentation.
440 If nil, continued arguments are aligned with the first argument."
441 :type '(choice integer (const nil))
442 :group 'perl)
443
444 (defcustom perl-tab-always-indent tab-always-indent
445 "Non-nil means TAB in Perl mode always indents the current line.
446 Otherwise it inserts a tab character if you type it past the first
447 nonwhite character on the line."
448 :type 'boolean
449 :group 'perl)
450
451 ;; I changed the default to nil for consistency with general Emacs
452 ;; conventions -- rms.
453 (defcustom perl-tab-to-comment nil
454 "*Non-nil means TAB moves to eol or makes a comment in some cases.
455 For lines which don't need indenting, TAB either indents an
456 existing comment, moves to end-of-line, or if at end-of-line already,
457 create a new comment."
458 :type 'boolean
459 :group 'perl)
460
461 (defcustom perl-nochange ";?#\\|\f\\|\\s(\\|\\(\\w\\|\\s_\\)+:[^:]"
462 "*Lines starting with this regular expression are not auto-indented."
463 :type 'regexp
464 :group 'perl)
465
466 ;; Outline support
467
468 (defvar perl-outline-regexp
469 (concat (mapconcat 'cadr perl-imenu-generic-expression "\\|")
470 "\\|^=cut\\>"))
471
472 (defun perl-outline-level ()
473 (cond
474 ((looking-at "package\\s-") 0)
475 ((looking-at "sub\\s-") 1)
476 ((looking-at "=head[0-9]") (- (char-before (match-end 0)) ?0))
477 ((looking-at "=cut") 1)
478 (t 3)))
479 \f
480 (defvar perl-mode-hook nil
481 "Normal hook to run when entering Perl mode.")
482
483 ;;;###autoload
484 (defun perl-mode ()
485 "Major mode for editing Perl code.
486 Expression and list commands understand all Perl brackets.
487 Tab indents for Perl code.
488 Comments are delimited with # ... \\n.
489 Paragraphs are separated by blank lines only.
490 Delete converts tabs to spaces as it moves back.
491 \\{perl-mode-map}
492 Variables controlling indentation style:
493 `perl-tab-always-indent'
494 Non-nil means TAB in Perl mode should always indent the current line,
495 regardless of where in the line point is when the TAB command is used.
496 `perl-tab-to-comment'
497 Non-nil means that for lines which don't need indenting, TAB will
498 either delete an empty comment, indent an existing comment, move
499 to end-of-line, or if at end-of-line already, create a new comment.
500 `perl-nochange'
501 Lines starting with this regular expression are not auto-indented.
502 `perl-indent-level'
503 Indentation of Perl statements within surrounding block.
504 The surrounding block's indentation is the indentation
505 of the line on which the open-brace appears.
506 `perl-continued-statement-offset'
507 Extra indentation given to a substatement, such as the
508 then-clause of an if or body of a while.
509 `perl-continued-brace-offset'
510 Extra indentation given to a brace that starts a substatement.
511 This is in addition to `perl-continued-statement-offset'.
512 `perl-brace-offset'
513 Extra indentation for line if it starts with an open brace.
514 `perl-brace-imaginary-offset'
515 An open brace following other text is treated as if it were
516 this far to the right of the start of its line.
517 `perl-label-offset'
518 Extra indentation for line that is a label.
519 `perl-indent-continued-arguments'
520 Offset of argument lines relative to usual indentation.
521
522 Various indentation styles: K&R BSD BLK GNU LW
523 perl-indent-level 5 8 0 2 4
524 perl-continued-statement-offset 5 8 4 2 4
525 perl-continued-brace-offset 0 0 0 0 -4
526 perl-brace-offset -5 -8 0 0 0
527 perl-brace-imaginary-offset 0 0 4 0 0
528 perl-label-offset -5 -8 -2 -2 -2
529
530 Turning on Perl mode runs the normal hook `perl-mode-hook'."
531 (interactive)
532 (kill-all-local-variables)
533 (use-local-map perl-mode-map)
534 (setq major-mode 'perl-mode)
535 (setq mode-name "Perl")
536 (setq local-abbrev-table perl-mode-abbrev-table)
537 (set-syntax-table perl-mode-syntax-table)
538 (make-local-variable 'paragraph-start)
539 (setq paragraph-start (concat "$\\|" page-delimiter))
540 (make-local-variable 'paragraph-separate)
541 (setq paragraph-separate paragraph-start)
542 (make-local-variable 'paragraph-ignore-fill-prefix)
543 (setq paragraph-ignore-fill-prefix t)
544 (make-local-variable 'indent-line-function)
545 (setq indent-line-function 'perl-indent-line)
546 (make-local-variable 'require-final-newline)
547 (setq require-final-newline mode-require-final-newline)
548 (make-local-variable 'comment-start)
549 (setq comment-start "# ")
550 (make-local-variable 'comment-end)
551 (setq comment-end "")
552 (make-local-variable 'comment-start-skip)
553 (setq comment-start-skip "\\(^\\|\\s-\\);?#+ *")
554 (make-local-variable 'comment-indent-function)
555 (setq comment-indent-function 'perl-comment-indent)
556 (make-local-variable 'parse-sexp-ignore-comments)
557 (setq parse-sexp-ignore-comments t)
558 ;; Tell font-lock.el how to handle Perl.
559 (setq font-lock-defaults '((perl-font-lock-keywords
560 perl-font-lock-keywords-1
561 perl-font-lock-keywords-2)
562 nil nil ((?\_ . "w")) nil
563 (font-lock-syntactic-keywords
564 . perl-font-lock-syntactic-keywords)
565 (parse-sexp-lookup-properties . t)))
566 ;; Tell imenu how to handle Perl.
567 (set (make-local-variable 'imenu-generic-expression)
568 perl-imenu-generic-expression)
569 (setq imenu-case-fold-search nil)
570 ;; Setup outline-minor-mode.
571 (set (make-local-variable 'outline-regexp) perl-outline-regexp)
572 (set (make-local-variable 'outline-level) 'perl-outline-level)
573 (run-mode-hooks 'perl-mode-hook))
574 \f
575 ;; This is used by indent-for-comment
576 ;; to decide how much to indent a comment in Perl code
577 ;; based on its context.
578 (defun perl-comment-indent ()
579 (if (and (bolp) (not (eolp)))
580 0 ;Existing comment at bol stays there.
581 comment-column))
582
583 (defalias 'electric-perl-terminator 'perl-electric-terminator)
584 (defun perl-electric-terminator (arg)
585 "Insert character and adjust indentation.
586 If at end-of-line, and not in a comment or a quote, correct the's indentation."
587 (interactive "P")
588 (let ((insertpos (point)))
589 (and (not arg) ; decide whether to indent
590 (eolp)
591 (save-excursion
592 (beginning-of-line)
593 (and (not ; eliminate comments quickly
594 (and comment-start-skip
595 (re-search-forward comment-start-skip insertpos t)) )
596 (or (/= last-command-char ?:)
597 ;; Colon is special only after a label ....
598 (looking-at "\\s-*\\(\\w\\|\\s_\\)+$"))
599 (let ((pps (parse-partial-sexp
600 (perl-beginning-of-function) insertpos)))
601 (not (or (nth 3 pps) (nth 4 pps) (nth 5 pps))))))
602 (progn ; must insert, indent, delete
603 (insert-char last-command-char 1)
604 (perl-indent-line)
605 (delete-char -1))))
606 (self-insert-command (prefix-numeric-value arg)))
607
608 ;; not used anymore, but may be useful someday:
609 ;;(defun perl-inside-parens-p ()
610 ;; (condition-case ()
611 ;; (save-excursion
612 ;; (save-restriction
613 ;; (narrow-to-region (point)
614 ;; (perl-beginning-of-function))
615 ;; (goto-char (point-max))
616 ;; (= (char-after (or (scan-lists (point) -1 1) (point-min))) ?\()))
617 ;; (error nil)))
618 \f
619 (defun perl-indent-command (&optional arg)
620 "Indent current line as Perl code, or optionally, insert a tab character.
621
622 With an argument, indent the current line, regardless of other options.
623
624 If `perl-tab-always-indent' is nil and point is not in the indentation
625 area at the beginning of the line, simply insert a tab.
626
627 Otherwise, indent the current line. If point was within the indentation
628 area it is moved to the end of the indentation area. If the line was
629 already indented properly and point was not within the indentation area,
630 and if `perl-tab-to-comment' is non-nil (the default), then do the first
631 possible action from the following list:
632
633 1) delete an empty comment
634 2) move forward to start of comment, indenting if necessary
635 3) move forward to end of line
636 4) create an empty comment
637 5) move backward to start of comment, indenting if necessary."
638 (interactive "P")
639 (if arg ; If arg, just indent this line
640 (perl-indent-line "\f")
641 (if (and (not perl-tab-always-indent)
642 (> (current-column) (current-indentation)))
643 (insert-tab)
644 (let* ((oldpnt (point))
645 (lsexp (progn (beginning-of-line) (point)))
646 (bof (perl-beginning-of-function))
647 (delta (progn
648 (goto-char oldpnt)
649 (perl-indent-line "\f\\|;?#" bof))))
650 (and perl-tab-to-comment
651 (= oldpnt (point)) ; done if point moved
652 (if (listp delta) ; if line starts in a quoted string
653 (setq lsexp (or (nth 2 delta) bof))
654 (= delta 0)) ; done if indenting occurred
655 (let ((eol (progn (end-of-line) (point)))
656 state)
657 (if (= (char-after bof) ?=)
658 (if (= oldpnt eol)
659 (message "In a format statement"))
660 (setq state (parse-partial-sexp lsexp eol))
661 (if (nth 3 state)
662 (if (= oldpnt eol) ; already at eol in a string
663 (message "In a string which starts with a %c."
664 (nth 3 state)))
665 (if (not (nth 4 state))
666 (if (= oldpnt eol) ; no comment, create one?
667 (indent-for-comment))
668 (beginning-of-line)
669 (if (and comment-start-skip
670 (re-search-forward comment-start-skip eol 'move))
671 (if (eolp)
672 (progn ; delete existing comment
673 (goto-char (match-beginning 0))
674 (skip-chars-backward " \t")
675 (delete-region (point) eol))
676 (if (or (< oldpnt (point)) (= oldpnt eol))
677 (indent-for-comment) ; indent existing comment
678 (end-of-line)))
679 (if (/= oldpnt eol)
680 (end-of-line)
681 (message "Use backslash to quote # characters.")
682 (ding t))))))))))))
683
684 (defun perl-indent-line (&optional nochange parse-start)
685 "Indent current line as Perl code.
686 Return the amount the indentation
687 changed by, or (parse-state) if line starts in a quoted string."
688 (let ((case-fold-search nil)
689 (pos (- (point-max) (point)))
690 (bof (or parse-start (save-excursion (perl-beginning-of-function))))
691 beg indent shift-amt)
692 (beginning-of-line)
693 (setq beg (point))
694 (setq shift-amt
695 (cond ((eq (char-after bof) ?=) 0)
696 ((listp (setq indent (perl-calculate-indent bof))) indent)
697 ((looking-at (or nochange perl-nochange)) 0)
698 (t
699 (skip-chars-forward " \t\f")
700 (setq indent (perl-indent-new-calculate nil indent bof))
701 (- indent (current-column)))))
702 (skip-chars-forward " \t\f")
703 (if (and (numberp shift-amt) (/= 0 shift-amt))
704 (progn (delete-region beg (point))
705 (indent-to indent)))
706 ;; If initial point was within line's indentation,
707 ;; position after the indentation. Else stay at same point in text.
708 (if (> (- (point-max) pos) (point))
709 (goto-char (- (point-max) pos)))
710 shift-amt))
711
712 (defun perl-continuation-line-p (limit)
713 "Move to end of previous line and return non-nil if continued."
714 ;; Statement level. Is it a continuation or a new statement?
715 ;; Find previous non-comment character.
716 (perl-backward-to-noncomment)
717 ;; Back up over label lines, since they don't
718 ;; affect whether our line is a continuation.
719 (while (or (eq (preceding-char) ?\,)
720 (and (eq (preceding-char) ?:)
721 (memq (char-syntax (char-after (- (point) 2)))
722 '(?w ?_))))
723 (if (eq (preceding-char) ?\,)
724 (perl-backward-to-start-of-continued-exp limit)
725 (beginning-of-line))
726 (perl-backward-to-noncomment))
727 ;; Now we get the answer.
728 (not (memq (preceding-char) '(?\; ?\} ?\{))))
729
730 (defun perl-hanging-paren-p ()
731 "Non-nil if we are right after a hanging parenthesis-like char."
732 (and (looking-at "[ \t]*$")
733 (save-excursion
734 (skip-syntax-backward " (") (not (bolp)))))
735
736 (defun perl-indent-new-calculate (&optional virtual default parse-start)
737 (or
738 (and virtual (save-excursion (skip-chars-backward " \t") (bolp))
739 (current-column))
740 (and (looking-at "\\(\\w\\|\\s_\\)+:[^:]")
741 (max 1 (+ (or default (perl-calculate-indent parse-start))
742 perl-label-offset)))
743 (and (= (char-syntax (following-char)) ?\))
744 (save-excursion
745 (forward-char 1)
746 (forward-sexp -1)
747 (perl-indent-new-calculate
748 ;; Recalculate the parsing-start, since we may have jumped
749 ;; dangerously close (typically in the case of nested functions).
750 'virtual nil (save-excursion (perl-beginning-of-function)))))
751 (and (and (= (following-char) ?{)
752 (save-excursion (forward-char) (perl-hanging-paren-p)))
753 (+ (or default (perl-calculate-indent parse-start))
754 perl-brace-offset))
755 (or default (perl-calculate-indent parse-start))))
756
757 (defun perl-calculate-indent (&optional parse-start)
758 "Return appropriate indentation for current line as Perl code.
759 In usual case returns an integer: the column to indent to.
760 Returns (parse-state) if line starts inside a string.
761 Optional argument PARSE-START should be the position of `beginning-of-defun'."
762 (save-excursion
763 (let ((indent-point (point))
764 (case-fold-search nil)
765 (colon-line-end 0)
766 state containing-sexp)
767 (if parse-start ;used to avoid searching
768 (goto-char parse-start)
769 (perl-beginning-of-function))
770 ;; We might be now looking at a local function that has nothing to
771 ;; do with us because `indent-point' is past it. In this case
772 ;; look further back up for another `perl-beginning-of-function'.
773 (while (and (looking-at "{")
774 (save-excursion
775 (beginning-of-line)
776 (looking-at "\\s-+sub\\>"))
777 (> indent-point (save-excursion (forward-sexp 1) (point))))
778 (perl-beginning-of-function))
779 (while (< (point) indent-point) ;repeat until right sexp
780 (setq state (parse-partial-sexp (point) indent-point 0))
781 ;; state = (depth_in_parens innermost_containing_list
782 ;; last_complete_sexp string_terminator_or_nil inside_commentp
783 ;; following_quotep minimum_paren-depth_this_scan)
784 ;; Parsing stops if depth in parentheses becomes equal to third arg.
785 (setq containing-sexp (nth 1 state)))
786 (cond ((nth 3 state) state) ; In a quoted string?
787 ((null containing-sexp) ; Line is at top level.
788 (skip-chars-forward " \t\f")
789 (if (= (following-char) ?{)
790 0 ; move to beginning of line if it starts a function body
791 ;; indent a little if this is a continuation line
792 (perl-backward-to-noncomment)
793 (if (or (bobp)
794 (memq (preceding-char) '(?\; ?\})))
795 0 perl-continued-statement-offset)))
796 ((/= (char-after containing-sexp) ?{)
797 ;; line is expression, not statement:
798 ;; indent to just after the surrounding open.
799 (goto-char (1+ containing-sexp))
800 (if (perl-hanging-paren-p)
801 ;; We're indenting an arg of a call like:
802 ;; $a = foobarlongnamefun (
803 ;; arg1
804 ;; arg2
805 ;; );
806 (progn
807 (skip-syntax-backward "(")
808 (condition-case err
809 (while (save-excursion
810 (skip-syntax-backward " ") (not (bolp)))
811 (forward-sexp -1))
812 (scan-error nil))
813 (+ (current-column) perl-indent-level))
814 (if perl-indent-continued-arguments
815 (+ perl-indent-continued-arguments (current-indentation))
816 (skip-chars-forward " \t")
817 (current-column))))
818 (t
819 ;; Statement level. Is it a continuation or a new statement?
820 (if (perl-continuation-line-p containing-sexp)
821 ;; This line is continuation of preceding line's statement;
822 ;; indent perl-continued-statement-offset more than the
823 ;; previous line of the statement.
824 (progn
825 (perl-backward-to-start-of-continued-exp containing-sexp)
826 (+ (if (save-excursion
827 (perl-continuation-line-p containing-sexp))
828 ;; If the continued line is itself a continuation
829 ;; line, then align, otherwise add an offset.
830 0 perl-continued-statement-offset)
831 (current-column)
832 (if (save-excursion (goto-char indent-point)
833 (looking-at "[ \t]*{"))
834 perl-continued-brace-offset 0)))
835 ;; This line starts a new statement.
836 ;; Position at last unclosed open.
837 (goto-char containing-sexp)
838 (or
839 ;; Is line first statement after an open-brace?
840 ;; If no, find that first statement and indent like it.
841 (save-excursion
842 (forward-char 1)
843 ;; Skip over comments and labels following openbrace.
844 (while (progn
845 (skip-chars-forward " \t\f\n")
846 (cond ((looking-at ";?#")
847 (forward-line 1) t)
848 ((looking-at "\\(\\w\\|\\s_\\)+:[^:]")
849 (save-excursion
850 (end-of-line)
851 (setq colon-line-end (point)))
852 (search-forward ":")))))
853 ;; The first following code counts
854 ;; if it is before the line we want to indent.
855 (and (< (point) indent-point)
856 (if (> colon-line-end (point))
857 (- (current-indentation) perl-label-offset)
858 (current-column))))
859 ;; If no previous statement,
860 ;; indent it relative to line brace is on.
861 ;; For open paren in column zero, don't let statement
862 ;; start there too. If perl-indent-level is zero,
863 ;; use perl-brace-offset + perl-continued-statement-offset
864 ;; For open-braces not the first thing in a line,
865 ;; add in perl-brace-imaginary-offset.
866 (+ (if (and (bolp) (zerop perl-indent-level))
867 (+ perl-brace-offset perl-continued-statement-offset)
868 perl-indent-level)
869 ;; Move back over whitespace before the openbrace.
870 ;; If openbrace is not first nonwhite thing on the line,
871 ;; add the perl-brace-imaginary-offset.
872 (progn (skip-chars-backward " \t")
873 (if (bolp) 0 perl-brace-imaginary-offset))
874 ;; If the openbrace is preceded by a parenthesized exp,
875 ;; move to the beginning of that;
876 ;; possibly a different line
877 (progn
878 (if (eq (preceding-char) ?\))
879 (forward-sexp -1))
880 ;; Get initial indentation of the line we are on.
881 (current-indentation))))))))))
882
883 (defun perl-backward-to-noncomment ()
884 "Move point backward to after the first non-white-space, skipping comments."
885 (interactive)
886 (forward-comment (- (point-max))))
887
888 (defun perl-backward-to-start-of-continued-exp (lim)
889 (if (= (preceding-char) ?\))
890 (forward-sexp -1))
891 (beginning-of-line)
892 (if (<= (point) lim)
893 (goto-char (1+ lim)))
894 (skip-chars-forward " \t\f"))
895 \f
896 ;; note: this may be slower than the c-mode version, but I can understand it.
897 (defalias 'indent-perl-exp 'perl-indent-exp)
898 (defun perl-indent-exp ()
899 "Indent each line of the Perl grouping following point."
900 (interactive)
901 (let* ((case-fold-search nil)
902 (oldpnt (point-marker))
903 (bof-mark (save-excursion
904 (end-of-line 2)
905 (perl-beginning-of-function)
906 (point-marker)))
907 eol last-mark lsexp-mark delta)
908 (if (= (char-after (marker-position bof-mark)) ?=)
909 (message "Can't indent a format statement")
910 (message "Indenting Perl expression...")
911 (save-excursion (end-of-line) (setq eol (point)))
912 (save-excursion ; locate matching close paren
913 (while (and (not (eobp)) (<= (point) eol))
914 (parse-partial-sexp (point) (point-max) 0))
915 (setq last-mark (point-marker)))
916 (setq lsexp-mark bof-mark)
917 (beginning-of-line)
918 (while (< (point) (marker-position last-mark))
919 (setq delta (perl-indent-line nil (marker-position bof-mark)))
920 (if (numberp delta) ; unquoted start-of-line?
921 (progn
922 (if (eolp)
923 (delete-horizontal-space))
924 (setq lsexp-mark (point-marker))))
925 (end-of-line)
926 (setq eol (point))
927 (if (nth 4 (parse-partial-sexp (marker-position lsexp-mark) eol))
928 (progn ; line ends in a comment
929 (beginning-of-line)
930 (if (or (not (looking-at "\\s-*;?#"))
931 (listp delta)
932 (and (/= 0 delta)
933 (= (- (current-indentation) delta) comment-column)))
934 (if (and comment-start-skip
935 (re-search-forward comment-start-skip eol t))
936 (indent-for-comment))))) ; indent existing comment
937 (forward-line 1))
938 (goto-char (marker-position oldpnt))
939 (message "Indenting Perl expression...done"))))
940 \f
941 (defun perl-beginning-of-function (&optional arg)
942 "Move backward to next beginning-of-function, or as far as possible.
943 With argument, repeat that many times; negative args move forward.
944 Returns new value of point in all cases."
945 (interactive "p")
946 (or arg (setq arg 1))
947 (if (< arg 0) (forward-char 1))
948 (and (/= arg 0)
949 (re-search-backward
950 "^\\s(\\|^\\s-*sub\\b[ \t\n]*\\_<[^{]+{\\|^\\s-*format\\b[^=]*=\\|^\\."
951 nil 'move arg)
952 (goto-char (1- (match-end 0))))
953 (point))
954
955 ;; note: this routine is adapted directly from emacs lisp.el, end-of-defun;
956 ;; no bugs have been removed :-)
957 (defun perl-end-of-function (&optional arg)
958 "Move forward to next end-of-function.
959 The end of a function is found by moving forward from the beginning of one.
960 With argument, repeat that many times; negative args move backward."
961 (interactive "p")
962 (or arg (setq arg 1))
963 (let ((first t))
964 (while (and (> arg 0) (< (point) (point-max)))
965 (let ((pos (point)))
966 (while (progn
967 (if (and first
968 (progn
969 (forward-char 1)
970 (perl-beginning-of-function 1)
971 (not (bobp))))
972 nil
973 (or (bobp) (forward-char -1))
974 (perl-beginning-of-function -1))
975 (setq first nil)
976 (forward-list 1)
977 (skip-chars-forward " \t")
978 (if (looking-at "[#\n]")
979 (forward-line 1))
980 (<= (point) pos))))
981 (setq arg (1- arg)))
982 (while (< arg 0)
983 (let ((pos (point)))
984 (perl-beginning-of-function 1)
985 (forward-sexp 1)
986 (forward-line 1)
987 (if (>= (point) pos)
988 (if (progn (perl-beginning-of-function 2) (not (bobp)))
989 (progn
990 (forward-list 1)
991 (skip-chars-forward " \t")
992 (if (looking-at "[#\n]")
993 (forward-line 1)))
994 (goto-char (point-min)))))
995 (setq arg (1+ arg)))))
996
997 (defalias 'mark-perl-function 'perl-mark-function)
998 (defun perl-mark-function ()
999 "Put mark at end of Perl function, point at beginning."
1000 (interactive)
1001 (push-mark (point))
1002 (perl-end-of-function)
1003 (push-mark (point))
1004 (perl-beginning-of-function)
1005 (backward-paragraph))
1006
1007 (provide 'perl-mode)
1008
1009 ;; arch-tag: 8c7ff68d-15f3-46a2-ade2-b7c41f176826
1010 ;;; perl-mode.el ends here