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