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