Mercurial > emacs
annotate lisp/progmodes/perl-mode.el @ 14333:b14697aa6929
(te-edit): Pass proper format string to message.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Thu, 25 Jan 1996 00:58:10 +0000 |
parents | 83f275dcd93a |
children | 754031d2354f |
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 | |
53 ;; to electric-perl-terminator. I changed the indenting defaults to be | |
54 ;; what Larry Wall uses in perl/lib, but left in all the options. | |
55 | |
56 ;; I also tuned a few things: comments and labels starting in column | |
57 ;; zero are left there by indent-perl-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 ... ='; indent-perl-exp | |
60 ;; (meta-^q) indents from the current line through the close of the next | |
61 ;; brace/paren, so you don't need to start exactly at a brace or paren. | |
62 | |
63 ;; It may be good style to put a set of redundant braces around your | |
64 ;; main program. This will let you reindent it with meta-^q. | |
65 | |
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. | |
75 ;; 4) \ (backslash) always quotes the next character, so '\' is | |
76 ;; treated as the start of a string. Use "\\" as a work-around. | |
77 ;; 5) To make variables such a $' and $#array work, perl-mode treats | |
78 ;; $ just like backslash, so '$' is the same as problem 5. | |
79 ;; 6) Unfortunately, treating $ like \ makes ${var} be treated as an | |
80 ;; unmatched }. See below. | |
81 ;; 7) When ' (quote) is used as a package name separator, perl-mode | |
82 ;; doesn't understand, and thinks it is seeing a quoted string. | |
83 | |
84 ;; Here are some ugly tricks to bypass some of these problems: the perl | |
85 ;; expression /`/ (that's a back-tick) usually evaluates harmlessly, | |
86 ;; but will trick perl-mode into starting a quoted string, which | |
87 ;; can be ended with another /`/. Assuming you have no embedded | |
88 ;; back-ticks, this can used to help solve problem 3: | |
89 ;; | |
90 ;; /`/; $ugly = q?"'$?; /`/; | |
91 ;; | |
92 ;; To solve problem 6, add a /{/; before each use of ${var}: | |
93 ;; /{/; while (<${glob_me}>) ... | |
94 ;; | |
95 ;; Problem 7 is even worse, but this 'fix' does work :-( | |
96 ;; $DB'stop#' | |
97 ;; [$DB'line#' | |
98 ;; ] =~ s/;9$//; | |
99 | |
789
71d052f72ac1
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
475
diff
changeset
|
100 ;;; Code: |
475 | 101 |
102 (defvar perl-mode-abbrev-table nil | |
103 "Abbrev table in use in perl-mode buffers.") | |
104 (define-abbrev-table 'perl-mode-abbrev-table ()) | |
105 | |
106 (defvar perl-mode-map () | |
107 "Keymap used in Perl mode.") | |
108 (if perl-mode-map | |
109 () | |
110 (setq perl-mode-map (make-sparse-keymap)) | |
111 (define-key perl-mode-map "{" 'electric-perl-terminator) | |
112 (define-key perl-mode-map "}" 'electric-perl-terminator) | |
113 (define-key perl-mode-map ";" 'electric-perl-terminator) | |
114 (define-key perl-mode-map ":" 'electric-perl-terminator) | |
115 (define-key perl-mode-map "\e\C-a" 'perl-beginning-of-function) | |
116 (define-key perl-mode-map "\e\C-e" 'perl-end-of-function) | |
117 (define-key perl-mode-map "\e\C-h" 'mark-perl-function) | |
118 (define-key perl-mode-map "\e\C-q" 'indent-perl-exp) | |
119 (define-key perl-mode-map "\177" 'backward-delete-char-untabify) | |
120 (define-key perl-mode-map "\t" 'perl-indent-command)) | |
121 | |
122 (autoload 'c-macro-expand "cmacexp" | |
123 "Display the result of expanding all C macros occurring in the region. | |
124 The expansion is entirely correct because it uses the C preprocessor." | |
125 t) | |
126 | |
127 (defvar perl-mode-syntax-table nil | |
128 "Syntax table in use in perl-mode buffers.") | |
129 | |
130 (if perl-mode-syntax-table | |
131 () | |
132 (setq perl-mode-syntax-table (make-syntax-table (standard-syntax-table))) | |
133 (modify-syntax-entry ?\n ">" perl-mode-syntax-table) | |
134 (modify-syntax-entry ?# "<" perl-mode-syntax-table) | |
135 (modify-syntax-entry ?$ "/" perl-mode-syntax-table) | |
136 (modify-syntax-entry ?% "." perl-mode-syntax-table) | |
137 (modify-syntax-entry ?& "." perl-mode-syntax-table) | |
138 (modify-syntax-entry ?\' "\"" perl-mode-syntax-table) | |
139 (modify-syntax-entry ?* "." perl-mode-syntax-table) | |
140 (modify-syntax-entry ?+ "." perl-mode-syntax-table) | |
141 (modify-syntax-entry ?- "." perl-mode-syntax-table) | |
142 (modify-syntax-entry ?/ "." perl-mode-syntax-table) | |
143 (modify-syntax-entry ?< "." perl-mode-syntax-table) | |
144 (modify-syntax-entry ?= "." perl-mode-syntax-table) | |
145 (modify-syntax-entry ?> "." perl-mode-syntax-table) | |
146 (modify-syntax-entry ?\\ "\\" perl-mode-syntax-table) | |
147 (modify-syntax-entry ?` "\"" perl-mode-syntax-table) | |
148 (modify-syntax-entry ?| "." perl-mode-syntax-table) | |
149 ) | |
150 | |
12677
1504d644c6bc
(perl-imenu-generic-expression) New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11370
diff
changeset
|
151 (defvar perl-imenu-generic-expression |
1504d644c6bc
(perl-imenu-generic-expression) New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11370
diff
changeset
|
152 '( |
1504d644c6bc
(perl-imenu-generic-expression) New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11370
diff
changeset
|
153 ;; Functions |
1504d644c6bc
(perl-imenu-generic-expression) New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11370
diff
changeset
|
154 (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
|
155 ;;Variables |
1504d644c6bc
(perl-imenu-generic-expression) New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11370
diff
changeset
|
156 ("Variables" "^\\([$@%][-A-Za-z0-9+_:]+\\)\\s-*=" 1 ) |
1504d644c6bc
(perl-imenu-generic-expression) New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11370
diff
changeset
|
157 ) |
1504d644c6bc
(perl-imenu-generic-expression) New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11370
diff
changeset
|
158 "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
|
159 |
9386
17dfca2d42e2
(perl-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9060
diff
changeset
|
160 (defvar perl-font-lock-keywords |
17dfca2d42e2
(perl-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9060
diff
changeset
|
161 (list |
17dfca2d42e2
(perl-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9060
diff
changeset
|
162 ; ("if" "until" "while" "elsif" "else" "unless" "for" "foreach" "continue" |
17dfca2d42e2
(perl-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9060
diff
changeset
|
163 ; "exit" "die" "last" "goto" "next" "redo" "return" "local" "exec") |
17dfca2d42e2
(perl-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9060
diff
changeset
|
164 (concat "\\<\\(" |
17dfca2d42e2
(perl-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9060
diff
changeset
|
165 "continue\\|die\\|e\\(ls\\(e\\|if\\)\\|x\\(ec\\|it\\)\\)\\|" |
17dfca2d42e2
(perl-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9060
diff
changeset
|
166 "for\\(\\|each\\)\\|goto\\|if\\|l\\(ast\\|ocal\\)\\|next\\|" |
17dfca2d42e2
(perl-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9060
diff
changeset
|
167 "re\\(do\\|turn\\)\\|un\\(less\\|til\\)\\|while" |
17dfca2d42e2
(perl-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9060
diff
changeset
|
168 "\\)\\>") |
17dfca2d42e2
(perl-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9060
diff
changeset
|
169 ; ("#endif" "#else" "#ifdef" "#ifndef" "#if" "#include" "#define" "#undef") |
17dfca2d42e2
(perl-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9060
diff
changeset
|
170 (cons (concat "#\\(define\\|e\\(lse\\|ndif\\)\\|" |
17dfca2d42e2
(perl-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9060
diff
changeset
|
171 "i\\(f\\(\\|def\\|ndef\\)\\|nclude\\)\\|undef\\)\\>") |
17dfca2d42e2
(perl-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9060
diff
changeset
|
172 'font-lock-reference-face) |
17dfca2d42e2
(perl-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9060
diff
changeset
|
173 '("^[ \n\t]*sub[ \t]+\\([^ \t{]+\\)[ \t]*[{]" 1 font-lock-function-name-face) |
17dfca2d42e2
(perl-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9060
diff
changeset
|
174 '("[ \n\t{]*\\(eval\\)[ \n\t(;]" 1 font-lock-function-name-face) |
17dfca2d42e2
(perl-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9060
diff
changeset
|
175 '("\\(--- .* ---\\|=== .* ===\\)" . font-lock-string-face) |
17dfca2d42e2
(perl-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9060
diff
changeset
|
176 ) |
17dfca2d42e2
(perl-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9060
diff
changeset
|
177 "Additional expressions to highlight in Perl mode.") |
17dfca2d42e2
(perl-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9060
diff
changeset
|
178 |
5589
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
179 (defvar perl-indent-level 4 |
475 | 180 "*Indentation of Perl statements with respect to containing block.") |
5589
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
181 (defvar perl-continued-statement-offset 4 |
475 | 182 "*Extra indent for lines not starting new statements.") |
5589
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
183 (defvar perl-continued-brace-offset -4 |
475 | 184 "*Extra indent for substatements that start with open-braces. |
5589
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
185 This is in addition to `perl-continued-statement-offset'.") |
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
186 (defvar perl-brace-offset 0 |
475 | 187 "*Extra indentation for braces, compared with other text in same context.") |
5589
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
188 (defvar perl-brace-imaginary-offset 0 |
475 | 189 "*Imagined indentation of an open brace that actually follows a statement.") |
5589
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
190 (defvar perl-label-offset -2 |
475 | 191 "*Offset of Perl label lines relative to usual indentation.") |
192 | |
5589
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
193 (defvar perl-tab-always-indent t |
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
194 "*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
|
195 Otherwise it inserts a tab character if you type it past the first |
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
196 nonwhite character on the line.") |
475 | 197 |
10807
50f00b298a2d
(perl-tab-to-comment): Default is nil.
Richard M. Stallman <rms@gnu.org>
parents:
9480
diff
changeset
|
198 ;; 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
|
199 ;; conventions -- rms. |
50f00b298a2d
(perl-tab-to-comment): Default is nil.
Richard M. Stallman <rms@gnu.org>
parents:
9480
diff
changeset
|
200 (defvar perl-tab-to-comment nil |
5589
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
201 "*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
|
202 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
|
203 existing comment, moves to end-of-line, or if at end-of-line already, |
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
204 create a new comment.") |
475 | 205 |
5589
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
206 (defvar perl-nochange ";?#\\|\f\\|\\s(\\|\\(\\w\\|\\s_\\)+:" |
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
207 "*Lines starting with this regular expression are not auto-indented.") |
475 | 208 |
4455
510c0b48884f
(perl-mode): Add autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
209 ;;;###autoload |
475 | 210 (defun perl-mode () |
211 "Major mode for editing Perl code. | |
212 Expression and list commands understand all Perl brackets. | |
213 Tab indents for Perl code. | |
214 Comments are delimited with # ... \\n. | |
215 Paragraphs are separated by blank lines only. | |
216 Delete converts tabs to spaces as it moves back. | |
217 \\{perl-mode-map} | |
218 Variables controlling indentation style: | |
219 perl-tab-always-indent | |
220 Non-nil means TAB in Perl mode should always indent the current line, | |
221 regardless of where in the line point is when the TAB command is used. | |
222 perl-tab-to-comment | |
223 Non-nil means that for lines which don't need indenting, TAB will | |
224 either delete an empty comment, indent an existing comment, move | |
225 to end-of-line, or if at end-of-line already, create a new comment. | |
226 perl-nochange | |
5589
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
227 Lines starting with this regular expression are not auto-indented. |
475 | 228 perl-indent-level |
229 Indentation of Perl statements within surrounding block. | |
230 The surrounding block's indentation is the indentation | |
231 of the line on which the open-brace appears. | |
232 perl-continued-statement-offset | |
233 Extra indentation given to a substatement, such as the | |
234 then-clause of an if or body of a while. | |
235 perl-continued-brace-offset | |
236 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
|
237 This is in addition to `perl-continued-statement-offset'. |
475 | 238 perl-brace-offset |
239 Extra indentation for line if it starts with an open brace. | |
240 perl-brace-imaginary-offset | |
241 An open brace following other text is treated as if it were | |
242 this far to the right of the start of its line. | |
243 perl-label-offset | |
244 Extra indentation for line that is a label. | |
245 | |
246 Various indentation styles: K&R BSD BLK GNU LW | |
247 perl-indent-level 5 8 0 2 4 | |
248 perl-continued-statement-offset 5 8 4 2 4 | |
249 perl-continued-brace-offset 0 0 0 0 -4 | |
250 perl-brace-offset -5 -8 0 0 0 | |
251 perl-brace-imaginary-offset 0 0 4 0 0 | |
252 perl-label-offset -5 -8 -2 -2 -2 | |
253 | |
5589
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
254 Turning on Perl mode runs the normal hook `perl-mode-hook'." |
475 | 255 (interactive) |
256 (kill-all-local-variables) | |
257 (use-local-map perl-mode-map) | |
258 (setq major-mode 'perl-mode) | |
259 (setq mode-name "Perl") | |
260 (setq local-abbrev-table perl-mode-abbrev-table) | |
261 (set-syntax-table perl-mode-syntax-table) | |
262 (make-local-variable 'paragraph-start) | |
10889
de7673bb5d19
(perl-mode): Remove ^ from paragraph-start & paragraph-separate.
Boris Goldowsky <boris@gnu.org>
parents:
10807
diff
changeset
|
263 (setq paragraph-start (concat "$\\|" page-delimiter)) |
475 | 264 (make-local-variable 'paragraph-separate) |
265 (setq paragraph-separate paragraph-start) | |
266 (make-local-variable 'paragraph-ignore-fill-prefix) | |
267 (setq paragraph-ignore-fill-prefix t) | |
268 (make-local-variable 'indent-line-function) | |
269 (setq indent-line-function 'perl-indent-line) | |
270 (make-local-variable 'require-final-newline) | |
271 (setq require-final-newline t) | |
272 (make-local-variable 'comment-start) | |
273 (setq comment-start "# ") | |
274 (make-local-variable 'comment-end) | |
275 (setq comment-end "") | |
276 (make-local-variable 'comment-column) | |
277 (setq comment-column 32) | |
278 (make-local-variable 'comment-start-skip) | |
279 (setq comment-start-skip "\\(^\\|\\s-\\);?#+ *") | |
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
882
diff
changeset
|
280 (make-local-variable 'comment-indent-function) |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
882
diff
changeset
|
281 (setq comment-indent-function 'perl-comment-indent) |
475 | 282 (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
|
283 (setq parse-sexp-ignore-comments t) |
9480
8a36332efbf2
* perl-mode.el: (perl-mode): Set font-lock-defaults.
Simon Marshall <simon@gnu.org>
parents:
9386
diff
changeset
|
284 (make-local-variable 'font-lock-defaults) |
8a36332efbf2
* perl-mode.el: (perl-mode): Set font-lock-defaults.
Simon Marshall <simon@gnu.org>
parents:
9386
diff
changeset
|
285 (setq font-lock-defaults '(perl-font-lock-keywords)) |
12677
1504d644c6bc
(perl-imenu-generic-expression) New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11370
diff
changeset
|
286 ;; Tell imenu how to handle Perl. |
1504d644c6bc
(perl-imenu-generic-expression) New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11370
diff
changeset
|
287 (make-local-variable 'imenu-generic-expression) |
1504d644c6bc
(perl-imenu-generic-expression) New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11370
diff
changeset
|
288 (setq imenu-generic-expression perl-imenu-generic-expression) |
475 | 289 (run-hooks 'perl-mode-hook)) |
290 | |
291 ;; This is used by indent-for-comment | |
292 ;; to decide how much to indent a comment in Perl code | |
293 ;; based on its context. | |
294 (defun perl-comment-indent () | |
295 (if (and (bolp) (not (eolp))) | |
296 0 ;Existing comment at bol stays there. | |
297 (save-excursion | |
298 (skip-chars-backward " \t") | |
11370
d1dc644021a4
(perl-comment-indent): Make extra space only when
Richard M. Stallman <rms@gnu.org>
parents:
10938
diff
changeset
|
299 (max (if (bolp) ;Else indent at comment column |
d1dc644021a4
(perl-comment-indent): Make extra space only when
Richard M. Stallman <rms@gnu.org>
parents:
10938
diff
changeset
|
300 0 ; except leave at least one space if |
d1dc644021a4
(perl-comment-indent): Make extra space only when
Richard M. Stallman <rms@gnu.org>
parents:
10938
diff
changeset
|
301 (1+ (current-column))) ; not at beginning of line. |
d1dc644021a4
(perl-comment-indent): Make extra space only when
Richard M. Stallman <rms@gnu.org>
parents:
10938
diff
changeset
|
302 comment-column)))) |
475 | 303 |
304 (defun electric-perl-terminator (arg) | |
5589
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
305 "Insert character and adjust indentation. |
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
306 If at end-of-line, and not in a comment or a quote, correct the's indentation." |
475 | 307 (interactive "P") |
308 (let ((insertpos (point))) | |
309 (and (not arg) ; decide whether to indent | |
310 (eolp) | |
311 (save-excursion | |
312 (beginning-of-line) | |
313 (and (not ; eliminate comments quickly | |
314 (re-search-forward comment-start-skip insertpos t)) | |
315 (or (/= last-command-char ?:) | |
316 ;; Colon is special only after a label .... | |
317 (looking-at "\\s-*\\(\\w\\|\\s_\\)+$")) | |
318 (let ((pps (parse-partial-sexp | |
319 (perl-beginning-of-function) insertpos))) | |
320 (not (or (nth 3 pps) (nth 4 pps) (nth 5 pps)))))) | |
321 (progn ; must insert, indent, delete | |
322 (insert-char last-command-char 1) | |
323 (perl-indent-line) | |
324 (delete-char -1)))) | |
325 (self-insert-command (prefix-numeric-value arg))) | |
326 | |
327 ;; not used anymore, but may be useful someday: | |
328 ;;(defun perl-inside-parens-p () | |
329 ;; (condition-case () | |
330 ;; (save-excursion | |
331 ;; (save-restriction | |
332 ;; (narrow-to-region (point) | |
333 ;; (perl-beginning-of-function)) | |
334 ;; (goto-char (point-max)) | |
335 ;; (= (char-after (or (scan-lists (point) -1 1) (point-min))) ?\())) | |
336 ;; (error nil))) | |
337 | |
338 (defun perl-indent-command (&optional arg) | |
339 "Indent current line as Perl code, or optionally, insert a tab character. | |
340 | |
341 With an argument, indent the current line, regardless of other options. | |
342 | |
5589
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
343 If `perl-tab-always-indent' is nil and point is not in the indentation |
475 | 344 area at the beginning of the line, simply insert a tab. |
345 | |
346 Otherwise, indent the current line. If point was within the indentation | |
347 area it is moved to the end of the indentation area. If the line was | |
348 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
|
349 and if `perl-tab-to-comment' is non-nil (the default), then do the first |
475 | 350 possible action from the following list: |
351 | |
352 1) delete an empty comment | |
353 2) move forward to start of comment, indenting if necessary | |
354 3) move forward to end of line | |
355 4) create an empty comment | |
356 5) move backward to start of comment, indenting if necessary." | |
357 (interactive "P") | |
358 (if arg ; If arg, just indent this line | |
359 (perl-indent-line "\f") | |
360 (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
|
361 (> (current-column) (current-indentation))) |
475 | 362 (insert-tab) |
363 (let (bof lsexp delta (oldpnt (point))) | |
364 (beginning-of-line) | |
365 (setq lsexp (point)) | |
366 (setq bof (perl-beginning-of-function)) | |
367 (goto-char oldpnt) | |
368 (setq delta (perl-indent-line "\f\\|;?#" bof)) | |
369 (and perl-tab-to-comment | |
370 (= oldpnt (point)) ; done if point moved | |
371 (if (listp delta) ; if line starts in a quoted string | |
372 (setq lsexp (or (nth 2 delta) bof)) | |
373 (= delta 0)) ; done if indenting occurred | |
374 (let (eol state) | |
375 (end-of-line) | |
376 (setq eol (point)) | |
377 (if (= (char-after bof) ?=) | |
378 (if (= oldpnt eol) | |
379 (message "In a format statement")) | |
380 (setq state (parse-partial-sexp lsexp eol)) | |
381 (if (nth 3 state) | |
382 (if (= oldpnt eol) ; already at eol in a string | |
383 (message "In a string which starts with a %c." | |
384 (nth 3 state))) | |
385 (if (not (nth 4 state)) | |
386 (if (= oldpnt eol) ; no comment, create one? | |
387 (indent-for-comment)) | |
388 (beginning-of-line) | |
389 (if (re-search-forward comment-start-skip eol 'move) | |
390 (if (eolp) | |
391 (progn ; kill existing comment | |
392 (goto-char (match-beginning 0)) | |
393 (skip-chars-backward " \t") | |
394 (kill-region (point) eol)) | |
395 (if (or (< oldpnt (point)) (= oldpnt eol)) | |
396 (indent-for-comment) ; indent existing comment | |
397 (end-of-line))) | |
398 (if (/= oldpnt eol) | |
399 (end-of-line) | |
400 (message "Use backslash to quote # characters.") | |
401 (ding t)))))))))))) | |
402 | |
403 (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
|
404 "Indent current line as Perl code. |
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
405 Return the amount the indentation |
475 | 406 changed by, or (parse-state) if line starts in a quoted string." |
407 (let ((case-fold-search nil) | |
408 (pos (- (point-max) (point))) | |
409 (bof (or parse-start (save-excursion (perl-beginning-of-function)))) | |
410 beg indent shift-amt) | |
411 (beginning-of-line) | |
412 (setq beg (point)) | |
413 (setq shift-amt | |
414 (cond ((= (char-after bof) ?=) 0) | |
415 ((listp (setq indent (calculate-perl-indent bof))) indent) | |
416 ((looking-at (or nochange perl-nochange)) 0) | |
417 (t | |
418 (skip-chars-forward " \t\f") | |
419 (cond ((looking-at "\\(\\w\\|\\s_\\)+:") | |
420 (setq indent (max 1 (+ indent perl-label-offset)))) | |
421 ((= (following-char) ?}) | |
422 (setq indent (- indent perl-indent-level))) | |
423 ((= (following-char) ?{) | |
424 (setq indent (+ indent perl-brace-offset)))) | |
425 (- indent (current-column))))) | |
426 (skip-chars-forward " \t\f") | |
427 (if (and (numberp shift-amt) (/= 0 shift-amt)) | |
428 (progn (delete-region beg (point)) | |
429 (indent-to indent))) | |
430 ;; If initial point was within line's indentation, | |
431 ;; position after the indentation. Else stay at same point in text. | |
432 (if (> (- (point-max) pos) (point)) | |
433 (goto-char (- (point-max) pos))) | |
434 shift-amt)) | |
435 | |
436 (defun calculate-perl-indent (&optional parse-start) | |
437 "Return appropriate indentation for current line as Perl code. | |
438 In usual case returns an integer: the column to indent to. | |
439 Returns (parse-state) if line starts inside a string." | |
440 (save-excursion | |
441 (beginning-of-line) | |
442 (let ((indent-point (point)) | |
443 (case-fold-search nil) | |
444 (colon-line-end 0) | |
445 state containing-sexp) | |
446 (if parse-start ;used to avoid searching | |
447 (goto-char parse-start) | |
448 (perl-beginning-of-function)) | |
449 (while (< (point) indent-point) ;repeat until right sexp | |
450 (setq parse-start (point)) | |
451 (setq state (parse-partial-sexp (point) indent-point 0)) | |
452 ; state = (depth_in_parens innermost_containing_list last_complete_sexp | |
453 ; string_terminator_or_nil inside_commentp following_quotep | |
454 ; minimum_paren-depth_this_scan) | |
455 ; Parsing stops if depth in parentheses becomes equal to third arg. | |
456 (setq containing-sexp (nth 1 state))) | |
457 (cond ((nth 3 state) state) ; In a quoted string? | |
458 ((null containing-sexp) ; Line is at top level. | |
459 (skip-chars-forward " \t\f") | |
460 (if (= (following-char) ?{) | |
461 0 ; move to beginning of line if it starts a function body | |
462 ;; indent a little if this is a continuation line | |
463 (perl-backward-to-noncomment) | |
464 (if (or (bobp) | |
465 (memq (preceding-char) '(?\; ?\}))) | |
466 0 perl-continued-statement-offset))) | |
467 ((/= (char-after containing-sexp) ?{) | |
468 ;; line is expression, not statement: | |
469 ;; indent to just after the surrounding open. | |
470 (goto-char (1+ containing-sexp)) | |
471 (current-column)) | |
472 (t | |
473 ;; Statement level. Is it a continuation or a new statement? | |
474 ;; Find previous non-comment character. | |
475 (perl-backward-to-noncomment) | |
476 ;; Back up over label lines, since they don't | |
477 ;; affect whether our line is a continuation. | |
478 (while (or (eq (preceding-char) ?\,) | |
479 (and (eq (preceding-char) ?:) | |
480 (memq (char-syntax (char-after (- (point) 2))) | |
481 '(?w ?_)))) | |
482 (if (eq (preceding-char) ?\,) | |
10938
fb2da60a38de
(calculate-perl-indent): When backing up over continuations,
Richard M. Stallman <rms@gnu.org>
parents:
10889
diff
changeset
|
483 (perl-backward-to-start-of-continued-exp containing-sexp) |
fb2da60a38de
(calculate-perl-indent): When backing up over continuations,
Richard M. Stallman <rms@gnu.org>
parents:
10889
diff
changeset
|
484 (beginning-of-line)) |
475 | 485 (perl-backward-to-noncomment)) |
486 ;; Now we get the answer. | |
487 (if (not (memq (preceding-char) '(?\; ?\} ?\{))) | |
488 ;; This line is continuation of preceding line's statement; | |
489 ;; indent perl-continued-statement-offset more than the | |
490 ;; previous line of the statement. | |
491 (progn | |
492 (perl-backward-to-start-of-continued-exp containing-sexp) | |
493 (+ perl-continued-statement-offset (current-column) | |
494 (if (save-excursion (goto-char indent-point) | |
495 (looking-at "[ \t]*{")) | |
496 perl-continued-brace-offset 0))) | |
497 ;; This line starts a new statement. | |
498 ;; Position at last unclosed open. | |
499 (goto-char containing-sexp) | |
500 (or | |
501 ;; If open paren is in col 0, close brace is special | |
502 (and (bolp) | |
503 (save-excursion (goto-char indent-point) | |
504 (looking-at "[ \t]*}")) | |
505 perl-indent-level) | |
506 ;; Is line first statement after an open-brace? | |
507 ;; If no, find that first statement and indent like it. | |
508 (save-excursion | |
509 (forward-char 1) | |
510 ;; Skip over comments and labels following openbrace. | |
511 (while (progn | |
512 (skip-chars-forward " \t\f\n") | |
513 (cond ((looking-at ";?#") | |
514 (forward-line 1) t) | |
515 ((looking-at "\\(\\w\\|\\s_\\)+:") | |
516 (save-excursion | |
517 (end-of-line) | |
518 (setq colon-line-end (point))) | |
519 (search-forward ":"))))) | |
520 ;; The first following code counts | |
521 ;; if it is before the line we want to indent. | |
522 (and (< (point) indent-point) | |
523 (if (> colon-line-end (point)) | |
524 (- (current-indentation) perl-label-offset) | |
525 (current-column)))) | |
526 ;; If no previous statement, | |
527 ;; indent it relative to line brace is on. | |
528 ;; For open paren in column zero, don't let statement | |
529 ;; start there too. If perl-indent-level is zero, | |
530 ;; use perl-brace-offset + perl-continued-statement-offset | |
531 ;; For open-braces not the first thing in a line, | |
532 ;; add in perl-brace-imaginary-offset. | |
533 (+ (if (and (bolp) (zerop perl-indent-level)) | |
534 (+ perl-brace-offset perl-continued-statement-offset) | |
535 perl-indent-level) | |
536 ;; Move back over whitespace before the openbrace. | |
537 ;; If openbrace is not first nonwhite thing on the line, | |
538 ;; add the perl-brace-imaginary-offset. | |
539 (progn (skip-chars-backward " \t") | |
540 (if (bolp) 0 perl-brace-imaginary-offset)) | |
541 ;; If the openbrace is preceded by a parenthesized exp, | |
542 ;; move to the beginning of that; | |
543 ;; possibly a different line | |
544 (progn | |
545 (if (eq (preceding-char) ?\)) | |
546 (forward-sexp -1)) | |
547 ;; Get initial indentation of the line we are on. | |
548 (current-indentation)))))))))) | |
549 | |
550 (defun perl-backward-to-noncomment () | |
551 "Move point backward to after the first non-white-space, skipping comments." | |
552 (interactive) | |
553 (let (opoint stop) | |
554 (while (not stop) | |
555 (setq opoint (point)) | |
556 (beginning-of-line) | |
557 (if (re-search-forward comment-start-skip opoint 'move 1) | |
558 (progn (goto-char (match-end 1)) | |
559 (skip-chars-forward ";"))) | |
560 (skip-chars-backward " \t\f") | |
561 (setq stop (or (bobp) | |
562 (not (bolp)) | |
563 (forward-char -1)))))) | |
564 | |
565 (defun perl-backward-to-start-of-continued-exp (lim) | |
566 (if (= (preceding-char) ?\)) | |
567 (forward-sexp -1)) | |
568 (beginning-of-line) | |
569 (if (<= (point) lim) | |
570 (goto-char (1+ lim))) | |
571 (skip-chars-forward " \t\f")) | |
572 | |
573 ;; note: this may be slower than the c-mode version, but I can understand it. | |
574 (defun indent-perl-exp () | |
575 "Indent each line of the Perl grouping following point." | |
576 (interactive) | |
577 (let* ((case-fold-search nil) | |
578 (oldpnt (point-marker)) | |
579 (bof-mark (save-excursion | |
580 (end-of-line 2) | |
581 (perl-beginning-of-function) | |
582 (point-marker))) | |
583 eol last-mark lsexp-mark delta) | |
584 (if (= (char-after (marker-position bof-mark)) ?=) | |
585 (message "Can't indent a format statement") | |
586 (message "Indenting Perl expression...") | |
587 (save-excursion (end-of-line) (setq eol (point))) | |
588 (save-excursion ; locate matching close paren | |
589 (while (and (not (eobp)) (<= (point) eol)) | |
590 (parse-partial-sexp (point) (point-max) 0)) | |
591 (setq last-mark (point-marker))) | |
592 (setq lsexp-mark bof-mark) | |
593 (beginning-of-line) | |
594 (while (< (point) (marker-position last-mark)) | |
595 (setq delta (perl-indent-line nil (marker-position bof-mark))) | |
596 (if (numberp delta) ; unquoted start-of-line? | |
597 (progn | |
598 (if (eolp) | |
599 (delete-horizontal-space)) | |
600 (setq lsexp-mark (point-marker)))) | |
601 (end-of-line) | |
602 (setq eol (point)) | |
603 (if (nth 4 (parse-partial-sexp (marker-position lsexp-mark) eol)) | |
604 (progn ; line ends in a comment | |
605 (beginning-of-line) | |
606 (if (or (not (looking-at "\\s-*;?#")) | |
607 (listp delta) | |
608 (and (/= 0 delta) | |
609 (= (- (current-indentation) delta) comment-column))) | |
610 (if (re-search-forward comment-start-skip eol t) | |
611 (indent-for-comment))))) ; indent existing comment | |
612 (forward-line 1)) | |
613 (goto-char (marker-position oldpnt)) | |
614 (message "Indenting Perl expression...done")))) | |
615 | |
616 (defun perl-beginning-of-function (&optional arg) | |
617 "Move backward to next beginning-of-function, or as far as possible. | |
618 With argument, repeat that many times; negative args move forward. | |
619 Returns new value of point in all cases." | |
620 (interactive "p") | |
621 (or arg (setq arg 1)) | |
622 (if (< arg 0) (forward-char 1)) | |
623 (and (/= arg 0) | |
624 (re-search-backward "^\\s(\\|^\\s-*sub\\b[^{]+{\\|^\\s-*format\\b[^=]*=\\|^\\." | |
625 nil 'move arg) | |
626 (goto-char (1- (match-end 0)))) | |
627 (point)) | |
628 | |
629 ;; note: this routine is adapted directly from emacs lisp.el, end-of-defun; | |
630 ;; no bugs have been removed :-) | |
631 (defun perl-end-of-function (&optional arg) | |
632 "Move forward to next end-of-function. | |
633 The end of a function is found by moving forward from the beginning of one. | |
634 With argument, repeat that many times; negative args move backward." | |
635 (interactive "p") | |
636 (or arg (setq arg 1)) | |
637 (let ((first t)) | |
638 (while (and (> arg 0) (< (point) (point-max))) | |
639 (let ((pos (point)) npos) | |
640 (while (progn | |
641 (if (and first | |
642 (progn | |
643 (forward-char 1) | |
644 (perl-beginning-of-function 1) | |
645 (not (bobp)))) | |
646 nil | |
647 (or (bobp) (forward-char -1)) | |
648 (perl-beginning-of-function -1)) | |
649 (setq first nil) | |
650 (forward-list 1) | |
651 (skip-chars-forward " \t") | |
652 (if (looking-at "[#\n]") | |
653 (forward-line 1)) | |
654 (<= (point) pos)))) | |
655 (setq arg (1- arg))) | |
656 (while (< arg 0) | |
657 (let ((pos (point))) | |
658 (perl-beginning-of-function 1) | |
659 (forward-sexp 1) | |
660 (forward-line 1) | |
661 (if (>= (point) pos) | |
662 (if (progn (perl-beginning-of-function 2) (not (bobp))) | |
663 (progn | |
664 (forward-list 1) | |
665 (skip-chars-forward " \t") | |
666 (if (looking-at "[#\n]") | |
667 (forward-line 1))) | |
668 (goto-char (point-min))))) | |
669 (setq arg (1+ arg))))) | |
670 | |
671 (defun mark-perl-function () | |
672 "Put mark at end of Perl function, point at beginning." | |
673 (interactive) | |
674 (push-mark (point)) | |
675 (perl-end-of-function) | |
676 (push-mark (point)) | |
677 (perl-beginning-of-function) | |
678 (backward-paragraph)) | |
679 | |
680 ;;;;;;;; That's all, folks! ;;;;;;;;; |