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