Mercurial > emacs
annotate lisp/progmodes/perl-mode.el @ 37678:ebec0594dece
(compile-files): Redirect output of chmod to
/dev/null.
| author | Gerd Moellmann <gerd@gnu.org> |
|---|---|
| date | Fri, 11 May 2001 10:53:56 +0000 |
| parents | d3eedbb7bb46 |
| children | e0beb50b7def |
| 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 |
| 20960 | 102 (defgroup perl nil |
| 103 "Major mode for editing Perl code." | |
| 104 :prefix "perl-" | |
| 105 :group 'languages) | |
| 106 | |
| 475 | 107 (defvar perl-mode-abbrev-table nil |
| 108 "Abbrev table in use in perl-mode buffers.") | |
| 109 (define-abbrev-table 'perl-mode-abbrev-table ()) | |
| 110 | |
| 111 (defvar perl-mode-map () | |
| 112 "Keymap used in Perl mode.") | |
| 113 (if perl-mode-map | |
| 114 () | |
| 115 (setq perl-mode-map (make-sparse-keymap)) | |
| 116 (define-key perl-mode-map "{" 'electric-perl-terminator) | |
| 117 (define-key perl-mode-map "}" 'electric-perl-terminator) | |
| 118 (define-key perl-mode-map ";" 'electric-perl-terminator) | |
| 119 (define-key perl-mode-map ":" 'electric-perl-terminator) | |
| 120 (define-key perl-mode-map "\e\C-a" 'perl-beginning-of-function) | |
| 121 (define-key perl-mode-map "\e\C-e" 'perl-end-of-function) | |
| 122 (define-key perl-mode-map "\e\C-h" 'mark-perl-function) | |
| 123 (define-key perl-mode-map "\e\C-q" 'indent-perl-exp) | |
| 124 (define-key perl-mode-map "\177" 'backward-delete-char-untabify) | |
| 125 (define-key perl-mode-map "\t" 'perl-indent-command)) | |
| 126 | |
| 127 (autoload 'c-macro-expand "cmacexp" | |
| 128 "Display the result of expanding all C macros occurring in the region. | |
| 129 The expansion is entirely correct because it uses the C preprocessor." | |
| 130 t) | |
| 131 | |
| 132 (defvar perl-mode-syntax-table nil | |
| 133 "Syntax table in use in perl-mode buffers.") | |
| 134 | |
| 135 (if perl-mode-syntax-table | |
| 136 () | |
| 137 (setq perl-mode-syntax-table (make-syntax-table (standard-syntax-table))) | |
| 138 (modify-syntax-entry ?\n ">" 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 (modify-syntax-entry ?= "." perl-mode-syntax-table) | |
| 150 (modify-syntax-entry ?> "." perl-mode-syntax-table) | |
| 151 (modify-syntax-entry ?\\ "\\" perl-mode-syntax-table) | |
| 152 (modify-syntax-entry ?` "\"" perl-mode-syntax-table) | |
| 153 (modify-syntax-entry ?| "." perl-mode-syntax-table) | |
| 154 ) | |
| 155 | |
|
12677
1504d644c6bc
(perl-imenu-generic-expression) New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11370
diff
changeset
|
156 (defvar perl-imenu-generic-expression |
|
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 ;; Functions |
|
1504d644c6bc
(perl-imenu-generic-expression) New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11370
diff
changeset
|
159 (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
|
160 ;;Variables |
|
1504d644c6bc
(perl-imenu-generic-expression) New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11370
diff
changeset
|
161 ("Variables" "^\\([$@%][-A-Za-z0-9+_:]+\\)\\s-*=" 1 ) |
|
14633
7e5e4b8c8d10
(perl-imenu-generic-expression): Recognize packages.
Karl Heuer <kwzh@gnu.org>
parents:
14363
diff
changeset
|
162 ("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
|
163 ) |
|
1504d644c6bc
(perl-imenu-generic-expression) New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11370
diff
changeset
|
164 "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
|
165 |
|
14363
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
166 ;; 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
|
167 ;; Jim Campbell <jec@murzim.ca.boeing.com>. |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
168 |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
169 (defconst perl-font-lock-keywords-1 |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
170 '(;; What is this for? |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
171 ;;("\\(--- .* ---\\|=== .* ===\\)" . font-lock-string-face) |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
172 ;; |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
173 ;; 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
|
174 ;; Ilya Zakharevich <ilya@math.ohio-state.edu> thinks this is a bad idea. |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
175 ("^#[ \t]*include[ \t]+\\(<[^>\"\n]+>\\)" 1 font-lock-string-face) |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
176 ("^#[ \t]*define[ \t]+\\(\\sw+\\)(" 1 font-lock-function-name-face) |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
177 ("^#[ \t]*if\\>" |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
178 ("\\<\\(defined\\)\\>[ \t]*(?\\(\\sw+\\)?" nil nil |
|
20953
f3f9df46d008
Changed font-lock-reference-face to font-lock-constant-face.
Simon Marshall <simon@gnu.org>
parents:
20459
diff
changeset
|
179 (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
|
180 ("^#[ \t]*\\(\\sw+\\)\\>[ \t]*\\(\\sw+\\)?" |
|
20953
f3f9df46d008
Changed font-lock-reference-face to font-lock-constant-face.
Simon Marshall <simon@gnu.org>
parents:
20459
diff
changeset
|
181 (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
|
182 ;; |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
183 ;; Fontify function and package names in declarations. |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
184 ("\\<\\(package\\|sub\\)\\>[ \t]*\\(\\sw+\\)?" |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
185 (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
|
186 ("\\<\\(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
|
187 (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
|
188 "Subdued level highlighting for Perl mode.") |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
189 |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
190 (defconst perl-font-lock-keywords-2 |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
191 (append perl-font-lock-keywords-1 |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
192 (list |
|
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 ;; Fontify keywords, except those fontified otherwise. |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
195 ; (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
|
196 ; "for" "foreach" "exit" "die" |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
197 ; "BEGIN" "END" "return" "exec" "eval")) |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
198 (concat "\\<\\(" |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
199 "BEGIN\\|END\\|d\\(ie\\|o\\|ump\\)\\|" |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
200 "e\\(ls\\(e\\|if\\)\\|val\\|x\\(ec\\|it\\)\\)\\|" |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
201 "for\\(\\|each\\)\\|if\\|return\\|un\\(less\\|til\\)\\|while" |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
202 "\\)\\>") |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
203 ;; |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
204 ;; Fontify local and my keywords as types. |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
205 '("\\<\\(local\\|my\\)\\>" . font-lock-type-face) |
|
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 function, variable and file name references. |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
208 '("&\\(\\sw+\\)" 1 font-lock-function-name-face) |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
209 ;; 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
|
210 ;;'("[$@%*][#{]?\\(\\sw+\\)" 1 font-lock-variable-name-face) |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
211 '("[$*]{?\\(\\sw+\\)" 1 font-lock-variable-name-face) |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
212 '("\\([@%]\\|\\$#\\)\\(\\sw+\\)" |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
213 (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
|
214 '("<\\(\\sw+\\)>" 1 font-lock-constant-face) |
|
14363
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
215 ;; |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
216 ;; 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
|
217 '("\\<\\(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
|
218 (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
|
219 '("^[ \t]*\\(\\sw+\\)[ \t]*:[^:]" 1 font-lock-constant-face))) |
|
14363
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
220 "Gaudy level highlighting for Perl mode.") |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
221 |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
222 (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
|
223 "Default expressions to highlight in Perl mode.") |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
224 |
|
9386
17dfca2d42e2
(perl-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9060
diff
changeset
|
225 |
| 20960 | 226 (defcustom perl-indent-level 4 |
| 227 "*Indentation of Perl statements with respect to containing block." | |
| 228 :type 'integer | |
| 229 :group 'perl) | |
| 230 (defcustom perl-continued-statement-offset 4 | |
| 231 "*Extra indent for lines not starting new statements." | |
| 232 :type 'integer | |
| 233 :group 'perl) | |
| 234 (defcustom perl-continued-brace-offset -4 | |
| 475 | 235 "*Extra indent for substatements that start with open-braces. |
| 20960 | 236 This is in addition to `perl-continued-statement-offset'." |
| 237 :type 'integer | |
| 238 :group 'perl) | |
| 239 (defcustom perl-brace-offset 0 | |
| 240 "*Extra indentation for braces, compared with other text in same context." | |
| 241 :type 'integer | |
| 242 :group 'perl) | |
| 243 (defcustom perl-brace-imaginary-offset 0 | |
| 244 "*Imagined indentation of an open brace that actually follows a statement." | |
| 245 :type 'integer | |
| 246 :group 'perl) | |
| 247 (defcustom perl-label-offset -2 | |
| 248 "*Offset of Perl label lines relative to usual indentation." | |
| 249 :type 'integer | |
| 250 :group 'perl) | |
| 475 | 251 |
| 20960 | 252 (defcustom perl-tab-always-indent t |
|
5589
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
253 "*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
|
254 Otherwise it inserts a tab character if you type it past the first |
| 20960 | 255 nonwhite character on the line." |
| 256 :type 'boolean | |
| 257 :group 'perl) | |
| 475 | 258 |
|
10807
50f00b298a2d
(perl-tab-to-comment): Default is nil.
Richard M. Stallman <rms@gnu.org>
parents:
9480
diff
changeset
|
259 ;; 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
|
260 ;; conventions -- rms. |
| 20960 | 261 (defcustom perl-tab-to-comment nil |
|
5589
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
262 "*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
|
263 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
|
264 existing comment, moves to end-of-line, or if at end-of-line already, |
| 20960 | 265 create a new comment." |
| 266 :type 'boolean | |
| 267 :group 'perl) | |
| 475 | 268 |
| 20960 | 269 (defcustom perl-nochange ";?#\\|\f\\|\\s(\\|\\(\\w\\|\\s_\\)+:" |
| 270 "*Lines starting with this regular expression are not auto-indented." | |
| 271 :type 'regexp | |
| 272 :group 'perl) | |
| 475 | 273 |
|
21857
a22711be4750
(perl-mode): Add autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents:
20960
diff
changeset
|
274 ;;;###autoload |
| 475 | 275 (defun perl-mode () |
| 276 "Major mode for editing Perl code. | |
| 277 Expression and list commands understand all Perl brackets. | |
| 278 Tab indents for Perl code. | |
| 279 Comments are delimited with # ... \\n. | |
| 280 Paragraphs are separated by blank lines only. | |
| 281 Delete converts tabs to spaces as it moves back. | |
| 282 \\{perl-mode-map} | |
| 283 Variables controlling indentation style: | |
| 284 perl-tab-always-indent | |
| 285 Non-nil means TAB in Perl mode should always indent the current line, | |
| 286 regardless of where in the line point is when the TAB command is used. | |
| 287 perl-tab-to-comment | |
| 288 Non-nil means that for lines which don't need indenting, TAB will | |
| 289 either delete an empty comment, indent an existing comment, move | |
| 290 to end-of-line, or if at end-of-line already, create a new comment. | |
| 291 perl-nochange | |
|
5589
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
292 Lines starting with this regular expression are not auto-indented. |
| 475 | 293 perl-indent-level |
| 294 Indentation of Perl statements within surrounding block. | |
| 295 The surrounding block's indentation is the indentation | |
| 296 of the line on which the open-brace appears. | |
| 297 perl-continued-statement-offset | |
| 298 Extra indentation given to a substatement, such as the | |
| 299 then-clause of an if or body of a while. | |
| 300 perl-continued-brace-offset | |
| 301 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
|
302 This is in addition to `perl-continued-statement-offset'. |
| 475 | 303 perl-brace-offset |
| 304 Extra indentation for line if it starts with an open brace. | |
| 305 perl-brace-imaginary-offset | |
| 306 An open brace following other text is treated as if it were | |
| 307 this far to the right of the start of its line. | |
| 308 perl-label-offset | |
| 309 Extra indentation for line that is a label. | |
| 310 | |
| 311 Various indentation styles: K&R BSD BLK GNU LW | |
| 312 perl-indent-level 5 8 0 2 4 | |
| 313 perl-continued-statement-offset 5 8 4 2 4 | |
| 314 perl-continued-brace-offset 0 0 0 0 -4 | |
| 315 perl-brace-offset -5 -8 0 0 0 | |
| 316 perl-brace-imaginary-offset 0 0 4 0 0 | |
| 317 perl-label-offset -5 -8 -2 -2 -2 | |
| 318 | |
|
5589
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
319 Turning on Perl mode runs the normal hook `perl-mode-hook'." |
| 475 | 320 (interactive) |
| 321 (kill-all-local-variables) | |
| 322 (use-local-map perl-mode-map) | |
| 323 (setq major-mode 'perl-mode) | |
| 324 (setq mode-name "Perl") | |
| 325 (setq local-abbrev-table perl-mode-abbrev-table) | |
| 326 (set-syntax-table perl-mode-syntax-table) | |
| 327 (make-local-variable 'paragraph-start) | |
|
10889
de7673bb5d19
(perl-mode): Remove ^ from paragraph-start & paragraph-separate.
Boris Goldowsky <boris@gnu.org>
parents:
10807
diff
changeset
|
328 (setq paragraph-start (concat "$\\|" page-delimiter)) |
| 475 | 329 (make-local-variable 'paragraph-separate) |
| 330 (setq paragraph-separate paragraph-start) | |
| 331 (make-local-variable 'paragraph-ignore-fill-prefix) | |
| 332 (setq paragraph-ignore-fill-prefix t) | |
| 333 (make-local-variable 'indent-line-function) | |
| 334 (setq indent-line-function 'perl-indent-line) | |
| 335 (make-local-variable 'require-final-newline) | |
| 336 (setq require-final-newline t) | |
| 337 (make-local-variable 'comment-start) | |
| 338 (setq comment-start "# ") | |
| 339 (make-local-variable 'comment-end) | |
| 340 (setq comment-end "") | |
| 341 (make-local-variable 'comment-start-skip) | |
| 342 (setq comment-start-skip "\\(^\\|\\s-\\);?#+ *") | |
|
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
882
diff
changeset
|
343 (make-local-variable 'comment-indent-function) |
|
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
882
diff
changeset
|
344 (setq comment-indent-function 'perl-comment-indent) |
| 475 | 345 (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
|
346 (setq parse-sexp-ignore-comments t) |
|
14363
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
347 ;; Tell font-lock.el how to handle Perl. |
|
9480
8a36332efbf2
* perl-mode.el: (perl-mode): Set font-lock-defaults.
Simon Marshall <simon@gnu.org>
parents:
9386
diff
changeset
|
348 (make-local-variable 'font-lock-defaults) |
|
14363
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
349 (setq font-lock-defaults '((perl-font-lock-keywords |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
350 perl-font-lock-keywords-1 |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
351 perl-font-lock-keywords-2) |
|
754031d2354f
Support for Font Lock mode.
Simon Marshall <simon@gnu.org>
parents:
14169
diff
changeset
|
352 nil nil ((?\_ . "w")))) |
|
12677
1504d644c6bc
(perl-imenu-generic-expression) New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11370
diff
changeset
|
353 ;; Tell imenu how to handle Perl. |
|
1504d644c6bc
(perl-imenu-generic-expression) New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11370
diff
changeset
|
354 (make-local-variable 'imenu-generic-expression) |
|
1504d644c6bc
(perl-imenu-generic-expression) New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11370
diff
changeset
|
355 (setq imenu-generic-expression perl-imenu-generic-expression) |
| 20459 | 356 (setq imenu-case-fold-search nil) |
| 475 | 357 (run-hooks 'perl-mode-hook)) |
| 358 | |
| 359 ;; This is used by indent-for-comment | |
| 360 ;; to decide how much to indent a comment in Perl code | |
| 361 ;; based on its context. | |
| 362 (defun perl-comment-indent () | |
| 363 (if (and (bolp) (not (eolp))) | |
| 364 0 ;Existing comment at bol stays there. | |
| 365 (save-excursion | |
| 366 (skip-chars-backward " \t") | |
|
11370
d1dc644021a4
(perl-comment-indent): Make extra space only when
Richard M. Stallman <rms@gnu.org>
parents:
10938
diff
changeset
|
367 (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
|
368 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
|
369 (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
|
370 comment-column)))) |
| 475 | 371 |
| 372 (defun electric-perl-terminator (arg) | |
|
5589
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
373 "Insert character and adjust indentation. |
|
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
374 If at end-of-line, and not in a comment or a quote, correct the's indentation." |
| 475 | 375 (interactive "P") |
| 376 (let ((insertpos (point))) | |
| 377 (and (not arg) ; decide whether to indent | |
| 378 (eolp) | |
| 379 (save-excursion | |
| 380 (beginning-of-line) | |
| 381 (and (not ; eliminate comments quickly | |
|
16472
dbfab9e8b6d8
(electric-perl-terminator, perl-indent-command):
Richard M. Stallman <rms@gnu.org>
parents:
16358
diff
changeset
|
382 (and comment-start-skip |
|
dbfab9e8b6d8
(electric-perl-terminator, perl-indent-command):
Richard M. Stallman <rms@gnu.org>
parents:
16358
diff
changeset
|
383 (re-search-forward comment-start-skip insertpos t)) ) |
| 475 | 384 (or (/= last-command-char ?:) |
| 385 ;; Colon is special only after a label .... | |
| 386 (looking-at "\\s-*\\(\\w\\|\\s_\\)+$")) | |
| 387 (let ((pps (parse-partial-sexp | |
| 388 (perl-beginning-of-function) insertpos))) | |
| 389 (not (or (nth 3 pps) (nth 4 pps) (nth 5 pps)))))) | |
| 390 (progn ; must insert, indent, delete | |
| 391 (insert-char last-command-char 1) | |
| 392 (perl-indent-line) | |
| 393 (delete-char -1)))) | |
| 394 (self-insert-command (prefix-numeric-value arg))) | |
| 395 | |
| 396 ;; not used anymore, but may be useful someday: | |
| 397 ;;(defun perl-inside-parens-p () | |
| 398 ;; (condition-case () | |
| 399 ;; (save-excursion | |
| 400 ;; (save-restriction | |
| 401 ;; (narrow-to-region (point) | |
| 402 ;; (perl-beginning-of-function)) | |
| 403 ;; (goto-char (point-max)) | |
| 404 ;; (= (char-after (or (scan-lists (point) -1 1) (point-min))) ?\())) | |
| 405 ;; (error nil))) | |
| 406 | |
| 407 (defun perl-indent-command (&optional arg) | |
| 408 "Indent current line as Perl code, or optionally, insert a tab character. | |
| 409 | |
| 410 With an argument, indent the current line, regardless of other options. | |
| 411 | |
|
5589
608926d1bd70
Change defconsts to defvars. Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
4455
diff
changeset
|
412 If `perl-tab-always-indent' is nil and point is not in the indentation |
| 475 | 413 area at the beginning of the line, simply insert a tab. |
| 414 | |
| 415 Otherwise, indent the current line. If point was within the indentation | |
| 416 area it is moved to the end of the indentation area. If the line was | |
| 417 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
|
418 and if `perl-tab-to-comment' is non-nil (the default), then do the first |
| 475 | 419 possible action from the following list: |
| 420 | |
| 421 1) delete an empty comment | |
| 422 2) move forward to start of comment, indenting if necessary | |
| 423 3) move forward to end of line | |
| 424 4) create an empty comment | |
| 425 5) move backward to start of comment, indenting if necessary." | |
| 426 (interactive "P") | |
| 427 (if arg ; If arg, just indent this line | |
| 428 (perl-indent-line "\f") | |
| 429 (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
|
430 (> (current-column) (current-indentation))) |
| 475 | 431 (insert-tab) |
| 432 (let (bof lsexp delta (oldpnt (point))) | |
| 433 (beginning-of-line) | |
| 434 (setq lsexp (point)) | |
| 435 (setq bof (perl-beginning-of-function)) | |
| 436 (goto-char oldpnt) | |
| 437 (setq delta (perl-indent-line "\f\\|;?#" bof)) | |
| 438 (and perl-tab-to-comment | |
| 439 (= oldpnt (point)) ; done if point moved | |
| 440 (if (listp delta) ; if line starts in a quoted string | |
| 441 (setq lsexp (or (nth 2 delta) bof)) | |
| 442 (= delta 0)) ; done if indenting occurred | |
| 443 (let (eol state) | |
| 444 (end-of-line) | |
| 445 (setq eol (point)) | |
| 446 (if (= (char-after bof) ?=) | |
| 447 (if (= oldpnt eol) | |
| 448 (message "In a format statement")) | |
| 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) | |
| 485 ((listp (setq indent (calculate-perl-indent bof))) indent) | |
| 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 | |
| 506 (defun calculate-perl-indent (&optional parse-start) | |
| 507 "Return appropriate indentation for current line as Perl code. | |
| 508 In usual case returns an integer: the column to indent to. | |
| 509 Returns (parse-state) if line starts inside a string." | |
| 510 (save-excursion | |
| 511 (beginning-of-line) | |
| 512 (let ((indent-point (point)) | |
| 513 (case-fold-search nil) | |
| 514 (colon-line-end 0) | |
| 515 state containing-sexp) | |
| 516 (if parse-start ;used to avoid searching | |
| 517 (goto-char parse-start) | |
| 518 (perl-beginning-of-function)) | |
| 519 (while (< (point) indent-point) ;repeat until right sexp | |
| 520 (setq parse-start (point)) | |
| 521 (setq state (parse-partial-sexp (point) indent-point 0)) | |
| 522 ; state = (depth_in_parens innermost_containing_list last_complete_sexp | |
| 523 ; string_terminator_or_nil inside_commentp following_quotep | |
| 524 ; minimum_paren-depth_this_scan) | |
| 525 ; Parsing stops if depth in parentheses becomes equal to third arg. | |
| 526 (setq containing-sexp (nth 1 state))) | |
| 527 (cond ((nth 3 state) state) ; In a quoted string? | |
| 528 ((null containing-sexp) ; Line is at top level. | |
| 529 (skip-chars-forward " \t\f") | |
| 530 (if (= (following-char) ?{) | |
| 531 0 ; move to beginning of line if it starts a function body | |
| 532 ;; indent a little if this is a continuation line | |
| 533 (perl-backward-to-noncomment) | |
| 534 (if (or (bobp) | |
| 535 (memq (preceding-char) '(?\; ?\}))) | |
| 536 0 perl-continued-statement-offset))) | |
| 537 ((/= (char-after containing-sexp) ?{) | |
| 538 ;; line is expression, not statement: | |
| 539 ;; indent to just after the surrounding open. | |
| 540 (goto-char (1+ containing-sexp)) | |
|
17338
a76c4ee8f2e7
(calculate-perl-indent): When indenting under a
Richard M. Stallman <rms@gnu.org>
parents:
16585
diff
changeset
|
541 (skip-chars-forward " \t") |
| 475 | 542 (current-column)) |
| 543 (t | |
| 544 ;; Statement level. Is it a continuation or a new statement? | |
| 545 ;; Find previous non-comment character. | |
| 546 (perl-backward-to-noncomment) | |
| 547 ;; Back up over label lines, since they don't | |
| 548 ;; affect whether our line is a continuation. | |
| 549 (while (or (eq (preceding-char) ?\,) | |
| 550 (and (eq (preceding-char) ?:) | |
| 551 (memq (char-syntax (char-after (- (point) 2))) | |
| 552 '(?w ?_)))) | |
| 553 (if (eq (preceding-char) ?\,) | |
|
10938
fb2da60a38de
(calculate-perl-indent): When backing up over continuations,
Richard M. Stallman <rms@gnu.org>
parents:
10889
diff
changeset
|
554 (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
|
555 (beginning-of-line)) |
| 475 | 556 (perl-backward-to-noncomment)) |
| 557 ;; Now we get the answer. | |
| 558 (if (not (memq (preceding-char) '(?\; ?\} ?\{))) | |
| 559 ;; This line is continuation of preceding line's statement; | |
| 560 ;; indent perl-continued-statement-offset more than the | |
| 561 ;; previous line of the statement. | |
| 562 (progn | |
| 563 (perl-backward-to-start-of-continued-exp containing-sexp) | |
| 564 (+ perl-continued-statement-offset (current-column) | |
| 565 (if (save-excursion (goto-char indent-point) | |
| 566 (looking-at "[ \t]*{")) | |
| 567 perl-continued-brace-offset 0))) | |
| 568 ;; This line starts a new statement. | |
| 569 ;; Position at last unclosed open. | |
| 570 (goto-char containing-sexp) | |
| 571 (or | |
| 572 ;; If open paren is in col 0, close brace is special | |
| 573 (and (bolp) | |
| 574 (save-excursion (goto-char indent-point) | |
| 575 (looking-at "[ \t]*}")) | |
| 576 perl-indent-level) | |
| 577 ;; Is line first statement after an open-brace? | |
| 578 ;; If no, find that first statement and indent like it. | |
| 579 (save-excursion | |
| 580 (forward-char 1) | |
| 581 ;; Skip over comments and labels following openbrace. | |
| 582 (while (progn | |
| 583 (skip-chars-forward " \t\f\n") | |
| 584 (cond ((looking-at ";?#") | |
| 585 (forward-line 1) t) | |
| 586 ((looking-at "\\(\\w\\|\\s_\\)+:") | |
| 587 (save-excursion | |
| 588 (end-of-line) | |
| 589 (setq colon-line-end (point))) | |
| 590 (search-forward ":"))))) | |
| 591 ;; The first following code counts | |
| 592 ;; if it is before the line we want to indent. | |
| 593 (and (< (point) indent-point) | |
| 594 (if (> colon-line-end (point)) | |
| 595 (- (current-indentation) perl-label-offset) | |
| 596 (current-column)))) | |
| 597 ;; If no previous statement, | |
| 598 ;; indent it relative to line brace is on. | |
| 599 ;; For open paren in column zero, don't let statement | |
| 600 ;; start there too. If perl-indent-level is zero, | |
| 601 ;; use perl-brace-offset + perl-continued-statement-offset | |
| 602 ;; For open-braces not the first thing in a line, | |
| 603 ;; add in perl-brace-imaginary-offset. | |
| 604 (+ (if (and (bolp) (zerop perl-indent-level)) | |
| 605 (+ perl-brace-offset perl-continued-statement-offset) | |
| 606 perl-indent-level) | |
| 607 ;; Move back over whitespace before the openbrace. | |
| 608 ;; If openbrace is not first nonwhite thing on the line, | |
| 609 ;; add the perl-brace-imaginary-offset. | |
| 610 (progn (skip-chars-backward " \t") | |
| 611 (if (bolp) 0 perl-brace-imaginary-offset)) | |
| 612 ;; If the openbrace is preceded by a parenthesized exp, | |
| 613 ;; move to the beginning of that; | |
| 614 ;; possibly a different line | |
| 615 (progn | |
| 616 (if (eq (preceding-char) ?\)) | |
| 617 (forward-sexp -1)) | |
| 618 ;; Get initial indentation of the line we are on. | |
| 619 (current-indentation)))))))))) | |
| 620 | |
| 621 (defun perl-backward-to-noncomment () | |
| 622 "Move point backward to after the first non-white-space, skipping comments." | |
| 623 (interactive) | |
| 624 (let (opoint stop) | |
| 625 (while (not stop) | |
| 626 (setq opoint (point)) | |
| 627 (beginning-of-line) | |
|
16472
dbfab9e8b6d8
(electric-perl-terminator, perl-indent-command):
Richard M. Stallman <rms@gnu.org>
parents:
16358
diff
changeset
|
628 (if (and comment-start-skip |
|
dbfab9e8b6d8
(electric-perl-terminator, perl-indent-command):
Richard M. Stallman <rms@gnu.org>
parents:
16358
diff
changeset
|
629 (re-search-forward comment-start-skip opoint 'move 1)) |
| 475 | 630 (progn (goto-char (match-end 1)) |
| 631 (skip-chars-forward ";"))) | |
| 632 (skip-chars-backward " \t\f") | |
| 633 (setq stop (or (bobp) | |
| 634 (not (bolp)) | |
| 635 (forward-char -1)))))) | |
| 636 | |
| 637 (defun perl-backward-to-start-of-continued-exp (lim) | |
| 638 (if (= (preceding-char) ?\)) | |
| 639 (forward-sexp -1)) | |
| 640 (beginning-of-line) | |
| 641 (if (<= (point) lim) | |
| 642 (goto-char (1+ lim))) | |
| 643 (skip-chars-forward " \t\f")) | |
| 644 | |
| 645 ;; note: this may be slower than the c-mode version, but I can understand it. | |
| 646 (defun indent-perl-exp () | |
| 647 "Indent each line of the Perl grouping following point." | |
| 648 (interactive) | |
| 649 (let* ((case-fold-search nil) | |
| 650 (oldpnt (point-marker)) | |
| 651 (bof-mark (save-excursion | |
| 652 (end-of-line 2) | |
| 653 (perl-beginning-of-function) | |
| 654 (point-marker))) | |
| 655 eol last-mark lsexp-mark delta) | |
| 656 (if (= (char-after (marker-position bof-mark)) ?=) | |
| 657 (message "Can't indent a format statement") | |
| 658 (message "Indenting Perl expression...") | |
| 659 (save-excursion (end-of-line) (setq eol (point))) | |
| 660 (save-excursion ; locate matching close paren | |
| 661 (while (and (not (eobp)) (<= (point) eol)) | |
| 662 (parse-partial-sexp (point) (point-max) 0)) | |
| 663 (setq last-mark (point-marker))) | |
| 664 (setq lsexp-mark bof-mark) | |
| 665 (beginning-of-line) | |
| 666 (while (< (point) (marker-position last-mark)) | |
| 667 (setq delta (perl-indent-line nil (marker-position bof-mark))) | |
| 668 (if (numberp delta) ; unquoted start-of-line? | |
| 669 (progn | |
| 670 (if (eolp) | |
| 671 (delete-horizontal-space)) | |
| 672 (setq lsexp-mark (point-marker)))) | |
| 673 (end-of-line) | |
| 674 (setq eol (point)) | |
| 675 (if (nth 4 (parse-partial-sexp (marker-position lsexp-mark) eol)) | |
| 676 (progn ; line ends in a comment | |
| 677 (beginning-of-line) | |
| 678 (if (or (not (looking-at "\\s-*;?#")) | |
| 679 (listp delta) | |
| 680 (and (/= 0 delta) | |
| 681 (= (- (current-indentation) delta) comment-column))) | |
|
16472
dbfab9e8b6d8
(electric-perl-terminator, perl-indent-command):
Richard M. Stallman <rms@gnu.org>
parents:
16358
diff
changeset
|
682 (if (and comment-start-skip |
|
dbfab9e8b6d8
(electric-perl-terminator, perl-indent-command):
Richard M. Stallman <rms@gnu.org>
parents:
16358
diff
changeset
|
683 (re-search-forward comment-start-skip eol t)) |
| 475 | 684 (indent-for-comment))))) ; indent existing comment |
| 685 (forward-line 1)) | |
| 686 (goto-char (marker-position oldpnt)) | |
| 687 (message "Indenting Perl expression...done")))) | |
| 688 | |
| 689 (defun perl-beginning-of-function (&optional arg) | |
| 690 "Move backward to next beginning-of-function, or as far as possible. | |
| 691 With argument, repeat that many times; negative args move forward. | |
| 692 Returns new value of point in all cases." | |
| 693 (interactive "p") | |
| 694 (or arg (setq arg 1)) | |
| 695 (if (< arg 0) (forward-char 1)) | |
| 696 (and (/= arg 0) | |
| 697 (re-search-backward "^\\s(\\|^\\s-*sub\\b[^{]+{\\|^\\s-*format\\b[^=]*=\\|^\\." | |
| 698 nil 'move arg) | |
| 699 (goto-char (1- (match-end 0)))) | |
| 700 (point)) | |
| 701 | |
| 702 ;; note: this routine is adapted directly from emacs lisp.el, end-of-defun; | |
| 703 ;; no bugs have been removed :-) | |
| 704 (defun perl-end-of-function (&optional arg) | |
| 705 "Move forward to next end-of-function. | |
| 706 The end of a function is found by moving forward from the beginning of one. | |
| 707 With argument, repeat that many times; negative args move backward." | |
| 708 (interactive "p") | |
| 709 (or arg (setq arg 1)) | |
| 710 (let ((first t)) | |
| 711 (while (and (> arg 0) (< (point) (point-max))) | |
| 712 (let ((pos (point)) npos) | |
| 713 (while (progn | |
| 714 (if (and first | |
| 715 (progn | |
| 716 (forward-char 1) | |
| 717 (perl-beginning-of-function 1) | |
| 718 (not (bobp)))) | |
| 719 nil | |
| 720 (or (bobp) (forward-char -1)) | |
| 721 (perl-beginning-of-function -1)) | |
| 722 (setq first nil) | |
| 723 (forward-list 1) | |
| 724 (skip-chars-forward " \t") | |
| 725 (if (looking-at "[#\n]") | |
| 726 (forward-line 1)) | |
| 727 (<= (point) pos)))) | |
| 728 (setq arg (1- arg))) | |
| 729 (while (< arg 0) | |
| 730 (let ((pos (point))) | |
| 731 (perl-beginning-of-function 1) | |
| 732 (forward-sexp 1) | |
| 733 (forward-line 1) | |
| 734 (if (>= (point) pos) | |
| 735 (if (progn (perl-beginning-of-function 2) (not (bobp))) | |
| 736 (progn | |
| 737 (forward-list 1) | |
| 738 (skip-chars-forward " \t") | |
| 739 (if (looking-at "[#\n]") | |
| 740 (forward-line 1))) | |
| 741 (goto-char (point-min))))) | |
| 742 (setq arg (1+ arg))))) | |
| 743 | |
| 744 (defun mark-perl-function () | |
| 745 "Put mark at end of Perl function, point at beginning." | |
| 746 (interactive) | |
| 747 (push-mark (point)) | |
| 748 (perl-end-of-function) | |
| 749 (push-mark (point)) | |
| 750 (perl-beginning-of-function) | |
| 751 (backward-paragraph)) | |
| 752 | |
| 16358 | 753 (provide 'perl-mode) |
| 754 | |
| 755 ;;; perl-mode.el ends here |
