Mercurial > emacs
annotate lisp/progmodes/perl-mode.el @ 40351:a44d4a7dd8de
(internal-get-face): Use facep instead of the obsolete
internal-find-face.
(internal-frob-font-weight, internal-frob-font-slant): New
defailiases for obsolete functions.
(x-make-font-bold, x-make-font-demibold, x-make-font-unbold)
(x-make-font-italic, x-make-font-oblique, x-make-font-unitalic)
(x-make-font-bold-italic): Use internal-frob-font-weight and
internal-frob-font-slant aliases instead of the obsolete
x-frob-... functions.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Fri, 26 Oct 2001 21:16:09 +0000 |
parents | 9d258703ad61 |
children | 901d871219d0 |
rev | line source |
---|---|
789
71d052f72ac1
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
475
diff
changeset
|
1 ;;; perl-mode.el --- Perl code editing commands for GNU Emacs |
71d052f72ac1
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
475
diff
changeset
|
2 |
7300 | 3 ;; Copyright (C) 1990, 1994 Free Software Foundation, Inc. |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
814
diff
changeset
|
4 |
789
71d052f72ac1
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
475
diff
changeset
|
5 ;; Author: William F. Mann |
11370
d1dc644021a4
(perl-comment-indent): Make extra space only when
Richard M. Stallman <rms@gnu.org>
parents:
10938
diff
changeset
|
6 ;; Maintainer: FSF |
789
71d052f72ac1
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
475
diff
changeset
|
7 ;; Adapted-By: ESR |
814
38b2499cb3e9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
792
diff
changeset
|
8 ;; Keywords: languages |
789
71d052f72ac1
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
475
diff
changeset
|
9 |
475 | 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 | |
882 | 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. | |
475 | 19 |
882 | 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. | |
475 | 24 |
882 | 25 ;; You should have received a copy of the GNU General Public License |
14169 | 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. | |
475 | 29 |
789
71d052f72ac1
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
475
diff
changeset
|
30 ;;; Commentary: |
71d052f72ac1
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
475
diff
changeset
|
31 |
475 | 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-*- | |
14040 | 35 ;; With arguments to perl: |
475 | 36 ;; #!/usr/bin/perl -P- # -*-Perl-*- |
37 ;; To handle files included with do 'filename.pl';, add something like | |
9060 | 38 ;; (setq auto-mode-alist (append (list (cons "\\.pl\\'" 'perl-mode)) |
475 | 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 | |
37893
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
53 ;; to perl-electric-terminator. I changed the indenting defaults to be |
475 | 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 | |
37893
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
57 ;; zero are left there by perl-indent-exp; perl-beginning-of-function |
475 | 58 ;; goes back to the first open brace/paren in column zero, the open brace |
37893
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
59 ;; in 'sub ... {', or the equal sign in 'format ... ='; perl-indent-exp |
475 | 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 | |
792
45d748a65f24
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
789
diff
changeset
|
66 ;; Known problems (these are all caused by limitations in the Emacs Lisp |
475 | 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): | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2307
diff
changeset
|
69 ;; 1) Regular expression delimiters do not act as quotes, so special |
475 | 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. | |
38014
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
75 ;; 5) To make '$' work correctly, $' is not recognized as a variable. |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
76 ;; Use "$'" or $POSTMATCH instead. |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
77 ;; 7) When ' (quote) is used as a package name separator, perl-mode |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
78 ;; doesn't understand, and thinks it is seeing a quoted string. |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
79 ;; |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
80 ;; If you don't use font-lock, additional problems will appear: |
475 | 81 ;; 5) To make variables such a $' and $#array work, perl-mode treats |
38014
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
82 ;; $ just like backslash, so '$' is not treated correctly. |
475 | 83 ;; 6) Unfortunately, treating $ like \ makes ${var} be treated as an |
84 ;; unmatched }. See below. | |
85 | |
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: | |
91 ;; | |
92 ;; /`/; $ugly = q?"'$?; /`/; | |
93 ;; | |
94 ;; Problem 7 is even worse, but this 'fix' does work :-( | |
95 ;; $DB'stop#' | |
96 ;; [$DB'line#' | |
97 ;; ] =~ s/;9$//; | |
98 | |
789
71d052f72ac1
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
475
diff
changeset
|
99 ;;; Code: |
475 | 100 |
37893
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
101 (eval-when-compile (require 'cl)) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
102 |
20960 | 103 (defgroup perl nil |
104 "Major mode for editing Perl code." | |
105 :prefix "perl-" | |
106 :group 'languages) | |
107 | |
37893
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
108 (defvar perl-mode-map |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
109 (let ((map (make-sparse-keymap))) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
110 (define-key map "{" 'perl-electric-terminator) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
111 (define-key map "}" 'perl-electric-terminator) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
112 (define-key map ";" 'perl-electric-terminator) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
113 (define-key map ":" 'perl-electric-terminator) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
114 (define-key map "\e\C-a" 'perl-beginning-of-function) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
115 (define-key map "\e\C-e" 'perl-end-of-function) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
116 (define-key map "\e\C-h" 'perl-mark-function) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
117 (define-key map "\e\C-q" 'perl-indent-exp) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
118 (define-key map "\177" 'backward-delete-char-untabify) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
119 (define-key map "\t" 'perl-indent-command) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
120 map) |
38014
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
121 "Keymap used in Perl mode.") |
475 | 122 |
123 (autoload 'c-macro-expand "cmacexp" | |
124 "Display the result of expanding all C macros occurring in the region. | |
125 The expansion is entirely correct because it uses the C preprocessor." | |
126 t) | |
127 | |
37893
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
128 (defvar perl-mode-syntax-table |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
129 (let ((st (make-syntax-table (standard-syntax-table)))) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
130 (modify-syntax-entry ?\n ">" st) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
131 (modify-syntax-entry ?# "<" st) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
132 (modify-syntax-entry ?$ "/" st) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
133 (modify-syntax-entry ?% "." st) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
134 (modify-syntax-entry ?& "." st) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
135 (modify-syntax-entry ?\' "\"" st) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
136 (modify-syntax-entry ?* "." st) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
137 (modify-syntax-entry ?+ "." st) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
138 (modify-syntax-entry ?- "." st) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
139 (modify-syntax-entry ?/ "." st) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
140 (modify-syntax-entry ?< "." st) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
141 (modify-syntax-entry ?= "." st) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
142 (modify-syntax-entry ?> "." st) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
143 (modify-syntax-entry ?\\ "\\" st) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
144 (modify-syntax-entry ?` "\"" st) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
145 (modify-syntax-entry ?| "." st) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
146 st) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
147 "Syntax table in use in `perl-mode' buffers.") |
475 | 148 |
12677
1504d644c6bc
(perl-imenu-generic-expression) New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11370
diff
changeset
|
149 (defvar perl-imenu-generic-expression |
37893
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
150 '(;; Functions |
12677
1504d644c6bc
(perl-imenu-generic-expression) New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11370
diff
changeset
|
151 (nil "^sub\\s-+\\([-A-Za-z0-9+_:]+\\)\\(\\s-\\|\n\\)*{" 1 ) |
1504d644c6bc
(perl-imenu-generic-expression) New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11370
diff
changeset
|
152 ;;Variables |
1504d644c6bc
(perl-imenu-generic-expression) New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11370
diff
changeset
|
153 ("Variables" "^\\([$@%][-A-Za-z0-9+_:]+\\)\\s-*=" 1 ) |
37893
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
154 ("Packages" "^package\\s-+\\([-A-Za-z0-9+_:]+\\);" 1 )) |
12677
1504d644c6bc
(perl-imenu-generic-expression) New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11370
diff
changeset
|
155 "Imenu generic expression for Perl mode. See `imenu-generic-expression'.") |
1504d644c6bc
(perl-imenu-generic-expression) New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11370
diff
changeset
|
156 |
14363
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
157 ;; Regexps updated with help from Tom Tromey <tromey@cambric.colorado.edu> and |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
158 ;; Jim Campbell <jec@murzim.ca.boeing.com>. |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
159 |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
160 (defconst perl-font-lock-keywords-1 |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
161 '(;; What is this for? |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
162 ;;("\\(--- .* ---\\|=== .* ===\\)" . font-lock-string-face) |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
163 ;; |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
164 ;; Fontify preprocessor statements as we do in `c-font-lock-keywords'. |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
165 ;; Ilya Zakharevich <ilya@math.ohio-state.edu> thinks this is a bad idea. |
37893
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
166 ;; ("^#[ \t]*include[ \t]+\\(<[^>\"\n]+>\\)" 1 font-lock-string-face) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
167 ;; ("^#[ \t]*define[ \t]+\\(\\sw+\\)(" 1 font-lock-function-name-face) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
168 ;; ("^#[ \t]*if\\>" |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
169 ;; ("\\<\\(defined\\)\\>[ \t]*(?\\(\\sw+\\)?" nil nil |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
170 ;; (1 font-lock-constant-face) (2 font-lock-variable-name-face nil t))) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
171 ;; ("^#[ \t]*\\(\\sw+\\)\\>[ \t]*\\(\\sw+\\)?" |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
172 ;; (1 font-lock-constant-face) (2 font-lock-variable-name-face nil t)) |
14363
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
173 ;; |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
174 ;; Fontify function and package names in declarations. |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
175 ("\\<\\(package\\|sub\\)\\>[ \t]*\\(\\sw+\\)?" |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
176 (1 font-lock-keyword-face) (2 font-lock-function-name-face nil t)) |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
177 ("\\<\\(import\\|no\\|require\\|use\\)\\>[ \t]*\\(\\sw+\\)?" |
20953
f3f9df46d008
Changed font-lock-reference-face to font-lock-constant-face.
Simon Marshall <simon@gnu.org>
parents:
20459
diff
changeset
|
178 (1 font-lock-keyword-face) (2 font-lock-constant-face nil t))) |
14363
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
179 "Subdued level highlighting for Perl mode.") |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
180 |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
181 (defconst perl-font-lock-keywords-2 |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
182 (append perl-font-lock-keywords-1 |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
183 (list |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
184 ;; |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
185 ;; Fontify keywords, except those fontified otherwise. |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
186 ; (make-regexp '("if" "until" "while" "elsif" "else" "unless" "do" "dump" |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
187 ; "for" "foreach" "exit" "die" |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
188 ; "BEGIN" "END" "return" "exec" "eval")) |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
189 (concat "\\<\\(" |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
190 "BEGIN\\|END\\|d\\(ie\\|o\\|ump\\)\\|" |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
191 "e\\(ls\\(e\\|if\\)\\|val\\|x\\(ec\\|it\\)\\)\\|" |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
192 "for\\(\\|each\\)\\|if\\|return\\|un\\(less\\|til\\)\\|while" |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
193 "\\)\\>") |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
194 ;; |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
195 ;; Fontify local and my keywords as types. |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
196 '("\\<\\(local\\|my\\)\\>" . font-lock-type-face) |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
197 ;; |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
198 ;; Fontify function, variable and file name references. |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
199 '("&\\(\\sw+\\)" 1 font-lock-function-name-face) |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
200 ;; Additionally underline non-scalar variables. Maybe this is a bad idea. |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
201 ;;'("[$@%*][#{]?\\(\\sw+\\)" 1 font-lock-variable-name-face) |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
202 '("[$*]{?\\(\\sw+\\)" 1 font-lock-variable-name-face) |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
203 '("\\([@%]\\|\\$#\\)\\(\\sw+\\)" |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
204 (2 (cons font-lock-variable-name-face '(underline)))) |
20953
f3f9df46d008
Changed font-lock-reference-face to font-lock-constant-face.
Simon Marshall <simon@gnu.org>
parents:
20459
diff
changeset
|
205 '("<\\(\\sw+\\)>" 1 font-lock-constant-face) |
14363
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
206 ;; |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
207 ;; Fontify keywords with/and labels as we do in `c++-font-lock-keywords'. |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
208 '("\\<\\(continue\\|goto\\|last\\|next\\|redo\\)\\>[ \t]*\\(\\sw+\\)?" |
20953
f3f9df46d008
Changed font-lock-reference-face to font-lock-constant-face.
Simon Marshall <simon@gnu.org>
parents:
20459
diff
changeset
|
209 (1 font-lock-keyword-face) (2 font-lock-constant-face nil t)) |
f3f9df46d008
Changed font-lock-reference-face to font-lock-constant-face.
Simon Marshall <simon@gnu.org>
parents:
20459
diff
changeset
|
210 '("^[ \t]*\\(\\sw+\\)[ \t]*:[^:]" 1 font-lock-constant-face))) |
14363
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
211 "Gaudy level highlighting for Perl mode.") |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
212 |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
213 (defvar perl-font-lock-keywords perl-font-lock-keywords-1 |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
214 "Default expressions to highlight in Perl mode.") |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
215 |
38014
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
216 (defvar perl-font-lock-syntactic-keywords |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
217 ;; Turn POD into b-style comments |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
218 '(("^\\(=\\)\\(head1\\|pod\\)\\([ \t]\\|$\\)" (1 "< b")) |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
219 ("^=cut[ \t]*\\(\n\\)" (1 "> b")) |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
220 ;; Catch ${ so that ${var} doesn't screw up indentation. |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
221 ("\\(\\$\\)[{']" (1 ".")))) |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
222 |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
223 (defun perl-font-lock-syntactic-face-function (state) |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
224 (if (nth 3 state) |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
225 font-lock-string-face |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
226 (if (nth 7 state) font-lock-doc-face font-lock-comment-face))) |
9386
17dfca2d42e2
(perl-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9060
diff
changeset
|
227 |
20960 | 228 (defcustom perl-indent-level 4 |
229 "*Indentation of Perl statements with respect to containing block." | |
230 :type 'integer | |
231 :group 'perl) | |
232 (defcustom perl-continued-statement-offset 4 | |
233 "*Extra indent for lines not starting new statements." | |
234 :type 'integer | |
235 :group 'perl) | |
236 (defcustom perl-continued-brace-offset -4 | |
475 | 237 "*Extra indent for substatements that start with open-braces. |
20960 | 238 This is in addition to `perl-continued-statement-offset'." |
239 :type 'integer | |
240 :group 'perl) | |
241 (defcustom perl-brace-offset 0 | |
242 "*Extra indentation for braces, compared with other text in same context." | |
243 :type 'integer | |
244 :group 'perl) | |
245 (defcustom perl-brace-imaginary-offset 0 | |
246 "*Imagined indentation of an open brace that actually follows a statement." | |
247 :type 'integer | |
248 :group 'perl) | |
249 (defcustom perl-label-offset -2 | |
250 "*Offset of Perl label lines relative to usual indentation." | |
251 :type 'integer | |
252 :group 'perl) | |
39569
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
253 (defcustom perl-indent-continued-arguments nil |
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
254 "*If non-nil offset of argument lines relative to usual indentation. |
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
255 If nil, continued arguments are aligned with the first argument." |
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
256 :type '(choice integer (const nil)) |
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
257 :group 'perl) |
475 | 258 |
20960 | 259 (defcustom perl-tab-always-indent t |
5589
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
260 "*Non-nil means TAB in Perl mode always indents the current line. |
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
261 Otherwise it inserts a tab character if you type it past the first |
20960 | 262 nonwhite character on the line." |
263 :type 'boolean | |
264 :group 'perl) | |
475 | 265 |
10807
50f00b298a2d
(perl-tab-to-comment): Default is nil.
Richard M. Stallman <rms@gnu.org>
parents:
9480
diff
changeset
|
266 ;; I changed the default to nil for consistency with general Emacs |
50f00b298a2d
(perl-tab-to-comment): Default is nil.
Richard M. Stallman <rms@gnu.org>
parents:
9480
diff
changeset
|
267 ;; conventions -- rms. |
20960 | 268 (defcustom perl-tab-to-comment nil |
5589
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
269 "*Non-nil means TAB moves to eol or makes a comment in some cases. |
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
270 For lines which don't need indenting, TAB either indents an |
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
271 existing comment, moves to end-of-line, or if at end-of-line already, |
20960 | 272 create a new comment." |
273 :type 'boolean | |
274 :group 'perl) | |
475 | 275 |
20960 | 276 (defcustom perl-nochange ";?#\\|\f\\|\\s(\\|\\(\\w\\|\\s_\\)+:" |
277 "*Lines starting with this regular expression are not auto-indented." | |
278 :type 'regexp | |
279 :group 'perl) | |
475 | 280 |
21857
a22711be4750
(perl-mode): Add autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents:
20960
diff
changeset
|
281 ;;;###autoload |
37893
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
282 (define-derived-mode perl-mode nil "Perl" |
475 | 283 "Major mode for editing Perl code. |
284 Expression and list commands understand all Perl brackets. | |
285 Tab indents for Perl code. | |
286 Comments are delimited with # ... \\n. | |
287 Paragraphs are separated by blank lines only. | |
288 Delete converts tabs to spaces as it moves back. | |
289 \\{perl-mode-map} | |
290 Variables controlling indentation style: | |
39569
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
291 `perl-tab-always-indent' |
475 | 292 Non-nil means TAB in Perl mode should always indent the current line, |
293 regardless of where in the line point is when the TAB command is used. | |
39569
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
294 `perl-tab-to-comment' |
475 | 295 Non-nil means that for lines which don't need indenting, TAB will |
296 either delete an empty comment, indent an existing comment, move | |
297 to end-of-line, or if at end-of-line already, create a new comment. | |
39569
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
298 `perl-nochange' |
5589
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
299 Lines starting with this regular expression are not auto-indented. |
39569
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
300 `perl-indent-level' |
475 | 301 Indentation of Perl statements within surrounding block. |
302 The surrounding block's indentation is the indentation | |
303 of the line on which the open-brace appears. | |
39569
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
304 `perl-continued-statement-offset' |
475 | 305 Extra indentation given to a substatement, such as the |
306 then-clause of an if or body of a while. | |
39569
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
307 `perl-continued-brace-offset' |
475 | 308 Extra indentation given to a brace that starts a substatement. |
5589
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
309 This is in addition to `perl-continued-statement-offset'. |
39569
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
310 `perl-brace-offset' |
475 | 311 Extra indentation for line if it starts with an open brace. |
39569
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
312 `perl-brace-imaginary-offset' |
475 | 313 An open brace following other text is treated as if it were |
314 this far to the right of the start of its line. | |
39569
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
315 `perl-label-offset' |
475 | 316 Extra indentation for line that is a label. |
39569
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
317 `perl-indent-continued-arguments' |
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
318 Offset of argument lines relative to usual indentation. |
475 | 319 |
320 Various indentation styles: K&R BSD BLK GNU LW | |
321 perl-indent-level 5 8 0 2 4 | |
322 perl-continued-statement-offset 5 8 4 2 4 | |
323 perl-continued-brace-offset 0 0 0 0 -4 | |
324 perl-brace-offset -5 -8 0 0 0 | |
325 perl-brace-imaginary-offset 0 0 4 0 0 | |
326 perl-label-offset -5 -8 -2 -2 -2 | |
327 | |
5589
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
328 Turning on Perl mode runs the normal hook `perl-mode-hook'." |
475 | 329 (make-local-variable 'paragraph-start) |
10889
de7673bb5d19
(perl-mode): Remove ^ from paragraph-start & paragraph-separate.
Boris Goldowsky <boris@gnu.org>
parents:
10807
diff
changeset
|
330 (setq paragraph-start (concat "$\\|" page-delimiter)) |
475 | 331 (make-local-variable 'paragraph-separate) |
332 (setq paragraph-separate paragraph-start) | |
333 (make-local-variable 'paragraph-ignore-fill-prefix) | |
334 (setq paragraph-ignore-fill-prefix t) | |
335 (make-local-variable 'indent-line-function) | |
336 (setq indent-line-function 'perl-indent-line) | |
337 (make-local-variable 'require-final-newline) | |
338 (setq require-final-newline t) | |
339 (make-local-variable 'comment-start) | |
340 (setq comment-start "# ") | |
341 (make-local-variable 'comment-end) | |
342 (setq comment-end "") | |
343 (make-local-variable 'comment-start-skip) | |
344 (setq comment-start-skip "\\(^\\|\\s-\\);?#+ *") | |
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
882
diff
changeset
|
345 (make-local-variable 'comment-indent-function) |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
882
diff
changeset
|
346 (setq comment-indent-function 'perl-comment-indent) |
475 | 347 (make-local-variable 'parse-sexp-ignore-comments) |
5922
79d326d2da22
(perl-mode): Set parse-sexp-ignore-comments.
Richard M. Stallman <rms@gnu.org>
parents:
5589
diff
changeset
|
348 (setq parse-sexp-ignore-comments t) |
14363
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
349 ;; Tell font-lock.el how to handle Perl. |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
350 (setq font-lock-defaults '((perl-font-lock-keywords |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
351 perl-font-lock-keywords-1 |
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
352 perl-font-lock-keywords-2) |
38014
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
353 nil nil ((?\_ . "w")) nil |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
354 (font-lock-syntactic-keywords |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
355 . perl-font-lock-syntactic-keywords) |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
356 (font-lock-syntactic-face-function |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
357 . perl-font-lock-syntactic-face-function) |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
358 (parse-sexp-lookup-properties . t))) |
12677
1504d644c6bc
(perl-imenu-generic-expression) New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11370
diff
changeset
|
359 ;; Tell imenu how to handle Perl. |
1504d644c6bc
(perl-imenu-generic-expression) New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11370
diff
changeset
|
360 (make-local-variable 'imenu-generic-expression) |
1504d644c6bc
(perl-imenu-generic-expression) New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11370
diff
changeset
|
361 (setq imenu-generic-expression perl-imenu-generic-expression) |
37893
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
362 (setq imenu-case-fold-search nil)) |
475 | 363 |
364 ;; This is used by indent-for-comment | |
365 ;; to decide how much to indent a comment in Perl code | |
366 ;; based on its context. | |
367 (defun perl-comment-indent () | |
368 (if (and (bolp) (not (eolp))) | |
369 0 ;Existing comment at bol stays there. | |
37893
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
370 comment-column)) |
475 | 371 |
37893
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
372 (defalias 'electric-perl-terminator 'perl-electric-terminator) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
373 (defun perl-electric-terminator (arg) |
5589
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
374 "Insert character and adjust indentation. |
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
375 If at end-of-line, and not in a comment or a quote, correct the's indentation." |
475 | 376 (interactive "P") |
377 (let ((insertpos (point))) | |
378 (and (not arg) ; decide whether to indent | |
379 (eolp) | |
380 (save-excursion | |
381 (beginning-of-line) | |
382 (and (not ; eliminate comments quickly | |
16472
dbfab9e8b6d8
(electric-perl-terminator, perl-indent-command):
Richard M. Stallman <rms@gnu.org>
parents:
16358
diff
changeset
|
383 (and comment-start-skip |
dbfab9e8b6d8
(electric-perl-terminator, perl-indent-command):
Richard M. Stallman <rms@gnu.org>
parents:
16358
diff
changeset
|
384 (re-search-forward comment-start-skip insertpos t)) ) |
475 | 385 (or (/= last-command-char ?:) |
386 ;; Colon is special only after a label .... | |
387 (looking-at "\\s-*\\(\\w\\|\\s_\\)+$")) | |
388 (let ((pps (parse-partial-sexp | |
389 (perl-beginning-of-function) insertpos))) | |
390 (not (or (nth 3 pps) (nth 4 pps) (nth 5 pps)))))) | |
391 (progn ; must insert, indent, delete | |
392 (insert-char last-command-char 1) | |
393 (perl-indent-line) | |
394 (delete-char -1)))) | |
395 (self-insert-command (prefix-numeric-value arg))) | |
396 | |
397 ;; not used anymore, but may be useful someday: | |
398 ;;(defun perl-inside-parens-p () | |
399 ;; (condition-case () | |
400 ;; (save-excursion | |
401 ;; (save-restriction | |
402 ;; (narrow-to-region (point) | |
403 ;; (perl-beginning-of-function)) | |
404 ;; (goto-char (point-max)) | |
405 ;; (= (char-after (or (scan-lists (point) -1 1) (point-min))) ?\())) | |
406 ;; (error nil))) | |
407 | |
408 (defun perl-indent-command (&optional arg) | |
409 "Indent current line as Perl code, or optionally, insert a tab character. | |
410 | |
411 With an argument, indent the current line, regardless of other options. | |
412 | |
5589
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
413 If `perl-tab-always-indent' is nil and point is not in the indentation |
475 | 414 area at the beginning of the line, simply insert a tab. |
415 | |
416 Otherwise, indent the current line. If point was within the indentation | |
417 area it is moved to the end of the indentation area. If the line was | |
418 already indented properly and point was not within the indentation area, | |
5589
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
419 and if `perl-tab-to-comment' is non-nil (the default), then do the first |
475 | 420 possible action from the following list: |
421 | |
422 1) delete an empty comment | |
423 2) move forward to start of comment, indenting if necessary | |
424 3) move forward to end of line | |
425 4) create an empty comment | |
426 5) move backward to start of comment, indenting if necessary." | |
427 (interactive "P") | |
428 (if arg ; If arg, just indent this line | |
429 (perl-indent-line "\f") | |
430 (if (and (not perl-tab-always-indent) | |
8551
121cdea46830
(perl-indent-command): Fix backwards conditional.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
431 (> (current-column) (current-indentation))) |
475 | 432 (insert-tab) |
39569
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
433 (let* ((oldpnt (point)) |
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
434 (lsexp (progn (beginning-of-line) (point))) |
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
435 (bof (perl-beginning-of-function)) |
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
436 (delta (progn |
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
437 (goto-char oldpnt) |
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
438 (perl-indent-line "\f\\|;?#" bof)))) |
475 | 439 (and perl-tab-to-comment |
440 (= oldpnt (point)) ; done if point moved | |
441 (if (listp delta) ; if line starts in a quoted string | |
442 (setq lsexp (or (nth 2 delta) bof)) | |
443 (= delta 0)) ; done if indenting occurred | |
39569
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
444 (let ((eol (progn (end-of-line) (point))) |
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
445 state) |
475 | 446 (if (= (char-after bof) ?=) |
447 (if (= oldpnt eol) | |
39569
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
448 (message "In a format statement")) |
475 | 449 (setq state (parse-partial-sexp lsexp eol)) |
450 (if (nth 3 state) | |
451 (if (= oldpnt eol) ; already at eol in a string | |
452 (message "In a string which starts with a %c." | |
453 (nth 3 state))) | |
454 (if (not (nth 4 state)) | |
455 (if (= oldpnt eol) ; no comment, create one? | |
456 (indent-for-comment)) | |
457 (beginning-of-line) | |
16472
dbfab9e8b6d8
(electric-perl-terminator, perl-indent-command):
Richard M. Stallman <rms@gnu.org>
parents:
16358
diff
changeset
|
458 (if (and comment-start-skip |
dbfab9e8b6d8
(electric-perl-terminator, perl-indent-command):
Richard M. Stallman <rms@gnu.org>
parents:
16358
diff
changeset
|
459 (re-search-forward comment-start-skip eol 'move)) |
475 | 460 (if (eolp) |
461 (progn ; kill existing comment | |
462 (goto-char (match-beginning 0)) | |
463 (skip-chars-backward " \t") | |
464 (kill-region (point) eol)) | |
465 (if (or (< oldpnt (point)) (= oldpnt eol)) | |
466 (indent-for-comment) ; indent existing comment | |
467 (end-of-line))) | |
468 (if (/= oldpnt eol) | |
469 (end-of-line) | |
470 (message "Use backslash to quote # characters.") | |
471 (ding t)))))))))))) | |
472 | |
473 (defun perl-indent-line (&optional nochange parse-start) | |
5589
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
474 "Indent current line as Perl code. |
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
475 Return the amount the indentation |
475 | 476 changed by, or (parse-state) if line starts in a quoted string." |
477 (let ((case-fold-search nil) | |
478 (pos (- (point-max) (point))) | |
479 (bof (or parse-start (save-excursion (perl-beginning-of-function)))) | |
480 beg indent shift-amt) | |
481 (beginning-of-line) | |
482 (setq beg (point)) | |
483 (setq shift-amt | |
484 (cond ((= (char-after bof) ?=) 0) | |
37893
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
485 ((listp (setq indent (perl-calculate-indent bof))) indent) |
475 | 486 ((looking-at (or nochange perl-nochange)) 0) |
487 (t | |
488 (skip-chars-forward " \t\f") | |
29305
9f58922ddbcc
(perl-indent-line): When looking for a
Gerd Moellmann <gerd@gnu.org>
parents:
21857
diff
changeset
|
489 (cond ((looking-at "\\(\\w\\|\\s_\\)+:[^:]") |
475 | 490 (setq indent (max 1 (+ indent perl-label-offset)))) |
491 ((= (following-char) ?}) | |
492 (setq indent (- indent perl-indent-level))) | |
493 ((= (following-char) ?{) | |
494 (setq indent (+ indent perl-brace-offset)))) | |
495 (- indent (current-column))))) | |
496 (skip-chars-forward " \t\f") | |
497 (if (and (numberp shift-amt) (/= 0 shift-amt)) | |
498 (progn (delete-region beg (point)) | |
499 (indent-to indent))) | |
500 ;; If initial point was within line's indentation, | |
501 ;; position after the indentation. Else stay at same point in text. | |
502 (if (> (- (point-max) pos) (point)) | |
503 (goto-char (- (point-max) pos))) | |
504 shift-amt)) | |
505 | |
38014
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
506 (defun perl-continuation-line-p (limit) |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
507 "Move to end of previous line and return non-nil if continued." |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
508 ;; Statement level. Is it a continuation or a new statement? |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
509 ;; Find previous non-comment character. |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
510 (perl-backward-to-noncomment) |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
511 ;; Back up over label lines, since they don't |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
512 ;; affect whether our line is a continuation. |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
513 (while (or (eq (preceding-char) ?\,) |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
514 (and (eq (preceding-char) ?:) |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
515 (memq (char-syntax (char-after (- (point) 2))) |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
516 '(?w ?_)))) |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
517 (if (eq (preceding-char) ?\,) |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
518 (perl-backward-to-start-of-continued-exp limit) |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
519 (beginning-of-line)) |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
520 (perl-backward-to-noncomment)) |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
521 ;; Now we get the answer. |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
522 (not (memq (preceding-char) '(?\; ?\} ?\{)))) |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
523 |
37893
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
524 (defun perl-calculate-indent (&optional parse-start) |
475 | 525 "Return appropriate indentation for current line as Perl code. |
526 In usual case returns an integer: the column to indent to. | |
527 Returns (parse-state) if line starts inside a string." | |
528 (save-excursion | |
529 (beginning-of-line) | |
530 (let ((indent-point (point)) | |
531 (case-fold-search nil) | |
532 (colon-line-end 0) | |
533 state containing-sexp) | |
534 (if parse-start ;used to avoid searching | |
535 (goto-char parse-start) | |
536 (perl-beginning-of-function)) | |
37893
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
537 ;; We might be now looking at a local function that has nothing to |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
538 ;; do with us because `indent-point' is past it. In this case |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
539 ;; look further back up for another `perl-beginning-of-function'. |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
540 (while (and (looking-at "{") |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
541 (save-excursion |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
542 (beginning-of-line) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
543 (looking-at "\\s-+sub\\>")) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
544 (> indent-point (save-excursion (forward-sexp 1) (point)))) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
545 (perl-beginning-of-function)) |
475 | 546 (while (< (point) indent-point) ;repeat until right sexp |
547 (setq state (parse-partial-sexp (point) indent-point 0)) | |
548 ; state = (depth_in_parens innermost_containing_list last_complete_sexp | |
549 ; string_terminator_or_nil inside_commentp following_quotep | |
550 ; minimum_paren-depth_this_scan) | |
551 ; Parsing stops if depth in parentheses becomes equal to third arg. | |
552 (setq containing-sexp (nth 1 state))) | |
553 (cond ((nth 3 state) state) ; In a quoted string? | |
554 ((null containing-sexp) ; Line is at top level. | |
555 (skip-chars-forward " \t\f") | |
556 (if (= (following-char) ?{) | |
557 0 ; move to beginning of line if it starts a function body | |
558 ;; indent a little if this is a continuation line | |
559 (perl-backward-to-noncomment) | |
560 (if (or (bobp) | |
561 (memq (preceding-char) '(?\; ?\}))) | |
562 0 perl-continued-statement-offset))) | |
563 ((/= (char-after containing-sexp) ?{) | |
564 ;; line is expression, not statement: | |
565 ;; indent to just after the surrounding open. | |
566 (goto-char (1+ containing-sexp)) | |
39569
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
567 (if perl-indent-continued-arguments |
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
568 (+ perl-indent-continued-arguments (current-indentation)) |
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
569 (skip-chars-forward " \t") |
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
570 (current-column))) |
475 | 571 (t |
572 ;; Statement level. Is it a continuation or a new statement? | |
38014
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
573 (if (perl-continuation-line-p containing-sexp) |
475 | 574 ;; This line is continuation of preceding line's statement; |
575 ;; indent perl-continued-statement-offset more than the | |
576 ;; previous line of the statement. | |
577 (progn | |
578 (perl-backward-to-start-of-continued-exp containing-sexp) | |
38014
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
579 (+ (if (save-excursion |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
580 (perl-continuation-line-p containing-sexp)) |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
581 ;; If the continued line is itself a continuation |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
582 ;; line, then align, otherwise add an offset. |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
583 0 perl-continued-statement-offset) |
8c5d188dc01b
(perl-font-lock-syntactic-keywords): New var, to recognize ${ $' and PODs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37893
diff
changeset
|
584 (current-column) |
475 | 585 (if (save-excursion (goto-char indent-point) |
586 (looking-at "[ \t]*{")) | |
587 perl-continued-brace-offset 0))) | |
588 ;; This line starts a new statement. | |
589 ;; Position at last unclosed open. | |
590 (goto-char containing-sexp) | |
591 (or | |
592 ;; If open paren is in col 0, close brace is special | |
593 (and (bolp) | |
594 (save-excursion (goto-char indent-point) | |
595 (looking-at "[ \t]*}")) | |
596 perl-indent-level) | |
597 ;; Is line first statement after an open-brace? | |
598 ;; If no, find that first statement and indent like it. | |
599 (save-excursion | |
600 (forward-char 1) | |
601 ;; Skip over comments and labels following openbrace. | |
602 (while (progn | |
603 (skip-chars-forward " \t\f\n") | |
604 (cond ((looking-at ";?#") | |
605 (forward-line 1) t) | |
606 ((looking-at "\\(\\w\\|\\s_\\)+:") | |
607 (save-excursion | |
608 (end-of-line) | |
609 (setq colon-line-end (point))) | |
610 (search-forward ":"))))) | |
611 ;; The first following code counts | |
612 ;; if it is before the line we want to indent. | |
613 (and (< (point) indent-point) | |
614 (if (> colon-line-end (point)) | |
615 (- (current-indentation) perl-label-offset) | |
616 (current-column)))) | |
617 ;; If no previous statement, | |
618 ;; indent it relative to line brace is on. | |
619 ;; For open paren in column zero, don't let statement | |
620 ;; start there too. If perl-indent-level is zero, | |
621 ;; use perl-brace-offset + perl-continued-statement-offset | |
622 ;; For open-braces not the first thing in a line, | |
623 ;; add in perl-brace-imaginary-offset. | |
624 (+ (if (and (bolp) (zerop perl-indent-level)) | |
625 (+ perl-brace-offset perl-continued-statement-offset) | |
626 perl-indent-level) | |
627 ;; Move back over whitespace before the openbrace. | |
628 ;; If openbrace is not first nonwhite thing on the line, | |
629 ;; add the perl-brace-imaginary-offset. | |
630 (progn (skip-chars-backward " \t") | |
631 (if (bolp) 0 perl-brace-imaginary-offset)) | |
632 ;; If the openbrace is preceded by a parenthesized exp, | |
633 ;; move to the beginning of that; | |
634 ;; possibly a different line | |
635 (progn | |
636 (if (eq (preceding-char) ?\)) | |
637 (forward-sexp -1)) | |
638 ;; Get initial indentation of the line we are on. | |
639 (current-indentation)))))))))) | |
640 | |
641 (defun perl-backward-to-noncomment () | |
642 "Move point backward to after the first non-white-space, skipping comments." | |
39569
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
643 (interactive) ;why?? -stef |
9d258703ad61
(perl-indent-continued-arguments): New var.
Gerd Moellmann <gerd@gnu.org>
parents:
38014
diff
changeset
|
644 (forward-comment (- (point-max)))) |
475 | 645 |
646 (defun perl-backward-to-start-of-continued-exp (lim) | |
647 (if (= (preceding-char) ?\)) | |
648 (forward-sexp -1)) | |
649 (beginning-of-line) | |
650 (if (<= (point) lim) | |
651 (goto-char (1+ lim))) | |
652 (skip-chars-forward " \t\f")) | |
653 | |
654 ;; note: this may be slower than the c-mode version, but I can understand it. | |
37893
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
655 (defalias 'indent-perl-exp 'perl-indent-exp) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
656 (defun perl-indent-exp () |
475 | 657 "Indent each line of the Perl grouping following point." |
658 (interactive) | |
659 (let* ((case-fold-search nil) | |
660 (oldpnt (point-marker)) | |
661 (bof-mark (save-excursion | |
662 (end-of-line 2) | |
663 (perl-beginning-of-function) | |
664 (point-marker))) | |
665 eol last-mark lsexp-mark delta) | |
666 (if (= (char-after (marker-position bof-mark)) ?=) | |
667 (message "Can't indent a format statement") | |
668 (message "Indenting Perl expression...") | |
669 (save-excursion (end-of-line) (setq eol (point))) | |
670 (save-excursion ; locate matching close paren | |
671 (while (and (not (eobp)) (<= (point) eol)) | |
672 (parse-partial-sexp (point) (point-max) 0)) | |
673 (setq last-mark (point-marker))) | |
674 (setq lsexp-mark bof-mark) | |
675 (beginning-of-line) | |
676 (while (< (point) (marker-position last-mark)) | |
677 (setq delta (perl-indent-line nil (marker-position bof-mark))) | |
678 (if (numberp delta) ; unquoted start-of-line? | |
679 (progn | |
680 (if (eolp) | |
681 (delete-horizontal-space)) | |
682 (setq lsexp-mark (point-marker)))) | |
683 (end-of-line) | |
684 (setq eol (point)) | |
685 (if (nth 4 (parse-partial-sexp (marker-position lsexp-mark) eol)) | |
686 (progn ; line ends in a comment | |
687 (beginning-of-line) | |
688 (if (or (not (looking-at "\\s-*;?#")) | |
689 (listp delta) | |
690 (and (/= 0 delta) | |
691 (= (- (current-indentation) delta) comment-column))) | |
16472
dbfab9e8b6d8
(electric-perl-terminator, perl-indent-command):
Richard M. Stallman <rms@gnu.org>
parents:
16358
diff
changeset
|
692 (if (and comment-start-skip |
dbfab9e8b6d8
(electric-perl-terminator, perl-indent-command):
Richard M. Stallman <rms@gnu.org>
parents:
16358
diff
changeset
|
693 (re-search-forward comment-start-skip eol t)) |
475 | 694 (indent-for-comment))))) ; indent existing comment |
695 (forward-line 1)) | |
696 (goto-char (marker-position oldpnt)) | |
697 (message "Indenting Perl expression...done")))) | |
698 | |
699 (defun perl-beginning-of-function (&optional arg) | |
700 "Move backward to next beginning-of-function, or as far as possible. | |
701 With argument, repeat that many times; negative args move forward. | |
702 Returns new value of point in all cases." | |
703 (interactive "p") | |
704 (or arg (setq arg 1)) | |
705 (if (< arg 0) (forward-char 1)) | |
706 (and (/= arg 0) | |
707 (re-search-backward "^\\s(\\|^\\s-*sub\\b[^{]+{\\|^\\s-*format\\b[^=]*=\\|^\\." | |
708 nil 'move arg) | |
709 (goto-char (1- (match-end 0)))) | |
710 (point)) | |
711 | |
712 ;; note: this routine is adapted directly from emacs lisp.el, end-of-defun; | |
713 ;; no bugs have been removed :-) | |
714 (defun perl-end-of-function (&optional arg) | |
715 "Move forward to next end-of-function. | |
716 The end of a function is found by moving forward from the beginning of one. | |
717 With argument, repeat that many times; negative args move backward." | |
718 (interactive "p") | |
719 (or arg (setq arg 1)) | |
720 (let ((first t)) | |
721 (while (and (> arg 0) (< (point) (point-max))) | |
722 (let ((pos (point)) npos) | |
723 (while (progn | |
724 (if (and first | |
725 (progn | |
726 (forward-char 1) | |
727 (perl-beginning-of-function 1) | |
728 (not (bobp)))) | |
729 nil | |
730 (or (bobp) (forward-char -1)) | |
731 (perl-beginning-of-function -1)) | |
732 (setq first nil) | |
733 (forward-list 1) | |
734 (skip-chars-forward " \t") | |
735 (if (looking-at "[#\n]") | |
736 (forward-line 1)) | |
737 (<= (point) pos)))) | |
738 (setq arg (1- arg))) | |
739 (while (< arg 0) | |
740 (let ((pos (point))) | |
741 (perl-beginning-of-function 1) | |
742 (forward-sexp 1) | |
743 (forward-line 1) | |
744 (if (>= (point) pos) | |
745 (if (progn (perl-beginning-of-function 2) (not (bobp))) | |
746 (progn | |
747 (forward-list 1) | |
748 (skip-chars-forward " \t") | |
749 (if (looking-at "[#\n]") | |
750 (forward-line 1))) | |
751 (goto-char (point-min))))) | |
752 (setq arg (1+ arg))))) | |
753 | |
37893
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
754 (defalias 'mark-perl-function 'perl-mark-function) |
e0beb50b7def
(perl-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31985
diff
changeset
|
755 (defun perl-mark-function () |
475 | 756 "Put mark at end of Perl function, point at beginning." |
757 (interactive) | |
758 (push-mark (point)) | |
759 (perl-end-of-function) | |
760 (push-mark (point)) | |
761 (perl-beginning-of-function) | |
762 (backward-paragraph)) | |
763 | |
16358 | 764 (provide 'perl-mode) |
765 | |
766 ;;; perl-mode.el ends here |