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
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)
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.
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))
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 ;; 1) Regular expression delimiters do not act as quotes, so special
70 ;; characters such as `'"#:;[](){} may need to be backslashed
71 ;; in regular expressions and in both parts of s/// and tr///.
72 ;; 2) The globbing syntax <pattern> is not recognized, so special
73 ;; characters in the pattern string must be backslashed.
74 ;; 3) The q, qq, and << quoting operators are not recognized; see below.
75 ;; 5) To make '$' work correctly, $' is not recognized as a variable.
76 ;; Use "$'" or $POSTMATCH instead.
77 ;; 7) When ' (quote) is used as a package name separator, perl-mode
78 ;; doesn't understand, and thinks it is seeing a quoted string.
80 ;; If you don't use font-lock, additional problems will appear:
81 ;; 5) To make variables such a $' and $#array work, perl-mode treats
82 ;; $ just like backslash, so '$' is not treated correctly.
83 ;; 6) Unfortunately, treating $ like \ makes ${var} be treated as an
84 ;; unmatched }. See below.
86 ;; Here are some ugly tricks to bypass some of these problems: the perl
87 ;; expression /`/ (that's a back-tick) usually evaluates harmlessly,
88 ;; but will trick perl-mode into starting a quoted string, which
89 ;; can be ended with another /`/. Assuming you have no embedded
90 ;; back-ticks, this can used to help solve problem 3:
92 ;; /`/; $ugly = q?"'$?; /`/;
94 ;; Problem 7 is even worse, but this 'fix' does work :-(
101 (eval-when-compile (require 'cl
))
104 "Major mode for editing Perl code."
108 (defvar perl-mode-abbrev-table nil
109 "Abbrev table in use in perl-mode buffers.")
110 (define-abbrev-table 'perl-mode-abbrev-table
())
112 (defvar perl-mode-map
113 (let ((map (make-sparse-keymap)))
114 (define-key map
"{" 'perl-electric-terminator
)
115 (define-key map
"}" 'perl-electric-terminator
)
116 (define-key map
";" 'perl-electric-terminator
)
117 (define-key map
":" 'perl-electric-terminator
)
118 (define-key map
"\e\C-a" 'perl-beginning-of-function
)
119 (define-key map
"\e\C-e" 'perl-end-of-function
)
120 (define-key map
"\e\C-h" 'perl-mark-function
)
121 (define-key map
"\e\C-q" 'perl-indent-exp
)
122 (define-key map
"\177" 'backward-delete-char-untabify
)
123 (define-key map
"\t" 'perl-indent-command
)
125 "Keymap used in Perl mode.")
127 (autoload 'c-macro-expand
"cmacexp"
128 "Display the result of expanding all C macros occurring in the region.
129 The expansion is entirely correct because it uses the C preprocessor."
132 (defvar perl-mode-syntax-table
133 (let ((st (make-syntax-table (standard-syntax-table))))
134 (modify-syntax-entry ?
\n ">" st
)
135 (modify-syntax-entry ?
# "<" st
)
136 (modify-syntax-entry ?$
"/" st
)
137 (modify-syntax-entry ?%
"." st
)
138 (modify-syntax-entry ?
& "." st
)
139 (modify-syntax-entry ?
\' "\"" st
)
140 (modify-syntax-entry ?
* "." st
)
141 (modify-syntax-entry ?
+ "." st
)
142 (modify-syntax-entry ?-
"." st
)
143 (modify-syntax-entry ?
/ "." st
)
144 (modify-syntax-entry ?
< "." st
)
145 (modify-syntax-entry ?
= "." st
)
146 (modify-syntax-entry ?
> "." st
)
147 (modify-syntax-entry ?
\\ "\\" st
)
148 (modify-syntax-entry ?
` "\"" st
)
149 (modify-syntax-entry ?|
"." st
)
151 "Syntax table in use in `perl-mode' buffers.")
153 (defvar perl-imenu-generic-expression
155 (nil "^sub\\s-+\\([-A-Za-z0-9+_:]+\\)\\(\\s-\\|\n\\)*{" 1 )
157 ("Variables" "^\\([$@%][-A-Za-z0-9+_:]+\\)\\s-*=" 1 )
158 ("Packages" "^package\\s-+\\([-A-Za-z0-9+_:]+\\);" 1 ))
159 "Imenu generic expression for Perl mode. See `imenu-generic-expression'.")
161 ;; Regexps updated with help from Tom Tromey <tromey@cambric.colorado.edu> and
162 ;; Jim Campbell <jec@murzim.ca.boeing.com>.
164 (defconst perl-font-lock-keywords-1
165 '(;; What is this for?
166 ;;("\\(--- .* ---\\|=== .* ===\\)" . font-lock-string-face)
168 ;; Fontify preprocessor statements as we do in `c-font-lock-keywords'.
169 ;; Ilya Zakharevich <ilya@math.ohio-state.edu> thinks this is a bad idea.
170 ;; ("^#[ \t]*include[ \t]+\\(<[^>\"\n]+>\\)" 1 font-lock-string-face)
171 ;; ("^#[ \t]*define[ \t]+\\(\\sw+\\)(" 1 font-lock-function-name-face)
173 ;; ("\\<\\(defined\\)\\>[ \t]*(?\\(\\sw+\\)?" nil nil
174 ;; (1 font-lock-constant-face) (2 font-lock-variable-name-face nil t)))
175 ;; ("^#[ \t]*\\(\\sw+\\)\\>[ \t]*\\(\\sw+\\)?"
176 ;; (1 font-lock-constant-face) (2 font-lock-variable-name-face nil t))
178 ;; Fontify function and package names in declarations.
179 ("\\<\\(package\\|sub\\)\\>[ \t]*\\(\\sw+\\)?"
180 (1 font-lock-keyword-face
) (2 font-lock-function-name-face nil t
))
181 ("\\<\\(import\\|no\\|require\\|use\\)\\>[ \t]*\\(\\sw+\\)?"
182 (1 font-lock-keyword-face
) (2 font-lock-constant-face nil t
)))
183 "Subdued level highlighting for Perl mode.")
185 (defconst perl-font-lock-keywords-2
186 (append perl-font-lock-keywords-1
189 ;; Fontify keywords, except those fontified otherwise.
190 ; (make-regexp '("if" "until" "while" "elsif" "else" "unless" "do" "dump"
191 ; "for" "foreach" "exit" "die"
192 ; "BEGIN" "END" "return" "exec" "eval"))
194 "BEGIN\\|END\\|d\\(ie\\|o\\|ump\\)\\|"
195 "e\\(ls\\(e\\|if\\)\\|val\\|x\\(ec\\|it\\)\\)\\|"
196 "for\\(\\|each\\)\\|if\\|return\\|un\\(less\\|til\\)\\|while"
199 ;; Fontify local and my keywords as types.
200 '("\\<\\(local\\|my\\)\\>" . font-lock-type-face
)
202 ;; Fontify function, variable and file name references.
203 '("&\\(\\sw+\\)" 1 font-lock-function-name-face
)
204 ;; Additionally underline non-scalar variables. Maybe this is a bad idea.
205 ;;'("[$@%*][#{]?\\(\\sw+\\)" 1 font-lock-variable-name-face)
206 '("[$*]{?\\(\\sw+\\)" 1 font-lock-variable-name-face
)
207 '("\\([@%]\\|\\$#\\)\\(\\sw+\\)"
208 (2 (cons font-lock-variable-name-face
'(underline))))
209 '("<\\(\\sw+\\)>" 1 font-lock-constant-face
)
211 ;; Fontify keywords with/and labels as we do in `c++-font-lock-keywords'.
212 '("\\<\\(continue\\|goto\\|last\\|next\\|redo\\)\\>[ \t]*\\(\\sw+\\)?"
213 (1 font-lock-keyword-face
) (2 font-lock-constant-face nil t
))
214 '("^[ \t]*\\(\\sw+\\)[ \t]*:[^:]" 1 font-lock-constant-face
)))
215 "Gaudy level highlighting for Perl mode.")
217 (defvar perl-font-lock-keywords perl-font-lock-keywords-1
218 "Default expressions to highlight in Perl mode.")
220 (defvar perl-font-lock-syntactic-keywords
221 ;; Turn POD into b-style comments
222 '(("^\\(=\\)\\(head1\\|pod\\)\\([ \t]\\|$\\)" (1 "< b"))
223 ("^=cut[ \t]*\\(\n\\)" (1 "> b"))
224 ;; Catch ${ so that ${var} doesn't screw up indentation.
225 ("\\(\\$\\)[{']" (1 "."))))
227 (defun perl-font-lock-syntactic-face-function (state)
229 font-lock-string-face
230 (if (nth 7 state
) font-lock-doc-face font-lock-comment-face
)))
232 (defcustom perl-indent-level
4
233 "*Indentation of Perl statements with respect to containing block."
236 (defcustom perl-continued-statement-offset
4
237 "*Extra indent for lines not starting new statements."
240 (defcustom perl-continued-brace-offset -
4
241 "*Extra indent for substatements that start with open-braces.
242 This is in addition to `perl-continued-statement-offset'."
245 (defcustom perl-brace-offset
0
246 "*Extra indentation for braces, compared with other text in same context."
249 (defcustom perl-brace-imaginary-offset
0
250 "*Imagined indentation of an open brace that actually follows a statement."
253 (defcustom perl-label-offset -
2
254 "*Offset of Perl label lines relative to usual indentation."
257 (defcustom perl-indent-continued-arguments nil
258 "*If non-nil offset of argument lines relative to usual indentation.
259 If nil, continued arguments are aligned with the first argument."
260 :type
'(choice integer
(const nil
))
263 (defcustom perl-tab-always-indent t
264 "*Non-nil means TAB in Perl mode always indents the current line.
265 Otherwise it inserts a tab character if you type it past the first
266 nonwhite character on the line."
270 ;; I changed the default to nil for consistency with general Emacs
271 ;; conventions -- rms.
272 (defcustom perl-tab-to-comment nil
273 "*Non-nil means TAB moves to eol or makes a comment in some cases.
274 For lines which don't need indenting, TAB either indents an
275 existing comment, moves to end-of-line, or if at end-of-line already,
276 create a new comment."
280 (defcustom perl-nochange
";?#\\|\f\\|\\s(\\|\\(\\w\\|\\s_\\)+:"
281 "*Lines starting with this regular expression are not auto-indented."
287 "Major mode for editing Perl code.
288 Expression and list commands understand all Perl brackets.
289 Tab indents for Perl code.
290 Comments are delimited with # ... \\n.
291 Paragraphs are separated by blank lines only.
292 Delete converts tabs to spaces as it moves back.
294 Variables controlling indentation style:
295 `perl-tab-always-indent'
296 Non-nil means TAB in Perl mode should always indent the current line,
297 regardless of where in the line point is when the TAB command is used.
298 `perl-tab-to-comment'
299 Non-nil means that for lines which don't need indenting, TAB will
300 either delete an empty comment, indent an existing comment, move
301 to end-of-line, or if at end-of-line already, create a new comment.
303 Lines starting with this regular expression are not auto-indented.
305 Indentation of Perl statements within surrounding block.
306 The surrounding block's indentation is the indentation
307 of the line on which the open-brace appears.
308 `perl-continued-statement-offset'
309 Extra indentation given to a substatement, such as the
310 then-clause of an if or body of a while.
311 `perl-continued-brace-offset'
312 Extra indentation given to a brace that starts a substatement.
313 This is in addition to `perl-continued-statement-offset'.
315 Extra indentation for line if it starts with an open brace.
316 `perl-brace-imaginary-offset'
317 An open brace following other text is treated as if it were
318 this far to the right of the start of its line.
320 Extra indentation for line that is a label.
321 `perl-indent-continued-arguments'
322 Offset of argument lines relative to usual indentation.
324 Various indentation styles: K&R BSD BLK GNU LW
325 perl-indent-level 5 8 0 2 4
326 perl-continued-statement-offset 5 8 4 2 4
327 perl-continued-brace-offset 0 0 0 0 -4
328 perl-brace-offset -5 -8 0 0 0
329 perl-brace-imaginary-offset 0 0 4 0 0
330 perl-label-offset -5 -8 -2 -2 -2
332 Turning on Perl mode runs the normal hook `perl-mode-hook'."
334 (kill-all-local-variables)
335 (use-local-map perl-mode-map
)
336 (setq major-mode
'perl-mode
)
337 (setq mode-name
"Perl")
338 (setq local-abbrev-table perl-mode-abbrev-table
)
339 (set-syntax-table perl-mode-syntax-table
)
340 (make-local-variable 'paragraph-start
)
341 (setq paragraph-start
(concat "$\\|" page-delimiter
))
342 (make-local-variable 'paragraph-separate
)
343 (setq paragraph-separate paragraph-start
)
344 (make-local-variable 'paragraph-ignore-fill-prefix
)
345 (setq paragraph-ignore-fill-prefix t
)
346 (make-local-variable 'indent-line-function
)
347 (setq indent-line-function
'perl-indent-line
)
348 (make-local-variable 'require-final-newline
)
349 (setq require-final-newline t
)
350 (make-local-variable 'comment-start
)
351 (setq comment-start
"# ")
352 (make-local-variable 'comment-end
)
353 (setq comment-end
"")
354 (make-local-variable 'comment-start-skip
)
355 (setq comment-start-skip
"\\(^\\|\\s-\\);?#+ *")
356 (make-local-variable 'comment-indent-function
)
357 (setq comment-indent-function
'perl-comment-indent
)
358 (make-local-variable 'parse-sexp-ignore-comments
)
359 (setq parse-sexp-ignore-comments t
)
360 ;; Tell font-lock.el how to handle Perl.
361 (setq font-lock-defaults
'((perl-font-lock-keywords
362 perl-font-lock-keywords-1
363 perl-font-lock-keywords-2
)
364 nil nil
((?\_ .
"w")) nil
365 (font-lock-syntactic-keywords
366 . perl-font-lock-syntactic-keywords
)
367 (font-lock-syntactic-face-function
368 . perl-font-lock-syntactic-face-function
)
369 (parse-sexp-lookup-properties . t
)))
370 ;; Tell imenu how to handle Perl.
371 (make-local-variable 'imenu-generic-expression
)
372 (setq imenu-generic-expression perl-imenu-generic-expression
)
373 (setq imenu-case-fold-search nil
)
374 (run-hooks 'perl-mode-hook
))
376 ;; This is used by indent-for-comment
377 ;; to decide how much to indent a comment in Perl code
378 ;; based on its context.
379 (defun perl-comment-indent ()
380 (if (and (bolp) (not (eolp)))
381 0 ;Existing comment at bol stays there.
384 (defalias 'electric-perl-terminator
'perl-electric-terminator
)
385 (defun perl-electric-terminator (arg)
386 "Insert character and adjust indentation.
387 If at end-of-line, and not in a comment or a quote, correct the's indentation."
389 (let ((insertpos (point)))
390 (and (not arg
) ; decide whether to indent
394 (and (not ; eliminate comments quickly
395 (and comment-start-skip
396 (re-search-forward comment-start-skip insertpos t
)) )
397 (or (/= last-command-char ?
:)
398 ;; Colon is special only after a label ....
399 (looking-at "\\s-*\\(\\w\\|\\s_\\)+$"))
400 (let ((pps (parse-partial-sexp
401 (perl-beginning-of-function) insertpos
)))
402 (not (or (nth 3 pps
) (nth 4 pps
) (nth 5 pps
))))))
403 (progn ; must insert, indent, delete
404 (insert-char last-command-char
1)
407 (self-insert-command (prefix-numeric-value arg
)))
409 ;; not used anymore, but may be useful someday:
410 ;;(defun perl-inside-parens-p ()
411 ;; (condition-case ()
414 ;; (narrow-to-region (point)
415 ;; (perl-beginning-of-function))
416 ;; (goto-char (point-max))
417 ;; (= (char-after (or (scan-lists (point) -1 1) (point-min))) ?\()))
420 (defun perl-indent-command (&optional arg
)
421 "Indent current line as Perl code, or optionally, insert a tab character.
423 With an argument, indent the current line, regardless of other options.
425 If `perl-tab-always-indent' is nil and point is not in the indentation
426 area at the beginning of the line, simply insert a tab.
428 Otherwise, indent the current line. If point was within the indentation
429 area it is moved to the end of the indentation area. If the line was
430 already indented properly and point was not within the indentation area,
431 and if `perl-tab-to-comment' is non-nil (the default), then do the first
432 possible action from the following list:
434 1) delete an empty comment
435 2) move forward to start of comment, indenting if necessary
436 3) move forward to end of line
437 4) create an empty comment
438 5) move backward to start of comment, indenting if necessary."
440 (if arg
; If arg, just indent this line
441 (perl-indent-line "\f")
442 (if (and (not perl-tab-always-indent
)
443 (> (current-column) (current-indentation)))
445 (let* ((oldpnt (point))
446 (lsexp (progn (beginning-of-line) (point)))
447 (bof (perl-beginning-of-function))
450 (perl-indent-line "\f\\|;?#" bof
))))
451 (and perl-tab-to-comment
452 (= oldpnt
(point)) ; done if point moved
453 (if (listp delta
) ; if line starts in a quoted string
454 (setq lsexp
(or (nth 2 delta
) bof
))
455 (= delta
0)) ; done if indenting occurred
456 (let ((eol (progn (end-of-line) (point)))
458 (if (= (char-after bof
) ?
=)
460 (message "In a format statement"))
461 (setq state
(parse-partial-sexp lsexp eol
))
463 (if (= oldpnt eol
) ; already at eol in a string
464 (message "In a string which starts with a %c."
466 (if (not (nth 4 state
))
467 (if (= oldpnt eol
) ; no comment, create one?
468 (indent-for-comment))
470 (if (and comment-start-skip
471 (re-search-forward comment-start-skip eol
'move
))
473 (progn ; kill existing comment
474 (goto-char (match-beginning 0))
475 (skip-chars-backward " \t")
476 (kill-region (point) eol
))
477 (if (or (< oldpnt
(point)) (= oldpnt eol
))
478 (indent-for-comment) ; indent existing comment
482 (message "Use backslash to quote # characters.")
485 (defun perl-indent-line (&optional nochange parse-start
)
486 "Indent current line as Perl code.
487 Return the amount the indentation
488 changed by, or (parse-state) if line starts in a quoted string."
489 (let ((case-fold-search nil
)
490 (pos (- (point-max) (point)))
491 (bof (or parse-start
(save-excursion (perl-beginning-of-function))))
492 beg indent shift-amt
)
496 (cond ((eq (char-after bof
) ?
=) 0)
497 ((listp (setq indent
(perl-calculate-indent bof
))) indent
)
498 ((looking-at (or nochange perl-nochange
)) 0)
500 (skip-chars-forward " \t\f")
501 (cond ((looking-at "\\(\\w\\|\\s_\\)+:[^:]")
502 (setq indent
(max 1 (+ indent perl-label-offset
))))
503 ((= (following-char) ?
})
504 (setq indent
(- indent perl-indent-level
)))
505 ((= (following-char) ?
{)
506 (setq indent
(+ indent perl-brace-offset
))))
507 (- indent
(current-column)))))
508 (skip-chars-forward " \t\f")
509 (if (and (numberp shift-amt
) (/= 0 shift-amt
))
510 (progn (delete-region beg
(point))
512 ;; If initial point was within line's indentation,
513 ;; position after the indentation. Else stay at same point in text.
514 (if (> (- (point-max) pos
) (point))
515 (goto-char (- (point-max) pos
)))
518 (defun perl-continuation-line-p (limit)
519 "Move to end of previous line and return non-nil if continued."
520 ;; Statement level. Is it a continuation or a new statement?
521 ;; Find previous non-comment character.
522 (perl-backward-to-noncomment)
523 ;; Back up over label lines, since they don't
524 ;; affect whether our line is a continuation.
525 (while (or (eq (preceding-char) ?\
,)
526 (and (eq (preceding-char) ?
:)
527 (memq (char-syntax (char-after (- (point) 2)))
529 (if (eq (preceding-char) ?\
,)
530 (perl-backward-to-start-of-continued-exp limit
)
532 (perl-backward-to-noncomment))
533 ;; Now we get the answer.
534 (not (memq (preceding-char) '(?\
; ?\} ?\{))))
536 (defun perl-calculate-indent (&optional parse-start
)
537 "Return appropriate indentation for current line as Perl code.
538 In usual case returns an integer: the column to indent to.
539 Returns (parse-state) if line starts inside a string."
542 (let ((indent-point (point))
543 (case-fold-search nil
)
545 state containing-sexp
)
546 (if parse-start
;used to avoid searching
547 (goto-char parse-start
)
548 (perl-beginning-of-function))
549 ;; We might be now looking at a local function that has nothing to
550 ;; do with us because `indent-point' is past it. In this case
551 ;; look further back up for another `perl-beginning-of-function'.
552 (while (and (looking-at "{")
555 (looking-at "\\s-+sub\\>"))
556 (> indent-point
(save-excursion (forward-sexp 1) (point))))
557 (perl-beginning-of-function))
558 (while (< (point) indent-point
) ;repeat until right sexp
559 (setq state
(parse-partial-sexp (point) indent-point
0))
560 ; state = (depth_in_parens innermost_containing_list last_complete_sexp
561 ; string_terminator_or_nil inside_commentp following_quotep
562 ; minimum_paren-depth_this_scan)
563 ; Parsing stops if depth in parentheses becomes equal to third arg.
564 (setq containing-sexp
(nth 1 state
)))
565 (cond ((nth 3 state
) state
) ; In a quoted string?
566 ((null containing-sexp
) ; Line is at top level.
567 (skip-chars-forward " \t\f")
568 (if (= (following-char) ?
{)
569 0 ; move to beginning of line if it starts a function body
570 ;; indent a little if this is a continuation line
571 (perl-backward-to-noncomment)
573 (memq (preceding-char) '(?\
; ?\})))
574 0 perl-continued-statement-offset
)))
575 ((/= (char-after containing-sexp
) ?
{)
576 ;; line is expression, not statement:
577 ;; indent to just after the surrounding open.
578 (goto-char (1+ containing-sexp
))
579 (if perl-indent-continued-arguments
580 (+ perl-indent-continued-arguments
(current-indentation))
581 (skip-chars-forward " \t")
584 ;; Statement level. Is it a continuation or a new statement?
585 (if (perl-continuation-line-p containing-sexp
)
586 ;; This line is continuation of preceding line's statement;
587 ;; indent perl-continued-statement-offset more than the
588 ;; previous line of the statement.
590 (perl-backward-to-start-of-continued-exp containing-sexp
)
591 (+ (if (save-excursion
592 (perl-continuation-line-p containing-sexp
))
593 ;; If the continued line is itself a continuation
594 ;; line, then align, otherwise add an offset.
595 0 perl-continued-statement-offset
)
597 (if (save-excursion (goto-char indent-point
)
598 (looking-at "[ \t]*{"))
599 perl-continued-brace-offset
0)))
600 ;; This line starts a new statement.
601 ;; Position at last unclosed open.
602 (goto-char containing-sexp
)
604 ;; If open paren is in col 0, close brace is special
606 (save-excursion (goto-char indent-point
)
607 (looking-at "[ \t]*}"))
609 ;; Is line first statement after an open-brace?
610 ;; If no, find that first statement and indent like it.
613 ;; Skip over comments and labels following openbrace.
615 (skip-chars-forward " \t\f\n")
616 (cond ((looking-at ";?#")
618 ((looking-at "\\(\\w\\|\\s_\\)+:")
621 (setq colon-line-end
(point)))
622 (search-forward ":")))))
623 ;; The first following code counts
624 ;; if it is before the line we want to indent.
625 (and (< (point) indent-point
)
626 (if (> colon-line-end
(point))
627 (- (current-indentation) perl-label-offset
)
629 ;; If no previous statement,
630 ;; indent it relative to line brace is on.
631 ;; For open paren in column zero, don't let statement
632 ;; start there too. If perl-indent-level is zero,
633 ;; use perl-brace-offset + perl-continued-statement-offset
634 ;; For open-braces not the first thing in a line,
635 ;; add in perl-brace-imaginary-offset.
636 (+ (if (and (bolp) (zerop perl-indent-level
))
637 (+ perl-brace-offset perl-continued-statement-offset
)
639 ;; Move back over whitespace before the openbrace.
640 ;; If openbrace is not first nonwhite thing on the line,
641 ;; add the perl-brace-imaginary-offset.
642 (progn (skip-chars-backward " \t")
643 (if (bolp) 0 perl-brace-imaginary-offset
))
644 ;; If the openbrace is preceded by a parenthesized exp,
645 ;; move to the beginning of that;
646 ;; possibly a different line
648 (if (eq (preceding-char) ?\
))
650 ;; Get initial indentation of the line we are on.
651 (current-indentation))))))))))
653 (defun perl-backward-to-noncomment ()
654 "Move point backward to after the first non-white-space, skipping comments."
655 (interactive) ;why?? -stef
656 (forward-comment (- (point-max))))
658 (defun perl-backward-to-start-of-continued-exp (lim)
659 (if (= (preceding-char) ?\
))
663 (goto-char (1+ lim
)))
664 (skip-chars-forward " \t\f"))
666 ;; note: this may be slower than the c-mode version, but I can understand it.
667 (defalias 'indent-perl-exp
'perl-indent-exp
)
668 (defun perl-indent-exp ()
669 "Indent each line of the Perl grouping following point."
671 (let* ((case-fold-search nil
)
672 (oldpnt (point-marker))
673 (bof-mark (save-excursion
675 (perl-beginning-of-function)
677 eol last-mark lsexp-mark delta
)
678 (if (= (char-after (marker-position bof-mark
)) ?
=)
679 (message "Can't indent a format statement")
680 (message "Indenting Perl expression...")
681 (save-excursion (end-of-line) (setq eol
(point)))
682 (save-excursion ; locate matching close paren
683 (while (and (not (eobp)) (<= (point) eol
))
684 (parse-partial-sexp (point) (point-max) 0))
685 (setq last-mark
(point-marker)))
686 (setq lsexp-mark bof-mark
)
688 (while (< (point) (marker-position last-mark
))
689 (setq delta
(perl-indent-line nil
(marker-position bof-mark
)))
690 (if (numberp delta
) ; unquoted start-of-line?
693 (delete-horizontal-space))
694 (setq lsexp-mark
(point-marker))))
697 (if (nth 4 (parse-partial-sexp (marker-position lsexp-mark
) eol
))
698 (progn ; line ends in a comment
700 (if (or (not (looking-at "\\s-*;?#"))
703 (= (- (current-indentation) delta
) comment-column
)))
704 (if (and comment-start-skip
705 (re-search-forward comment-start-skip eol t
))
706 (indent-for-comment))))) ; indent existing comment
708 (goto-char (marker-position oldpnt
))
709 (message "Indenting Perl expression...done"))))
711 (defun perl-beginning-of-function (&optional arg
)
712 "Move backward to next beginning-of-function, or as far as possible.
713 With argument, repeat that many times; negative args move forward.
714 Returns new value of point in all cases."
716 (or arg
(setq arg
1))
717 (if (< arg
0) (forward-char 1))
719 (re-search-backward "^\\s(\\|^\\s-*sub\\b[^{]+{\\|^\\s-*format\\b[^=]*=\\|^\\."
721 (goto-char (1- (match-end 0))))
724 ;; note: this routine is adapted directly from emacs lisp.el, end-of-defun;
725 ;; no bugs have been removed :-)
726 (defun perl-end-of-function (&optional arg
)
727 "Move forward to next end-of-function.
728 The end of a function is found by moving forward from the beginning of one.
729 With argument, repeat that many times; negative args move backward."
731 (or arg
(setq arg
1))
733 (while (and (> arg
0) (< (point) (point-max)))
734 (let ((pos (point)) npos
)
739 (perl-beginning-of-function 1)
742 (or (bobp) (forward-char -
1))
743 (perl-beginning-of-function -
1))
746 (skip-chars-forward " \t")
747 (if (looking-at "[#\n]")
753 (perl-beginning-of-function 1)
757 (if (progn (perl-beginning-of-function 2) (not (bobp)))
760 (skip-chars-forward " \t")
761 (if (looking-at "[#\n]")
763 (goto-char (point-min)))))
764 (setq arg
(1+ arg
)))))
766 (defalias 'mark-perl-function
'perl-mark-function
)
767 (defun perl-mark-function ()
768 "Put mark at end of Perl function, point at beginning."
771 (perl-end-of-function)
773 (perl-beginning-of-function)
774 (backward-paragraph))
778 ;;; perl-mode.el ends here