]> code.delx.au - gnu-emacs/blob - lisp/emacs-lisp/lisp.el
(defun-prompt-regexp): Fix customize type.
[gnu-emacs] / lisp / emacs-lisp / lisp.el
1 ;;; lisp.el --- Lisp editing commands for Emacs
2
3 ;; Copyright (C) 1985, 1986, 1994 Free Software Foundation, Inc.
4
5 ;; Maintainer: FSF
6 ;; Keywords: lisp, languages
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;; Lisp editing commands to go with Lisp major mode.
28
29 ;;; Code:
30
31 ;; Note that this variable is used by non-lisp modes too.
32 (defcustom defun-prompt-regexp nil
33 "*Non-nil => regexp to ignore, before the character that starts a defun.
34 This is only necessary if the opening paren or brace is not in column 0.
35 See `beginning-of-defun'."
36 :type '(choice (const nil)
37 regexp)
38 :group 'lisp)
39 (make-variable-buffer-local 'defun-prompt-regexp)
40
41 (defcustom parens-require-spaces t
42 "Non-nil => `insert-parentheses' should insert whitespace as needed."
43 :type 'boolean
44 :group 'lisp)
45
46 (defun forward-sexp (&optional arg)
47 "Move forward across one balanced expression (sexp).
48 With argument, do it that many times. Negative arg -N means
49 move backward across N balanced expressions."
50 (interactive "p")
51 (or arg (setq arg 1))
52 (goto-char (or (scan-sexps (point) arg) (buffer-end arg)))
53 (if (< arg 0) (backward-prefix-chars)))
54
55 (defun backward-sexp (&optional arg)
56 "Move backward across one balanced expression (sexp).
57 With argument, do it that many times. Negative arg -N means
58 move forward across N balanced expressions."
59 (interactive "p")
60 (or arg (setq arg 1))
61 (forward-sexp (- arg)))
62
63 (defun mark-sexp (arg)
64 "Set mark ARG sexps from point.
65 The place mark goes is the same place \\[forward-sexp] would
66 move to with the same argument."
67 (interactive "p")
68 (push-mark
69 (save-excursion
70 (forward-sexp arg)
71 (point))
72 nil t))
73
74 (defun forward-list (&optional arg)
75 "Move forward across one balanced group of parentheses.
76 With argument, do it that many times.
77 Negative arg -N means move backward across N groups of parentheses."
78 (interactive "p")
79 (or arg (setq arg 1))
80 (goto-char (or (scan-lists (point) arg 0) (buffer-end arg))))
81
82 (defun backward-list (&optional arg)
83 "Move backward across one balanced group of parentheses.
84 With argument, do it that many times.
85 Negative arg -N means move forward across N groups of parentheses."
86 (interactive "p")
87 (or arg (setq arg 1))
88 (forward-list (- arg)))
89
90 (defun down-list (arg)
91 "Move forward down one level of parentheses.
92 With argument, do this that many times.
93 A negative argument means move backward but still go down a level.
94 In Lisp programs, an argument is required."
95 (interactive "p")
96 (let ((inc (if (> arg 0) 1 -1)))
97 (while (/= arg 0)
98 (goto-char (or (scan-lists (point) inc -1) (buffer-end arg)))
99 (setq arg (- arg inc)))))
100
101 (defun backward-up-list (arg)
102 "Move backward out of one level of parentheses.
103 With argument, do this that many times.
104 A negative argument means move forward but still to a less deep spot.
105 In Lisp programs, an argument is required."
106 (interactive "p")
107 (up-list (- arg)))
108
109 (defun up-list (arg)
110 "Move forward out of one level of parentheses.
111 With argument, do this that many times.
112 A negative argument means move backward but still to a less deep spot.
113 In Lisp programs, an argument is required."
114 (interactive "p")
115 (let ((inc (if (> arg 0) 1 -1)))
116 (while (/= arg 0)
117 (goto-char (or (scan-lists (point) inc 1) (buffer-end arg)))
118 (setq arg (- arg inc)))))
119
120 (defun kill-sexp (arg)
121 "Kill the sexp (balanced expression) following the cursor.
122 With argument, kill that many sexps after the cursor.
123 Negative arg -N means kill N sexps before the cursor."
124 (interactive "p")
125 (let ((opoint (point)))
126 (forward-sexp arg)
127 (kill-region opoint (point))))
128
129 (defun backward-kill-sexp (arg)
130 "Kill the sexp (balanced expression) preceding the cursor.
131 With argument, kill that many sexps before the cursor.
132 Negative arg -N means kill N sexps after the cursor."
133 (interactive "p")
134 (kill-sexp (- arg)))
135 \f
136 (defun beginning-of-defun (&optional arg)
137 "Move backward to the beginning of a defun.
138 With argument, do it that many times. Negative arg -N
139 means move forward to Nth following beginning of defun.
140 Returns t unless search stops due to beginning or end of buffer.
141
142 Normally a defun starts when there is an char with open-parenthesis
143 syntax at the beginning of a line. If `defun-prompt-regexp' is
144 non-nil, then a string which matches that regexp may precede the
145 open-parenthesis, and point ends up at the beginning of the line."
146 (interactive "p")
147 (and (beginning-of-defun-raw arg)
148 (progn (beginning-of-line) t)))
149
150 (defun beginning-of-defun-raw (&optional arg)
151 "Move point to the character that starts a defun.
152 This is identical to beginning-of-defun, except that point does not move
153 to the beginning of the line when `defun-prompt-regexp' is non-nil."
154 (interactive "p")
155 (and arg (< arg 0) (not (eobp)) (forward-char 1))
156 (and (re-search-backward (if defun-prompt-regexp
157 (concat "^\\s(\\|"
158 "\\(" defun-prompt-regexp "\\)\\s(")
159 "^\\s(")
160 nil 'move (or arg 1))
161 (progn (goto-char (1- (match-end 0)))) t))
162
163 (defun buffer-end (arg)
164 (if (> arg 0) (point-max) (point-min)))
165
166 (defun end-of-defun (&optional arg)
167 "Move forward to next end of defun. With argument, do it that many times.
168 Negative argument -N means move back to Nth preceding end of defun.
169
170 An end of a defun occurs right after the close-parenthesis that matches
171 the open-parenthesis that starts a defun; see `beginning-of-defun'."
172 (interactive "p")
173 (if (or (null arg) (= arg 0)) (setq arg 1))
174 (let ((first t))
175 (while (and (> arg 0) (< (point) (point-max)))
176 (let ((pos (point)) npos)
177 (while (progn
178 (if (and first
179 (progn
180 (end-of-line 1)
181 (beginning-of-defun-raw 1)))
182 nil
183 (or (bobp) (forward-char -1))
184 (beginning-of-defun-raw -1))
185 (setq first nil)
186 (forward-list 1)
187 (skip-chars-forward " \t")
188 (if (looking-at "\\s<\\|\n")
189 (forward-line 1))
190 (<= (point) pos))))
191 (setq arg (1- arg)))
192 (while (< arg 0)
193 (let ((pos (point)))
194 (beginning-of-defun-raw 1)
195 (forward-sexp 1)
196 (forward-line 1)
197 (if (>= (point) pos)
198 (if (beginning-of-defun-raw 2)
199 (progn
200 (forward-list 1)
201 (skip-chars-forward " \t")
202 (if (looking-at "\\s<\\|\n")
203 (forward-line 1)))
204 (goto-char (point-min)))))
205 (setq arg (1+ arg)))))
206
207 (defun mark-defun ()
208 "Put mark at end of this defun, point at beginning.
209 The defun marked is the one that contains point or follows point."
210 (interactive)
211 (push-mark (point))
212 (end-of-defun)
213 (push-mark (point) nil t)
214 (beginning-of-defun)
215 (re-search-backward "^\n" (- (point) 1) t))
216
217 (defun narrow-to-defun (&optional arg)
218 "Make text outside current defun invisible.
219 The defun visible is the one that contains point or follows point."
220 (interactive)
221 (save-excursion
222 (widen)
223 (end-of-defun)
224 (let ((end (point)))
225 (beginning-of-defun)
226 (narrow-to-region (point) end))))
227
228 (defun insert-parentheses (arg)
229 "Enclose following ARG sexps in parentheses. Leave point after open-paren.
230 A negative ARG encloses the preceding ARG sexps instead.
231 No argument is equivalent to zero: just insert `()' and leave point between.
232 If `parens-require-spaces' is non-nil, this command also inserts a space
233 before and after, depending on the surrounding characters."
234 (interactive "P")
235 (if arg (setq arg (prefix-numeric-value arg))
236 (setq arg 0))
237 (cond ((> arg 0) (skip-chars-forward " \t"))
238 ((< arg 0) (forward-sexp arg) (setq arg (- arg))))
239 (and parens-require-spaces
240 (not (bobp))
241 (memq (char-syntax (preceding-char)) '(?w ?_ ?\) ))
242 (insert " "))
243 (insert ?\()
244 (save-excursion
245 (or (eq arg 0) (forward-sexp arg))
246 (insert ?\))
247 (and parens-require-spaces
248 (not (eobp))
249 (memq (char-syntax (following-char)) '(?w ?_ ?\( ))
250 (insert " "))))
251
252 (defun move-past-close-and-reindent ()
253 "Move past next `)', delete indentation before it, then indent after it."
254 (interactive)
255 (up-list 1)
256 (forward-char -1)
257 (while (save-excursion ; this is my contribution
258 (let ((before-paren (point)))
259 (back-to-indentation)
260 (and (= (point) before-paren)
261 (progn
262 ;; Move to end of previous line.
263 (beginning-of-line)
264 (forward-char -1)
265 ;; Verify it doesn't end within a string or comment.
266 (let ((end (point))
267 state)
268 (beginning-of-line)
269 ;; Get state at start of line.
270 (setq state (list 0 nil nil
271 (null (calculate-lisp-indent))
272 nil nil nil nil
273 nil))
274 ;; Parse state across the line to get state at end.
275 (setq state (parse-partial-sexp (point) end nil nil
276 state))
277 ;; Check not in string or comment.
278 (and (not (elt state 3)) (not (elt state 4))))))))
279 (delete-indentation))
280 (forward-char 1)
281 (newline-and-indent))
282 \f
283 (defun lisp-complete-symbol ()
284 "Perform completion on Lisp symbol preceding point.
285 Compare that symbol against the known Lisp symbols.
286
287 The context determines which symbols are considered.
288 If the symbol starts just after an open-parenthesis, only symbols
289 with function definitions are considered. Otherwise, all symbols with
290 function definitions, values or properties are considered."
291 (interactive)
292 (let* ((end (point))
293 (buffer-syntax (syntax-table))
294 (beg (unwind-protect
295 (save-excursion
296 (set-syntax-table emacs-lisp-mode-syntax-table)
297 (backward-sexp 1)
298 (while (= (char-syntax (following-char)) ?\')
299 (forward-char 1))
300 (point))
301 (set-syntax-table buffer-syntax)))
302 (pattern (buffer-substring beg end))
303 (predicate
304 (if (eq (char-after (1- beg)) ?\()
305 'fboundp
306 (function (lambda (sym)
307 (or (boundp sym) (fboundp sym)
308 (symbol-plist sym))))))
309 (completion (try-completion pattern obarray predicate)))
310 (cond ((eq completion t))
311 ((null completion)
312 (message "Can't find completion for \"%s\"" pattern)
313 (ding))
314 ((not (string= pattern completion))
315 (delete-region beg end)
316 (insert completion))
317 (t
318 (message "Making completion list...")
319 (let ((list (all-completions pattern obarray predicate))
320 (completion-fixup-function
321 (function (lambda () (if (save-excursion
322 (goto-char (max (point-min) (- (point) 4)))
323 (looking-at " <f>"))
324 (forward-char -4))))))
325 (setq list (sort list 'string<))
326 (or (eq predicate 'fboundp)
327 (let (new)
328 (while list
329 (setq new (cons (if (fboundp (intern (car list)))
330 (list (car list) " <f>")
331 (car list))
332 new))
333 (setq list (cdr list)))
334 (setq list (nreverse new))))
335 (with-output-to-temp-buffer "*Completions*"
336 (display-completion-list list)))
337 (message "Making completion list...%s" "done")))))
338
339 ;;; lisp.el ends here