]> code.delx.au - gnu-emacs/blob - lisp/progmodes/perl-mode.el
e92bb1053a6541a5774a91f6ead5eb0643ca55e4
[gnu-emacs] / 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
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 2, 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 specifications like `sub myfunc ($$)'
269 ("\\<sub\\s-+\\S-+\\s-*(\\([^)]+\\))" 1 '(1))
270 ;; regexp and funny quotes
271 ("[?:.,;=!~({[][ \t\n]*\\(/\\)" (1 '(7)))
272 ("\\(^\\|[?:.,;=!~({[ \t]\\)\\([msy]\\|q[qxrw]?\\|tr\\)\\>\\s-*\\([^])}> \n\t]\\)"
273 ;; Nasty cases:
274 ;; /foo/m $a->m $#m $m @m %m
275 ;; \s (appears often in regexps).
276 ;; -s file
277 (3 (if (assoc (char-after (match-beginning 3))
278 perl-quote-like-pairs)
279 '(15) '(7))))
280 ;; Find and mark the end of funny quotes and format statements.
281 (perl-font-lock-special-syntactic-constructs)
282 ))
283
284 (defvar perl-empty-syntax-table
285 (let ((st (copy-syntax-table)))
286 ;; Make all chars be of punctuation syntax.
287 (dotimes (i 256) (aset st i '(1)))
288 (modify-syntax-entry ?\\ "\\" st)
289 st)
290 "Syntax table used internally for processing quote-like operators.")
291
292 (defun perl-quote-syntax-table (char)
293 (let ((close (cdr (assq char perl-quote-like-pairs)))
294 (st (copy-syntax-table perl-empty-syntax-table)))
295 (if (not close)
296 (modify-syntax-entry char "\"" st)
297 (modify-syntax-entry char "(" st)
298 (modify-syntax-entry close ")" st))
299 st))
300
301 (defun perl-font-lock-special-syntactic-constructs (limit)
302 ;; We used to do all this in a font-lock-syntactic-face-function, which
303 ;; did not work correctly because sometimes some parts of the buffer are
304 ;; treated with font-lock-syntactic-keywords but not with
305 ;; font-lock-syntactic-face-function (mostly because of
306 ;; font-lock-syntactically-fontified). That meant that some syntax-table
307 ;; properties were missing. So now we do the parse-partial-sexp loop
308 ;; ourselves directly from font-lock-syntactic-keywords, so we're sure
309 ;; it's done when necessary.
310 (let ((state (syntax-ppss))
311 char)
312 (while (< (point) limit)
313 (cond
314 ((or (null (setq char (nth 3 state)))
315 (and (char-valid-p char) (eq (char-syntax (nth 3 state)) ?\")))
316 ;; Normal text, or comment, or docstring, or normal string.
317 nil)
318 ((eq (nth 3 state) ?\n)
319 ;; A `format' command.
320 (save-excursion
321 (when (and (re-search-forward "^\\s *\\.\\s *$" nil t)
322 (not (eobp)))
323 (put-text-property (point) (1+ (point)) 'syntax-table '(7)))))
324 (t
325 ;; This is regexp like quote thingy.
326 (setq char (char-after (nth 8 state)))
327 (save-excursion
328 (let ((twoargs (save-excursion
329 (goto-char (nth 8 state))
330 (skip-syntax-backward " ")
331 (skip-syntax-backward "w")
332 (member (buffer-substring
333 (point) (progn (forward-word 1) (point)))
334 '("tr" "s" "y"))))
335 (close (cdr (assq char perl-quote-like-pairs)))
336 (pos (point))
337 (st (perl-quote-syntax-table char)))
338 (if (not close)
339 ;; The closing char is the same as the opening char.
340 (with-syntax-table st
341 (parse-partial-sexp (point) (point-max)
342 nil nil state 'syntax-table)
343 (when twoargs
344 (parse-partial-sexp (point) (point-max)
345 nil nil state 'syntax-table)))
346 ;; The open/close chars are matched like () [] {} and <>.
347 (let ((parse-sexp-lookup-properties nil))
348 (condition-case err
349 (progn
350 (with-syntax-table st
351 (goto-char (nth 8 state)) (forward-sexp 1))
352 (when twoargs
353 (save-excursion
354 ;; Skip whitespace and make sure that font-lock will
355 ;; refontify the second part in the proper context.
356 (put-text-property
357 (point) (progn (forward-comment (point-max)) (point))
358 'font-lock-multiline t)
359 ;;
360 (unless
361 (save-excursion
362 (with-syntax-table
363 (perl-quote-syntax-table (char-after))
364 (forward-sexp 1))
365 (put-text-property pos (line-end-position)
366 'jit-lock-defer-multiline t)
367 (looking-at "\\s-*\\sw*e"))
368 (put-text-property (point) (1+ (point))
369 'syntax-table
370 (if (assoc (char-after)
371 perl-quote-like-pairs)
372 '(15) '(7)))))))
373 ;; The arg(s) is not terminated, so it extends until EOB.
374 (scan-error (goto-char (point-max))))))
375 ;; Point is now right after the arg(s).
376 ;; Erase any syntactic marks within the quoted text.
377 (put-text-property pos (1- (point)) 'syntax-table nil)
378 (when (eq (char-before (1- (point))) ?$)
379 (put-text-property (- (point) 2) (1- (point))
380 'syntax-table '(1)))
381 (put-text-property (1- (point)) (point)
382 'syntax-table (if close '(15) '(7)))))))
383
384 (setq state (parse-partial-sexp (point) limit nil nil state
385 'syntax-table))))
386 ;; Tell font-lock that this needs not further processing.
387 nil)
388
389
390 (defcustom perl-indent-level 4
391 "*Indentation of Perl statements with respect to containing block."
392 :type 'integer
393 :group 'perl)
394 (defcustom perl-continued-statement-offset 4
395 "*Extra indent for lines not starting new statements."
396 :type 'integer
397 :group 'perl)
398 (defcustom perl-continued-brace-offset -4
399 "*Extra indent for substatements that start with open-braces.
400 This is in addition to `perl-continued-statement-offset'."
401 :type 'integer
402 :group 'perl)
403 (defcustom perl-brace-offset 0
404 "*Extra indentation for braces, compared with other text in same context."
405 :type 'integer
406 :group 'perl)
407 (defcustom perl-brace-imaginary-offset 0
408 "*Imagined indentation of an open brace that actually follows a statement."
409 :type 'integer
410 :group 'perl)
411 (defcustom perl-label-offset -2
412 "*Offset of Perl label lines relative to usual indentation."
413 :type 'integer
414 :group 'perl)
415 (defcustom perl-indent-continued-arguments nil
416 "*If non-nil offset of argument lines relative to usual indentation.
417 If nil, continued arguments are aligned with the first argument."
418 :type '(choice integer (const nil))
419 :group 'perl)
420
421 (defcustom perl-tab-always-indent tab-always-indent
422 "Non-nil means TAB in Perl mode always indents the current line.
423 Otherwise it inserts a tab character if you type it past the first
424 nonwhite character on the line."
425 :type 'boolean
426 :group 'perl)
427
428 ;; I changed the default to nil for consistency with general Emacs
429 ;; conventions -- rms.
430 (defcustom perl-tab-to-comment nil
431 "*Non-nil means TAB moves to eol or makes a comment in some cases.
432 For lines which don't need indenting, TAB either indents an
433 existing comment, moves to end-of-line, or if at end-of-line already,
434 create a new comment."
435 :type 'boolean
436 :group 'perl)
437
438 (defcustom perl-nochange ";?#\\|\f\\|\\s(\\|\\(\\w\\|\\s_\\)+:[^:]"
439 "*Lines starting with this regular expression are not auto-indented."
440 :type 'regexp
441 :group 'perl)
442
443 ;; Outline support
444
445 (defvar perl-outline-regexp
446 (concat (mapconcat 'cadr perl-imenu-generic-expression "\\|")
447 "\\|^=cut\\>"))
448
449 (defun perl-outline-level ()
450 (cond
451 ((looking-at "package\\s-") 0)
452 ((looking-at "sub\\s-") 1)
453 ((looking-at "=head[0-9]") (- (char-before (match-end 0)) ?0))
454 ((looking-at "=cut") 1)
455 (t 3)))
456 \f
457 (defvar perl-mode-hook nil
458 "Normal hook to run when entering Perl mode.")
459
460 ;;;###autoload
461 (defun perl-mode ()
462 "Major mode for editing Perl code.
463 Expression and list commands understand all Perl brackets.
464 Tab indents for Perl code.
465 Comments are delimited with # ... \\n.
466 Paragraphs are separated by blank lines only.
467 Delete converts tabs to spaces as it moves back.
468 \\{perl-mode-map}
469 Variables controlling indentation style:
470 `perl-tab-always-indent'
471 Non-nil means TAB in Perl mode should always indent the current line,
472 regardless of where in the line point is when the TAB command is used.
473 `perl-tab-to-comment'
474 Non-nil means that for lines which don't need indenting, TAB will
475 either delete an empty comment, indent an existing comment, move
476 to end-of-line, or if at end-of-line already, create a new comment.
477 `perl-nochange'
478 Lines starting with this regular expression are not auto-indented.
479 `perl-indent-level'
480 Indentation of Perl statements within surrounding block.
481 The surrounding block's indentation is the indentation
482 of the line on which the open-brace appears.
483 `perl-continued-statement-offset'
484 Extra indentation given to a substatement, such as the
485 then-clause of an if or body of a while.
486 `perl-continued-brace-offset'
487 Extra indentation given to a brace that starts a substatement.
488 This is in addition to `perl-continued-statement-offset'.
489 `perl-brace-offset'
490 Extra indentation for line if it starts with an open brace.
491 `perl-brace-imaginary-offset'
492 An open brace following other text is treated as if it were
493 this far to the right of the start of its line.
494 `perl-label-offset'
495 Extra indentation for line that is a label.
496 `perl-indent-continued-arguments'
497 Offset of argument lines relative to usual indentation.
498
499 Various indentation styles: K&R BSD BLK GNU LW
500 perl-indent-level 5 8 0 2 4
501 perl-continued-statement-offset 5 8 4 2 4
502 perl-continued-brace-offset 0 0 0 0 -4
503 perl-brace-offset -5 -8 0 0 0
504 perl-brace-imaginary-offset 0 0 4 0 0
505 perl-label-offset -5 -8 -2 -2 -2
506
507 Turning on Perl mode runs the normal hook `perl-mode-hook'."
508 (interactive)
509 (kill-all-local-variables)
510 (use-local-map perl-mode-map)
511 (setq major-mode 'perl-mode)
512 (setq mode-name "Perl")
513 (setq local-abbrev-table perl-mode-abbrev-table)
514 (set-syntax-table perl-mode-syntax-table)
515 (make-local-variable 'paragraph-start)
516 (setq paragraph-start (concat "$\\|" page-delimiter))
517 (make-local-variable 'paragraph-separate)
518 (setq paragraph-separate paragraph-start)
519 (make-local-variable 'paragraph-ignore-fill-prefix)
520 (setq paragraph-ignore-fill-prefix t)
521 (make-local-variable 'indent-line-function)
522 (setq indent-line-function 'perl-indent-line)
523 (make-local-variable 'require-final-newline)
524 (setq require-final-newline mode-require-final-newline)
525 (make-local-variable 'comment-start)
526 (setq comment-start "# ")
527 (make-local-variable 'comment-end)
528 (setq comment-end "")
529 (make-local-variable 'comment-start-skip)
530 (setq comment-start-skip "\\(^\\|\\s-\\);?#+ *")
531 (make-local-variable 'comment-indent-function)
532 (setq comment-indent-function 'perl-comment-indent)
533 (make-local-variable 'parse-sexp-ignore-comments)
534 (setq parse-sexp-ignore-comments t)
535 ;; Tell font-lock.el how to handle Perl.
536 (setq font-lock-defaults '((perl-font-lock-keywords
537 perl-font-lock-keywords-1
538 perl-font-lock-keywords-2)
539 nil nil ((?\_ . "w")) nil
540 (font-lock-syntactic-keywords
541 . perl-font-lock-syntactic-keywords)
542 (parse-sexp-lookup-properties . t)))
543 ;; Tell imenu how to handle Perl.
544 (set (make-local-variable 'imenu-generic-expression)
545 perl-imenu-generic-expression)
546 (setq imenu-case-fold-search nil)
547 ;; Setup outline-minor-mode.
548 (set (make-local-variable 'outline-regexp) perl-outline-regexp)
549 (set (make-local-variable 'outline-level) 'perl-outline-level)
550 (run-mode-hooks 'perl-mode-hook))
551 \f
552 ;; This is used by indent-for-comment
553 ;; to decide how much to indent a comment in Perl code
554 ;; based on its context.
555 (defun perl-comment-indent ()
556 (if (and (bolp) (not (eolp)))
557 0 ;Existing comment at bol stays there.
558 comment-column))
559
560 (defalias 'electric-perl-terminator 'perl-electric-terminator)
561 (defun perl-electric-terminator (arg)
562 "Insert character and adjust indentation.
563 If at end-of-line, and not in a comment or a quote, correct the's indentation."
564 (interactive "P")
565 (let ((insertpos (point)))
566 (and (not arg) ; decide whether to indent
567 (eolp)
568 (save-excursion
569 (beginning-of-line)
570 (and (not ; eliminate comments quickly
571 (and comment-start-skip
572 (re-search-forward comment-start-skip insertpos t)) )
573 (or (/= last-command-char ?:)
574 ;; Colon is special only after a label ....
575 (looking-at "\\s-*\\(\\w\\|\\s_\\)+$"))
576 (let ((pps (parse-partial-sexp
577 (perl-beginning-of-function) insertpos)))
578 (not (or (nth 3 pps) (nth 4 pps) (nth 5 pps))))))
579 (progn ; must insert, indent, delete
580 (insert-char last-command-char 1)
581 (perl-indent-line)
582 (delete-char -1))))
583 (self-insert-command (prefix-numeric-value arg)))
584
585 ;; not used anymore, but may be useful someday:
586 ;;(defun perl-inside-parens-p ()
587 ;; (condition-case ()
588 ;; (save-excursion
589 ;; (save-restriction
590 ;; (narrow-to-region (point)
591 ;; (perl-beginning-of-function))
592 ;; (goto-char (point-max))
593 ;; (= (char-after (or (scan-lists (point) -1 1) (point-min))) ?\()))
594 ;; (error nil)))
595 \f
596 (defun perl-indent-command (&optional arg)
597 "Indent current line as Perl code, or optionally, insert a tab character.
598
599 With an argument, indent the current line, regardless of other options.
600
601 If `perl-tab-always-indent' is nil and point is not in the indentation
602 area at the beginning of the line, simply insert a tab.
603
604 Otherwise, indent the current line. If point was within the indentation
605 area it is moved to the end of the indentation area. If the line was
606 already indented properly and point was not within the indentation area,
607 and if `perl-tab-to-comment' is non-nil (the default), then do the first
608 possible action from the following list:
609
610 1) delete an empty comment
611 2) move forward to start of comment, indenting if necessary
612 3) move forward to end of line
613 4) create an empty comment
614 5) move backward to start of comment, indenting if necessary."
615 (interactive "P")
616 (if arg ; If arg, just indent this line
617 (perl-indent-line "\f")
618 (if (and (not perl-tab-always-indent)
619 (> (current-column) (current-indentation)))
620 (insert-tab)
621 (let* ((oldpnt (point))
622 (lsexp (progn (beginning-of-line) (point)))
623 (bof (perl-beginning-of-function))
624 (delta (progn
625 (goto-char oldpnt)
626 (perl-indent-line "\f\\|;?#" bof))))
627 (and perl-tab-to-comment
628 (= oldpnt (point)) ; done if point moved
629 (if (listp delta) ; if line starts in a quoted string
630 (setq lsexp (or (nth 2 delta) bof))
631 (= delta 0)) ; done if indenting occurred
632 (let ((eol (progn (end-of-line) (point)))
633 state)
634 (if (= (char-after bof) ?=)
635 (if (= oldpnt eol)
636 (message "In a format statement"))
637 (setq state (parse-partial-sexp lsexp eol))
638 (if (nth 3 state)
639 (if (= oldpnt eol) ; already at eol in a string
640 (message "In a string which starts with a %c."
641 (nth 3 state)))
642 (if (not (nth 4 state))
643 (if (= oldpnt eol) ; no comment, create one?
644 (indent-for-comment))
645 (beginning-of-line)
646 (if (and comment-start-skip
647 (re-search-forward comment-start-skip eol 'move))
648 (if (eolp)
649 (progn ; kill existing comment
650 (goto-char (match-beginning 0))
651 (skip-chars-backward " \t")
652 (kill-region (point) eol))
653 (if (or (< oldpnt (point)) (= oldpnt eol))
654 (indent-for-comment) ; indent existing comment
655 (end-of-line)))
656 (if (/= oldpnt eol)
657 (end-of-line)
658 (message "Use backslash to quote # characters.")
659 (ding t))))))))))))
660
661 (defun perl-indent-line (&optional nochange parse-start)
662 "Indent current line as Perl code.
663 Return the amount the indentation
664 changed by, or (parse-state) if line starts in a quoted string."
665 (let ((case-fold-search nil)
666 (pos (- (point-max) (point)))
667 (bof (or parse-start (save-excursion (perl-beginning-of-function))))
668 beg indent shift-amt)
669 (beginning-of-line)
670 (setq beg (point))
671 (setq shift-amt
672 (cond ((eq (char-after bof) ?=) 0)
673 ((listp (setq indent (perl-calculate-indent bof))) indent)
674 ((looking-at (or nochange perl-nochange)) 0)
675 (t
676 (skip-chars-forward " \t\f")
677 (setq indent (perl-indent-new-calculate nil indent bof))
678 (- indent (current-column)))))
679 (skip-chars-forward " \t\f")
680 (if (and (numberp shift-amt) (/= 0 shift-amt))
681 (progn (delete-region beg (point))
682 (indent-to indent)))
683 ;; If initial point was within line's indentation,
684 ;; position after the indentation. Else stay at same point in text.
685 (if (> (- (point-max) pos) (point))
686 (goto-char (- (point-max) pos)))
687 shift-amt))
688
689 (defun perl-continuation-line-p (limit)
690 "Move to end of previous line and return non-nil if continued."
691 ;; Statement level. Is it a continuation or a new statement?
692 ;; Find previous non-comment character.
693 (perl-backward-to-noncomment)
694 ;; Back up over label lines, since they don't
695 ;; affect whether our line is a continuation.
696 (while (or (eq (preceding-char) ?\,)
697 (and (eq (preceding-char) ?:)
698 (memq (char-syntax (char-after (- (point) 2)))
699 '(?w ?_))))
700 (if (eq (preceding-char) ?\,)
701 (perl-backward-to-start-of-continued-exp limit)
702 (beginning-of-line))
703 (perl-backward-to-noncomment))
704 ;; Now we get the answer.
705 (not (memq (preceding-char) '(?\; ?\} ?\{))))
706
707 (defun perl-hanging-paren-p ()
708 "Non-nil if we are right after a hanging parenthesis-like char."
709 (and (looking-at "[ \t]*$")
710 (save-excursion
711 (skip-syntax-backward " (") (not (bolp)))))
712
713 (defun perl-indent-new-calculate (&optional virtual default parse-start)
714 (or
715 (and virtual (save-excursion (skip-chars-backward " \t") (bolp))
716 (current-column))
717 (and (looking-at "\\(\\w\\|\\s_\\)+:[^:]")
718 (max 1 (+ (or default (perl-calculate-indent parse-start))
719 perl-label-offset)))
720 (and (= (char-syntax (following-char)) ?\))
721 (save-excursion
722 (forward-char 1)
723 (forward-sexp -1)
724 (perl-indent-new-calculate
725 ;; Recalculate the parsing-start, since we may have jumped
726 ;; dangerously close (typically in the case of nested functions).
727 'virtual nil (save-excursion (perl-beginning-of-function)))))
728 (and (and (= (following-char) ?{)
729 (save-excursion (forward-char) (perl-hanging-paren-p)))
730 (+ (or default (perl-calculate-indent parse-start))
731 perl-brace-offset))
732 (or default (perl-calculate-indent parse-start))))
733
734 (defun perl-calculate-indent (&optional parse-start)
735 "Return appropriate indentation for current line as Perl code.
736 In usual case returns an integer: the column to indent to.
737 Returns (parse-state) if line starts inside a string.
738 Optional argument PARSE-START should be the position of `beginning-of-defun'."
739 (save-excursion
740 (let ((indent-point (point))
741 (case-fold-search nil)
742 (colon-line-end 0)
743 state containing-sexp)
744 (if parse-start ;used to avoid searching
745 (goto-char parse-start)
746 (perl-beginning-of-function))
747 ;; We might be now looking at a local function that has nothing to
748 ;; do with us because `indent-point' is past it. In this case
749 ;; look further back up for another `perl-beginning-of-function'.
750 (while (and (looking-at "{")
751 (save-excursion
752 (beginning-of-line)
753 (looking-at "\\s-+sub\\>"))
754 (> indent-point (save-excursion (forward-sexp 1) (point))))
755 (perl-beginning-of-function))
756 (while (< (point) indent-point) ;repeat until right sexp
757 (setq state (parse-partial-sexp (point) indent-point 0))
758 ;; state = (depth_in_parens innermost_containing_list
759 ;; last_complete_sexp string_terminator_or_nil inside_commentp
760 ;; following_quotep minimum_paren-depth_this_scan)
761 ;; Parsing stops if depth in parentheses becomes equal to third arg.
762 (setq containing-sexp (nth 1 state)))
763 (cond ((nth 3 state) state) ; In a quoted string?
764 ((null containing-sexp) ; Line is at top level.
765 (skip-chars-forward " \t\f")
766 (if (= (following-char) ?{)
767 0 ; move to beginning of line if it starts a function body
768 ;; indent a little if this is a continuation line
769 (perl-backward-to-noncomment)
770 (if (or (bobp)
771 (memq (preceding-char) '(?\; ?\})))
772 0 perl-continued-statement-offset)))
773 ((/= (char-after containing-sexp) ?{)
774 ;; line is expression, not statement:
775 ;; indent to just after the surrounding open.
776 (goto-char (1+ containing-sexp))
777 (if (perl-hanging-paren-p)
778 ;; We're indenting an arg of a call like:
779 ;; $a = foobarlongnamefun (
780 ;; arg1
781 ;; arg2
782 ;; );
783 (progn
784 (skip-syntax-backward "(")
785 (condition-case err
786 (while (save-excursion
787 (skip-syntax-backward " ") (not (bolp)))
788 (forward-sexp -1))
789 (scan-error nil))
790 (+ (current-column) perl-indent-level))
791 (if perl-indent-continued-arguments
792 (+ perl-indent-continued-arguments (current-indentation))
793 (skip-chars-forward " \t")
794 (current-column))))
795 (t
796 ;; Statement level. Is it a continuation or a new statement?
797 (if (perl-continuation-line-p containing-sexp)
798 ;; This line is continuation of preceding line's statement;
799 ;; indent perl-continued-statement-offset more than the
800 ;; previous line of the statement.
801 (progn
802 (perl-backward-to-start-of-continued-exp containing-sexp)
803 (+ (if (save-excursion
804 (perl-continuation-line-p containing-sexp))
805 ;; If the continued line is itself a continuation
806 ;; line, then align, otherwise add an offset.
807 0 perl-continued-statement-offset)
808 (current-column)
809 (if (save-excursion (goto-char indent-point)
810 (looking-at "[ \t]*{"))
811 perl-continued-brace-offset 0)))
812 ;; This line starts a new statement.
813 ;; Position at last unclosed open.
814 (goto-char containing-sexp)
815 (or
816 ;; Is line first statement after an open-brace?
817 ;; If no, find that first statement and indent like it.
818 (save-excursion
819 (forward-char 1)
820 ;; Skip over comments and labels following openbrace.
821 (while (progn
822 (skip-chars-forward " \t\f\n")
823 (cond ((looking-at ";?#")
824 (forward-line 1) t)
825 ((looking-at "\\(\\w\\|\\s_\\)+:[^:]")
826 (save-excursion
827 (end-of-line)
828 (setq colon-line-end (point)))
829 (search-forward ":")))))
830 ;; The first following code counts
831 ;; if it is before the line we want to indent.
832 (and (< (point) indent-point)
833 (if (> colon-line-end (point))
834 (- (current-indentation) perl-label-offset)
835 (current-column))))
836 ;; If no previous statement,
837 ;; indent it relative to line brace is on.
838 ;; For open paren in column zero, don't let statement
839 ;; start there too. If perl-indent-level is zero,
840 ;; use perl-brace-offset + perl-continued-statement-offset
841 ;; For open-braces not the first thing in a line,
842 ;; add in perl-brace-imaginary-offset.
843 (+ (if (and (bolp) (zerop perl-indent-level))
844 (+ perl-brace-offset perl-continued-statement-offset)
845 perl-indent-level)
846 ;; Move back over whitespace before the openbrace.
847 ;; If openbrace is not first nonwhite thing on the line,
848 ;; add the perl-brace-imaginary-offset.
849 (progn (skip-chars-backward " \t")
850 (if (bolp) 0 perl-brace-imaginary-offset))
851 ;; If the openbrace is preceded by a parenthesized exp,
852 ;; move to the beginning of that;
853 ;; possibly a different line
854 (progn
855 (if (eq (preceding-char) ?\))
856 (forward-sexp -1))
857 ;; Get initial indentation of the line we are on.
858 (current-indentation))))))))))
859
860 (defun perl-backward-to-noncomment ()
861 "Move point backward to after the first non-white-space, skipping comments."
862 (interactive)
863 (forward-comment (- (point-max))))
864
865 (defun perl-backward-to-start-of-continued-exp (lim)
866 (if (= (preceding-char) ?\))
867 (forward-sexp -1))
868 (beginning-of-line)
869 (if (<= (point) lim)
870 (goto-char (1+ lim)))
871 (skip-chars-forward " \t\f"))
872 \f
873 ;; note: this may be slower than the c-mode version, but I can understand it.
874 (defalias 'indent-perl-exp 'perl-indent-exp)
875 (defun perl-indent-exp ()
876 "Indent each line of the Perl grouping following point."
877 (interactive)
878 (let* ((case-fold-search nil)
879 (oldpnt (point-marker))
880 (bof-mark (save-excursion
881 (end-of-line 2)
882 (perl-beginning-of-function)
883 (point-marker)))
884 eol last-mark lsexp-mark delta)
885 (if (= (char-after (marker-position bof-mark)) ?=)
886 (message "Can't indent a format statement")
887 (message "Indenting Perl expression...")
888 (save-excursion (end-of-line) (setq eol (point)))
889 (save-excursion ; locate matching close paren
890 (while (and (not (eobp)) (<= (point) eol))
891 (parse-partial-sexp (point) (point-max) 0))
892 (setq last-mark (point-marker)))
893 (setq lsexp-mark bof-mark)
894 (beginning-of-line)
895 (while (< (point) (marker-position last-mark))
896 (setq delta (perl-indent-line nil (marker-position bof-mark)))
897 (if (numberp delta) ; unquoted start-of-line?
898 (progn
899 (if (eolp)
900 (delete-horizontal-space))
901 (setq lsexp-mark (point-marker))))
902 (end-of-line)
903 (setq eol (point))
904 (if (nth 4 (parse-partial-sexp (marker-position lsexp-mark) eol))
905 (progn ; line ends in a comment
906 (beginning-of-line)
907 (if (or (not (looking-at "\\s-*;?#"))
908 (listp delta)
909 (and (/= 0 delta)
910 (= (- (current-indentation) delta) comment-column)))
911 (if (and comment-start-skip
912 (re-search-forward comment-start-skip eol t))
913 (indent-for-comment))))) ; indent existing comment
914 (forward-line 1))
915 (goto-char (marker-position oldpnt))
916 (message "Indenting Perl expression...done"))))
917 \f
918 (defun perl-beginning-of-function (&optional arg)
919 "Move backward to next beginning-of-function, or as far as possible.
920 With argument, repeat that many times; negative args move forward.
921 Returns new value of point in all cases."
922 (interactive "p")
923 (or arg (setq arg 1))
924 (if (< arg 0) (forward-char 1))
925 (and (/= arg 0)
926 (re-search-backward "^\\s(\\|^\\s-*sub\\b[^{]+{\\|^\\s-*format\\b[^=]*=\\|^\\."
927 nil 'move arg)
928 (goto-char (1- (match-end 0))))
929 (point))
930
931 ;; note: this routine is adapted directly from emacs lisp.el, end-of-defun;
932 ;; no bugs have been removed :-)
933 (defun perl-end-of-function (&optional arg)
934 "Move forward to next end-of-function.
935 The end of a function is found by moving forward from the beginning of one.
936 With argument, repeat that many times; negative args move backward."
937 (interactive "p")
938 (or arg (setq arg 1))
939 (let ((first t))
940 (while (and (> arg 0) (< (point) (point-max)))
941 (let ((pos (point)))
942 (while (progn
943 (if (and first
944 (progn
945 (forward-char 1)
946 (perl-beginning-of-function 1)
947 (not (bobp))))
948 nil
949 (or (bobp) (forward-char -1))
950 (perl-beginning-of-function -1))
951 (setq first nil)
952 (forward-list 1)
953 (skip-chars-forward " \t")
954 (if (looking-at "[#\n]")
955 (forward-line 1))
956 (<= (point) pos))))
957 (setq arg (1- arg)))
958 (while (< arg 0)
959 (let ((pos (point)))
960 (perl-beginning-of-function 1)
961 (forward-sexp 1)
962 (forward-line 1)
963 (if (>= (point) pos)
964 (if (progn (perl-beginning-of-function 2) (not (bobp)))
965 (progn
966 (forward-list 1)
967 (skip-chars-forward " \t")
968 (if (looking-at "[#\n]")
969 (forward-line 1)))
970 (goto-char (point-min)))))
971 (setq arg (1+ arg)))))
972
973 (defalias 'mark-perl-function 'perl-mark-function)
974 (defun perl-mark-function ()
975 "Put mark at end of Perl function, point at beginning."
976 (interactive)
977 (push-mark (point))
978 (perl-end-of-function)
979 (push-mark (point))
980 (perl-beginning-of-function)
981 (backward-paragraph))
982
983 (provide 'perl-mode)
984
985 ;; arch-tag: 8c7ff68d-15f3-46a2-ade2-b7c41f176826
986 ;;; perl-mode.el ends here