]> code.delx.au - gnu-emacs/blob - lisp/progmodes/perl-mode.el
(cvs-string->strings): Strip trailing whitespace.
[gnu-emacs] / lisp / progmodes / perl-mode.el
1 ;;; perl-mode.el --- Perl code editing commands for GNU Emacs
2
3 ;; Copyright (C) 1990, 1994, 2003, 2005 Free Software Foundation, Inc.
4
5 ;; Author: William F. Mann
6 ;; Maintainer: FSF
7 ;; Adapted-By: ESR
8 ;; Keywords: languages
9
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.
12
13 ;; This file is part of GNU Emacs.
14
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)
18 ;; any later version.
19
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.
24
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.
29
30 ;;; Commentary:
31
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))
39 ;; auto-mode-alist))
40 ;; to your .emacs file; otherwise the .pl suffix defaults to prolog-mode.
41
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.
44
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 \#.
51
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.
55
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.
62
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.
65
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.
74 ;;
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.
86
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:
92 ;;
93 ;; /`/; $ugly = q?"'$?; /`/;
94 ;;
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}>)
99 ;;
100 ;; Problem 7 is even worse, but this 'fix' does work :-(
101 ;; $DB'stop#'
102 ;; [$DB'line#'
103 ;; ] =~ s/;9$//;
104
105 ;;; Code:
106
107 (eval-when-compile (require 'cl))
108
109 (defgroup perl nil
110 "Major mode for editing Perl code."
111 :prefix "perl-"
112 :group 'languages)
113
114 (defvar perl-mode-abbrev-table nil
115 "Abbrev table in use in perl-mode buffers.")
116 (define-abbrev-table 'perl-mode-abbrev-table ())
117
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)
130 map)
131 "Keymap used in Perl mode.")
132
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."
136 t)
137
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)
159 st)
160 "Syntax table in use in `perl-mode' buffers.")
161
162 (defvar perl-imenu-generic-expression
163 '(;; Functions
164 (nil "^sub\\s-+\\([-A-Za-z0-9+_:]+\\)" 1)
165 ;;Variables
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'.")
170
171 ;; Regexps updated with help from Tom Tromey <tromey@cambric.colorado.edu> and
172 ;; Jim Campbell <jec@murzim.ca.boeing.com>.
173
174 (defconst perl-font-lock-keywords-1
175 '(;; What is this for?
176 ;;("\\(--- .* ---\\|=== .* ===\\)" . font-lock-string-face)
177 ;;
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)
182 ;; ("^#[ \t]*if\\>"
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))
187 ;;
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.")
194
195 (defconst perl-font-lock-keywords-2
196 (append perl-font-lock-keywords-1
197 (list
198 ;;
199 ;; Fontify keywords, except those fontified otherwise.
200 (concat "\\<"
201 (regexp-opt '("if" "until" "while" "elsif" "else" "unless"
202 "do" "dump" "for" "foreach" "exit" "die"
203 "BEGIN" "END" "return" "exec" "eval") t)
204 "\\>")
205 ;;
206 ;; Fontify local and my keywords as types.
207 '("\\<\\(local\\|my\\)\\>" . font-lock-type-face)
208 ;;
209 ;; Fontify function, variable and file name references.
210 '("&\\(\\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+\\)" 1 font-lock-variable-name-face)
214 '("\\([@%]\\|\\$#\\)\\(\\sw+\\)"
215 (2 (cons font-lock-variable-name-face '(underline))))
216 '("<\\(\\sw+\\)>" 1 font-lock-constant-face)
217 ;;
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.")
223
224 (defvar perl-font-lock-keywords perl-font-lock-keywords-1
225 "Default expressions to highlight in Perl mode.")
226
227 (defvar perl-quote-like-pairs
228 '((?\( . ?\)) (?\[ . ?\]) (?\{ . ?\}) (?\< . ?\>)))
229
230 ;; FIXME: handle here-docs and regexps.
231 ;; <<EOF <<"EOF" <<'EOF' (no space)
232 ;; see `man perlop'
233 ;; ?...?
234 ;; /.../
235 ;; m [...]
236 ;; m /.../
237 ;; q /.../ = '...'
238 ;; qq /.../ = "..."
239 ;; qx /.../ = `...`
240 ;; qr /.../ = precompiled regexp =~=~ m/.../
241 ;; qw /.../
242 ;; s /.../.../
243 ;; s <...> /.../
244 ;; s '...'...'
245 ;; tr /.../.../
246 ;; y /.../.../
247 ;;
248 ;; <file*glob>
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 "_"))
259 ;; format statements
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]\\)"
266 ;; Nasty cases:
267 ;; /foo/m $a->m $#m $m @m %m
268 ;; \s (appears often in regexps).
269 ;; -s file
270 (2 (if (assoc (char-after (match-beginning 2))
271 perl-quote-like-pairs)
272 '(15) '(7))))
273 ;; TODO: here-documents ("<<\\(\\sw\\|['\"]\\)")
274 ))
275
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)
281 st)
282 "Syntax table used internally for processing quote-like operators.")
283
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)))
287 (if (not close)
288 (modify-syntax-entry char "\"" st)
289 (modify-syntax-entry char "(" st)
290 (modify-syntax-entry close ")" st))
291 st))
292
293 (defun perl-font-lock-syntactic-face-function (state)
294 (let ((char (nth 3 state)))
295 (cond
296 ((not char)
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)) ?\"))
300 ;; Normal string.
301 font-lock-string-face)
302 ((eq (nth 3 state) ?\n)
303 ;; A `format' command.
304 (save-excursion
305 (when (and (re-search-forward "^\\s *\\.\\s *$" nil t)
306 (not (eobp)))
307 (put-text-property (point) (1+ (point)) 'syntax-table '(7)))
308 font-lock-string-face))
309 (t
310 ;; This is regexp like quote thingy.
311 (setq char (char-after (nth 8 state)))
312 (save-excursion
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)))
319 '("tr" "s" "y"))))
320 (close (cdr (assq char perl-quote-like-pairs)))
321 (pos (point))
322 (st (perl-quote-syntax-table char)))
323 (if (not close)
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)
328 (when twoargs
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))
333 (ignore-errors
334 (with-syntax-table st
335 (goto-char (nth 8 state)) (forward-sexp 1))
336 (when twoargs
337 (save-excursion
338 ;; Skip whitespace and make sure that font-lock will
339 ;; refontify the second part in the proper context.
340 (put-text-property
341 (point) (progn (forward-comment (point-max)) (point))
342 'font-lock-multiline t)
343 ;;
344 (unless
345 (save-excursion
346 (let* ((char2 (char-after))
347 (st2 (perl-quote-syntax-table char2)))
348 (with-syntax-table st2 (forward-sexp 1))
349 (put-text-property pos (line-end-position)
350 'jit-lock-defer-multiline t)
351 (looking-at "\\s-*\\sw*e")))
352 (put-text-property (point) (1+ (point))
353 'syntax-table
354 (if (assoc (char-after)
355 perl-quote-like-pairs)
356 '(15) '(7)))))))))
357 ;; Erase any syntactic marks within the quoted text.
358 (put-text-property pos (1- (point)) 'syntax-table nil)
359 (when (eq (char-before (1- (point))) ?$)
360 (put-text-property (- (point) 2) (1- (point))
361 'syntax-table '(1)))
362 (put-text-property (1- (point)) (point)
363 'syntax-table (if close '(15) '(7)))
364 font-lock-string-face))))))
365 ;; (if (or twoargs (not (looking-at "\\s-*\\sw*e")))
366 ;; font-lock-string-face
367 ;; (font-lock-fontify-syntactically-region
368 ;; ;; FIXME: `end' is accessed via dyn-scoping.
369 ;; pos (min end (1- (point))) nil '(nil))
370 ;; nil)))))))
371
372
373 (defcustom perl-indent-level 4
374 "*Indentation of Perl statements with respect to containing block."
375 :type 'integer)
376 (defcustom perl-continued-statement-offset 4
377 "*Extra indent for lines not starting new statements."
378 :type 'integer)
379 (defcustom perl-continued-brace-offset -4
380 "*Extra indent for substatements that start with open-braces.
381 This is in addition to `perl-continued-statement-offset'."
382 :type 'integer)
383 (defcustom perl-brace-offset 0
384 "*Extra indentation for braces, compared with other text in same context."
385 :type 'integer)
386 (defcustom perl-brace-imaginary-offset 0
387 "*Imagined indentation of an open brace that actually follows a statement."
388 :type 'integer)
389 (defcustom perl-label-offset -2
390 "*Offset of Perl label lines relative to usual indentation."
391 :type 'integer)
392 (defcustom perl-indent-continued-arguments nil
393 "*If non-nil offset of argument lines relative to usual indentation.
394 If nil, continued arguments are aligned with the first argument."
395 :type '(choice integer (const nil)))
396
397 (defcustom perl-tab-always-indent tab-always-indent
398 "Non-nil means TAB in Perl mode always indents the current line.
399 Otherwise it inserts a tab character if you type it past the first
400 nonwhite character on the line."
401 :type 'boolean)
402
403 ;; I changed the default to nil for consistency with general Emacs
404 ;; conventions -- rms.
405 (defcustom perl-tab-to-comment nil
406 "*Non-nil means TAB moves to eol or makes a comment in some cases.
407 For lines which don't need indenting, TAB either indents an
408 existing comment, moves to end-of-line, or if at end-of-line already,
409 create a new comment."
410 :type 'boolean)
411
412 (defcustom perl-nochange ";?#\\|\f\\|\\s(\\|\\(\\w\\|\\s_\\)+:[^:]"
413 "*Lines starting with this regular expression are not auto-indented."
414 :type 'regexp)
415
416 ;; Outline support
417
418 (defvar perl-outline-regexp
419 (concat (mapconcat 'cadr perl-imenu-generic-expression "\\|")
420 "\\|^=cut\\>"))
421
422 (defun perl-outline-level ()
423 (cond
424 ((looking-at "package\\s-") 0)
425 ((looking-at "sub\\s-") 1)
426 ((looking-at "=head[0-9]") (- (char-before (match-end 0)) ?0))
427 ((looking-at "=cut") 1)
428 (t 3)))
429 \f
430 ;;;###autoload
431 (defun perl-mode ()
432 "Major mode for editing Perl code.
433 Expression and list commands understand all Perl brackets.
434 Tab indents for Perl code.
435 Comments are delimited with # ... \\n.
436 Paragraphs are separated by blank lines only.
437 Delete converts tabs to spaces as it moves back.
438 \\{perl-mode-map}
439 Variables controlling indentation style:
440 `perl-tab-always-indent'
441 Non-nil means TAB in Perl mode should always indent the current line,
442 regardless of where in the line point is when the TAB command is used.
443 `perl-tab-to-comment'
444 Non-nil means that for lines which don't need indenting, TAB will
445 either delete an empty comment, indent an existing comment, move
446 to end-of-line, or if at end-of-line already, create a new comment.
447 `perl-nochange'
448 Lines starting with this regular expression are not auto-indented.
449 `perl-indent-level'
450 Indentation of Perl statements within surrounding block.
451 The surrounding block's indentation is the indentation
452 of the line on which the open-brace appears.
453 `perl-continued-statement-offset'
454 Extra indentation given to a substatement, such as the
455 then-clause of an if or body of a while.
456 `perl-continued-brace-offset'
457 Extra indentation given to a brace that starts a substatement.
458 This is in addition to `perl-continued-statement-offset'.
459 `perl-brace-offset'
460 Extra indentation for line if it starts with an open brace.
461 `perl-brace-imaginary-offset'
462 An open brace following other text is treated as if it were
463 this far to the right of the start of its line.
464 `perl-label-offset'
465 Extra indentation for line that is a label.
466 `perl-indent-continued-arguments'
467 Offset of argument lines relative to usual indentation.
468
469 Various indentation styles: K&R BSD BLK GNU LW
470 perl-indent-level 5 8 0 2 4
471 perl-continued-statement-offset 5 8 4 2 4
472 perl-continued-brace-offset 0 0 0 0 -4
473 perl-brace-offset -5 -8 0 0 0
474 perl-brace-imaginary-offset 0 0 4 0 0
475 perl-label-offset -5 -8 -2 -2 -2
476
477 Turning on Perl mode runs the normal hook `perl-mode-hook'."
478 (interactive)
479 (kill-all-local-variables)
480 (use-local-map perl-mode-map)
481 (setq major-mode 'perl-mode)
482 (setq mode-name "Perl")
483 (setq local-abbrev-table perl-mode-abbrev-table)
484 (set-syntax-table perl-mode-syntax-table)
485 (make-local-variable 'paragraph-start)
486 (setq paragraph-start (concat "$\\|" page-delimiter))
487 (make-local-variable 'paragraph-separate)
488 (setq paragraph-separate paragraph-start)
489 (make-local-variable 'paragraph-ignore-fill-prefix)
490 (setq paragraph-ignore-fill-prefix t)
491 (make-local-variable 'indent-line-function)
492 (setq indent-line-function 'perl-indent-line)
493 (make-local-variable 'require-final-newline)
494 (setq require-final-newline mode-require-final-newline)
495 (make-local-variable 'comment-start)
496 (setq comment-start "# ")
497 (make-local-variable 'comment-end)
498 (setq comment-end "")
499 (make-local-variable 'comment-start-skip)
500 (setq comment-start-skip "\\(^\\|\\s-\\);?#+ *")
501 (make-local-variable 'comment-indent-function)
502 (setq comment-indent-function 'perl-comment-indent)
503 (make-local-variable 'parse-sexp-ignore-comments)
504 (setq parse-sexp-ignore-comments t)
505 ;; Tell font-lock.el how to handle Perl.
506 (setq font-lock-defaults '((perl-font-lock-keywords
507 perl-font-lock-keywords-1
508 perl-font-lock-keywords-2)
509 nil nil ((?\_ . "w")) nil
510 (font-lock-syntactic-keywords
511 . perl-font-lock-syntactic-keywords)
512 (font-lock-syntactic-face-function
513 . perl-font-lock-syntactic-face-function)
514 (parse-sexp-lookup-properties . t)))
515 ;; Tell imenu how to handle Perl.
516 (set (make-local-variable 'imenu-generic-expression)
517 perl-imenu-generic-expression)
518 (setq imenu-case-fold-search nil)
519 ;; Setup outline-minor-mode.
520 (set (make-local-variable 'outline-regexp) perl-outline-regexp)
521 (set (make-local-variable 'outline-level) 'perl-outline-level)
522 (run-hooks 'perl-mode-hook))
523 \f
524 ;; This is used by indent-for-comment
525 ;; to decide how much to indent a comment in Perl code
526 ;; based on its context.
527 (defun perl-comment-indent ()
528 (if (and (bolp) (not (eolp)))
529 0 ;Existing comment at bol stays there.
530 comment-column))
531
532 (defalias 'electric-perl-terminator 'perl-electric-terminator)
533 (defun perl-electric-terminator (arg)
534 "Insert character and adjust indentation.
535 If at end-of-line, and not in a comment or a quote, correct the's indentation."
536 (interactive "P")
537 (let ((insertpos (point)))
538 (and (not arg) ; decide whether to indent
539 (eolp)
540 (save-excursion
541 (beginning-of-line)
542 (and (not ; eliminate comments quickly
543 (and comment-start-skip
544 (re-search-forward comment-start-skip insertpos t)) )
545 (or (/= last-command-char ?:)
546 ;; Colon is special only after a label ....
547 (looking-at "\\s-*\\(\\w\\|\\s_\\)+$"))
548 (let ((pps (parse-partial-sexp
549 (perl-beginning-of-function) insertpos)))
550 (not (or (nth 3 pps) (nth 4 pps) (nth 5 pps))))))
551 (progn ; must insert, indent, delete
552 (insert-char last-command-char 1)
553 (perl-indent-line)
554 (delete-char -1))))
555 (self-insert-command (prefix-numeric-value arg)))
556
557 ;; not used anymore, but may be useful someday:
558 ;;(defun perl-inside-parens-p ()
559 ;; (condition-case ()
560 ;; (save-excursion
561 ;; (save-restriction
562 ;; (narrow-to-region (point)
563 ;; (perl-beginning-of-function))
564 ;; (goto-char (point-max))
565 ;; (= (char-after (or (scan-lists (point) -1 1) (point-min))) ?\()))
566 ;; (error nil)))
567 \f
568 (defun perl-indent-command (&optional arg)
569 "Indent current line as Perl code, or optionally, insert a tab character.
570
571 With an argument, indent the current line, regardless of other options.
572
573 If `perl-tab-always-indent' is nil and point is not in the indentation
574 area at the beginning of the line, simply insert a tab.
575
576 Otherwise, indent the current line. If point was within the indentation
577 area it is moved to the end of the indentation area. If the line was
578 already indented properly and point was not within the indentation area,
579 and if `perl-tab-to-comment' is non-nil (the default), then do the first
580 possible action from the following list:
581
582 1) delete an empty comment
583 2) move forward to start of comment, indenting if necessary
584 3) move forward to end of line
585 4) create an empty comment
586 5) move backward to start of comment, indenting if necessary."
587 (interactive "P")
588 (if arg ; If arg, just indent this line
589 (perl-indent-line "\f")
590 (if (and (not perl-tab-always-indent)
591 (> (current-column) (current-indentation)))
592 (insert-tab)
593 (let* ((oldpnt (point))
594 (lsexp (progn (beginning-of-line) (point)))
595 (bof (perl-beginning-of-function))
596 (delta (progn
597 (goto-char oldpnt)
598 (perl-indent-line "\f\\|;?#" bof))))
599 (and perl-tab-to-comment
600 (= oldpnt (point)) ; done if point moved
601 (if (listp delta) ; if line starts in a quoted string
602 (setq lsexp (or (nth 2 delta) bof))
603 (= delta 0)) ; done if indenting occurred
604 (let ((eol (progn (end-of-line) (point)))
605 state)
606 (if (= (char-after bof) ?=)
607 (if (= oldpnt eol)
608 (message "In a format statement"))
609 (setq state (parse-partial-sexp lsexp eol))
610 (if (nth 3 state)
611 (if (= oldpnt eol) ; already at eol in a string
612 (message "In a string which starts with a %c."
613 (nth 3 state)))
614 (if (not (nth 4 state))
615 (if (= oldpnt eol) ; no comment, create one?
616 (indent-for-comment))
617 (beginning-of-line)
618 (if (and comment-start-skip
619 (re-search-forward comment-start-skip eol 'move))
620 (if (eolp)
621 (progn ; kill existing comment
622 (goto-char (match-beginning 0))
623 (skip-chars-backward " \t")
624 (kill-region (point) eol))
625 (if (or (< oldpnt (point)) (= oldpnt eol))
626 (indent-for-comment) ; indent existing comment
627 (end-of-line)))
628 (if (/= oldpnt eol)
629 (end-of-line)
630 (message "Use backslash to quote # characters.")
631 (ding t))))))))))))
632
633 (defun perl-indent-line (&optional nochange parse-start)
634 "Indent current line as Perl code.
635 Return the amount the indentation
636 changed by, or (parse-state) if line starts in a quoted string."
637 (let ((case-fold-search nil)
638 (pos (- (point-max) (point)))
639 (bof (or parse-start (save-excursion (perl-beginning-of-function))))
640 beg indent shift-amt)
641 (beginning-of-line)
642 (setq beg (point))
643 (setq shift-amt
644 (cond ((eq (char-after bof) ?=) 0)
645 ((listp (setq indent (perl-calculate-indent bof))) indent)
646 ((looking-at (or nochange perl-nochange)) 0)
647 (t
648 (skip-chars-forward " \t\f")
649 (cond ((looking-at "\\(\\w\\|\\s_\\)+:[^:]")
650 (setq indent (max 1 (+ indent perl-label-offset))))
651 ((= (char-syntax (following-char)) ?\))
652 (setq indent
653 (save-excursion
654 (forward-char 1)
655 (forward-sexp -1)
656 (forward-char 1)
657 (if (perl-hanging-paren-p)
658 (- indent perl-indent-level)
659 (forward-char -1)
660 (current-column)))))
661 ((= (following-char) ?{)
662 (setq indent (+ indent perl-brace-offset))))
663 (- indent (current-column)))))
664 (skip-chars-forward " \t\f")
665 (if (and (numberp shift-amt) (/= 0 shift-amt))
666 (progn (delete-region beg (point))
667 (indent-to indent)))
668 ;; If initial point was within line's indentation,
669 ;; position after the indentation. Else stay at same point in text.
670 (if (> (- (point-max) pos) (point))
671 (goto-char (- (point-max) pos)))
672 shift-amt))
673
674 (defun perl-continuation-line-p (limit)
675 "Move to end of previous line and return non-nil if continued."
676 ;; Statement level. Is it a continuation or a new statement?
677 ;; Find previous non-comment character.
678 (perl-backward-to-noncomment)
679 ;; Back up over label lines, since they don't
680 ;; affect whether our line is a continuation.
681 (while (or (eq (preceding-char) ?\,)
682 (and (eq (preceding-char) ?:)
683 (memq (char-syntax (char-after (- (point) 2)))
684 '(?w ?_))))
685 (if (eq (preceding-char) ?\,)
686 (perl-backward-to-start-of-continued-exp limit)
687 (beginning-of-line))
688 (perl-backward-to-noncomment))
689 ;; Now we get the answer.
690 (not (memq (preceding-char) '(?\; ?\} ?\{))))
691
692 (defun perl-hanging-paren-p ()
693 "Non-nil if we are right after a hanging parenthesis-like char."
694 (and (looking-at "[ \t]*$")
695 (save-excursion
696 (skip-syntax-backward " (") (not (bolp)))))
697
698 (defun perl-calculate-indent (&optional parse-start)
699 "Return appropriate indentation for current line as Perl code.
700 In usual case returns an integer: the column to indent to.
701 Returns (parse-state) if line starts inside a string.
702 Optional argument PARSE-START should be the position of `beginning-of-defun'."
703 (save-excursion
704 (beginning-of-line)
705 (let ((indent-point (point))
706 (case-fold-search nil)
707 (colon-line-end 0)
708 state containing-sexp)
709 (if parse-start ;used to avoid searching
710 (goto-char parse-start)
711 (perl-beginning-of-function))
712 ;; We might be now looking at a local function that has nothing to
713 ;; do with us because `indent-point' is past it. In this case
714 ;; look further back up for another `perl-beginning-of-function'.
715 (while (and (looking-at "{")
716 (save-excursion
717 (beginning-of-line)
718 (looking-at "\\s-+sub\\>"))
719 (> indent-point (save-excursion (forward-sexp 1) (point))))
720 (perl-beginning-of-function))
721 (while (< (point) indent-point) ;repeat until right sexp
722 (setq state (parse-partial-sexp (point) indent-point 0))
723 ;; state = (depth_in_parens innermost_containing_list
724 ;; last_complete_sexp string_terminator_or_nil inside_commentp
725 ;; following_quotep minimum_paren-depth_this_scan)
726 ;; Parsing stops if depth in parentheses becomes equal to third arg.
727 (setq containing-sexp (nth 1 state)))
728 (cond ((nth 3 state) state) ; In a quoted string?
729 ((null containing-sexp) ; Line is at top level.
730 (skip-chars-forward " \t\f")
731 (if (= (following-char) ?{)
732 0 ; move to beginning of line if it starts a function body
733 ;; indent a little if this is a continuation line
734 (perl-backward-to-noncomment)
735 (if (or (bobp)
736 (memq (preceding-char) '(?\; ?\})))
737 0 perl-continued-statement-offset)))
738 ((/= (char-after containing-sexp) ?{)
739 ;; line is expression, not statement:
740 ;; indent to just after the surrounding open.
741 (goto-char (1+ containing-sexp))
742 (if (perl-hanging-paren-p)
743 ;; We're indenting an arg of a call like:
744 ;; $a = foobarlongnamefun (
745 ;; arg1
746 ;; arg2
747 ;; );
748 (progn
749 (skip-syntax-backward "(")
750 (condition-case err
751 (while (save-excursion
752 (skip-syntax-backward " ") (not (bolp)))
753 (forward-sexp -1))
754 (scan-error nil))
755 (+ (current-column) perl-indent-level))
756 (if perl-indent-continued-arguments
757 (+ perl-indent-continued-arguments (current-indentation))
758 (skip-chars-forward " \t")
759 (current-column))))
760 (t
761 ;; Statement level. Is it a continuation or a new statement?
762 (if (perl-continuation-line-p containing-sexp)
763 ;; This line is continuation of preceding line's statement;
764 ;; indent perl-continued-statement-offset more than the
765 ;; previous line of the statement.
766 (progn
767 (perl-backward-to-start-of-continued-exp containing-sexp)
768 (+ (if (save-excursion
769 (perl-continuation-line-p containing-sexp))
770 ;; If the continued line is itself a continuation
771 ;; line, then align, otherwise add an offset.
772 0 perl-continued-statement-offset)
773 (current-column)
774 (if (save-excursion (goto-char indent-point)
775 (looking-at "[ \t]*{"))
776 perl-continued-brace-offset 0)))
777 ;; This line starts a new statement.
778 ;; Position at last unclosed open.
779 (goto-char containing-sexp)
780 (or
781 ;; Is line first statement after an open-brace?
782 ;; If no, find that first statement and indent like it.
783 (save-excursion
784 (forward-char 1)
785 ;; Skip over comments and labels following openbrace.
786 (while (progn
787 (skip-chars-forward " \t\f\n")
788 (cond ((looking-at ";?#")
789 (forward-line 1) t)
790 ((looking-at "\\(\\w\\|\\s_\\)+:[^:]")
791 (save-excursion
792 (end-of-line)
793 (setq colon-line-end (point)))
794 (search-forward ":")))))
795 ;; The first following code counts
796 ;; if it is before the line we want to indent.
797 (and (< (point) indent-point)
798 (if (> colon-line-end (point))
799 (- (current-indentation) perl-label-offset)
800 (current-column))))
801 ;; If no previous statement,
802 ;; indent it relative to line brace is on.
803 ;; For open paren in column zero, don't let statement
804 ;; start there too. If perl-indent-level is zero,
805 ;; use perl-brace-offset + perl-continued-statement-offset
806 ;; For open-braces not the first thing in a line,
807 ;; add in perl-brace-imaginary-offset.
808 (+ (if (and (bolp) (zerop perl-indent-level))
809 (+ perl-brace-offset perl-continued-statement-offset)
810 perl-indent-level)
811 ;; Move back over whitespace before the openbrace.
812 ;; If openbrace is not first nonwhite thing on the line,
813 ;; add the perl-brace-imaginary-offset.
814 (progn (skip-chars-backward " \t")
815 (if (bolp) 0 perl-brace-imaginary-offset))
816 ;; If the openbrace is preceded by a parenthesized exp,
817 ;; move to the beginning of that;
818 ;; possibly a different line
819 (progn
820 (if (eq (preceding-char) ?\))
821 (forward-sexp -1))
822 ;; Get initial indentation of the line we are on.
823 (current-indentation))))))))))
824
825 (defun perl-backward-to-noncomment ()
826 "Move point backward to after the first non-white-space, skipping comments."
827 (interactive)
828 (forward-comment (- (point-max))))
829
830 (defun perl-backward-to-start-of-continued-exp (lim)
831 (if (= (preceding-char) ?\))
832 (forward-sexp -1))
833 (beginning-of-line)
834 (if (<= (point) lim)
835 (goto-char (1+ lim)))
836 (skip-chars-forward " \t\f"))
837 \f
838 ;; note: this may be slower than the c-mode version, but I can understand it.
839 (defalias 'indent-perl-exp 'perl-indent-exp)
840 (defun perl-indent-exp ()
841 "Indent each line of the Perl grouping following point."
842 (interactive)
843 (let* ((case-fold-search nil)
844 (oldpnt (point-marker))
845 (bof-mark (save-excursion
846 (end-of-line 2)
847 (perl-beginning-of-function)
848 (point-marker)))
849 eol last-mark lsexp-mark delta)
850 (if (= (char-after (marker-position bof-mark)) ?=)
851 (message "Can't indent a format statement")
852 (message "Indenting Perl expression...")
853 (save-excursion (end-of-line) (setq eol (point)))
854 (save-excursion ; locate matching close paren
855 (while (and (not (eobp)) (<= (point) eol))
856 (parse-partial-sexp (point) (point-max) 0))
857 (setq last-mark (point-marker)))
858 (setq lsexp-mark bof-mark)
859 (beginning-of-line)
860 (while (< (point) (marker-position last-mark))
861 (setq delta (perl-indent-line nil (marker-position bof-mark)))
862 (if (numberp delta) ; unquoted start-of-line?
863 (progn
864 (if (eolp)
865 (delete-horizontal-space))
866 (setq lsexp-mark (point-marker))))
867 (end-of-line)
868 (setq eol (point))
869 (if (nth 4 (parse-partial-sexp (marker-position lsexp-mark) eol))
870 (progn ; line ends in a comment
871 (beginning-of-line)
872 (if (or (not (looking-at "\\s-*;?#"))
873 (listp delta)
874 (and (/= 0 delta)
875 (= (- (current-indentation) delta) comment-column)))
876 (if (and comment-start-skip
877 (re-search-forward comment-start-skip eol t))
878 (indent-for-comment))))) ; indent existing comment
879 (forward-line 1))
880 (goto-char (marker-position oldpnt))
881 (message "Indenting Perl expression...done"))))
882 \f
883 (defun perl-beginning-of-function (&optional arg)
884 "Move backward to next beginning-of-function, or as far as possible.
885 With argument, repeat that many times; negative args move forward.
886 Returns new value of point in all cases."
887 (interactive "p")
888 (or arg (setq arg 1))
889 (if (< arg 0) (forward-char 1))
890 (and (/= arg 0)
891 (re-search-backward "^\\s(\\|^\\s-*sub\\b[^{]+{\\|^\\s-*format\\b[^=]*=\\|^\\."
892 nil 'move arg)
893 (goto-char (1- (match-end 0))))
894 (point))
895
896 ;; note: this routine is adapted directly from emacs lisp.el, end-of-defun;
897 ;; no bugs have been removed :-)
898 (defun perl-end-of-function (&optional arg)
899 "Move forward to next end-of-function.
900 The end of a function is found by moving forward from the beginning of one.
901 With argument, repeat that many times; negative args move backward."
902 (interactive "p")
903 (or arg (setq arg 1))
904 (let ((first t))
905 (while (and (> arg 0) (< (point) (point-max)))
906 (let ((pos (point)))
907 (while (progn
908 (if (and first
909 (progn
910 (forward-char 1)
911 (perl-beginning-of-function 1)
912 (not (bobp))))
913 nil
914 (or (bobp) (forward-char -1))
915 (perl-beginning-of-function -1))
916 (setq first nil)
917 (forward-list 1)
918 (skip-chars-forward " \t")
919 (if (looking-at "[#\n]")
920 (forward-line 1))
921 (<= (point) pos))))
922 (setq arg (1- arg)))
923 (while (< arg 0)
924 (let ((pos (point)))
925 (perl-beginning-of-function 1)
926 (forward-sexp 1)
927 (forward-line 1)
928 (if (>= (point) pos)
929 (if (progn (perl-beginning-of-function 2) (not (bobp)))
930 (progn
931 (forward-list 1)
932 (skip-chars-forward " \t")
933 (if (looking-at "[#\n]")
934 (forward-line 1)))
935 (goto-char (point-min)))))
936 (setq arg (1+ arg)))))
937
938 (defalias 'mark-perl-function 'perl-mark-function)
939 (defun perl-mark-function ()
940 "Put mark at end of Perl function, point at beginning."
941 (interactive)
942 (push-mark (point))
943 (perl-end-of-function)
944 (push-mark (point))
945 (perl-beginning-of-function)
946 (backward-paragraph))
947
948 (provide 'perl-mode)
949
950 ;; arch-tag: 8c7ff68d-15f3-46a2-ade2-b7c41f176826
951 ;;; perl-mode.el ends here