1 ;;; lisp.el --- Lisp editing commands for Emacs
3 ;; Copyright (C) 1985, 1986, 1994 Free Software Foundation, Inc.
6 ;; Keywords: lisp, languages
8 ;; This file is part of GNU Emacs.
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)
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.
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
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
26 ;; Lisp editing commands to go with Lisp major mode.
30 ;; Note that this variable is used by non-lisp modes too.
31 (defvar defun-prompt-regexp nil
32 "*Non-nil => regexp to ignore, before the character that starts a defun.
33 This is only necessary if the opening paren or brace is not in column 0.
34 See `beginning-of-defun'.")
35 (make-variable-buffer-local 'defun-prompt-regexp
)
37 (defvar parens-require-spaces t
38 "Non-nil => `insert-parentheses' should insert whitespace as needed.")
40 (defun forward-sexp (&optional arg
)
41 "Move forward across one balanced expression (sexp).
42 With argument, do it that many times. Negative arg -N means
43 move backward across N balanced expressions."
46 (goto-char (or (scan-sexps (point) arg
) (buffer-end arg
)))
47 (if (< arg
0) (backward-prefix-chars)))
49 (defun backward-sexp (&optional arg
)
50 "Move backward across one balanced expression (sexp).
51 With argument, do it that many times. Negative arg -N means
52 move forward across N balanced expressions."
55 (forward-sexp (- arg
)))
57 (defun mark-sexp (arg)
58 "Set mark ARG sexps from point.
59 The place mark goes is the same place \\[forward-sexp] would
60 move to with the same argument."
68 (defun forward-list (&optional arg
)
69 "Move forward across one balanced group of parentheses.
70 With argument, do it that many times.
71 Negative arg -N means move backward across N groups of parentheses."
74 (goto-char (or (scan-lists (point) arg
0) (buffer-end arg
))))
76 (defun backward-list (&optional arg
)
77 "Move backward across one balanced group of parentheses.
78 With argument, do it that many times.
79 Negative arg -N means move forward across N groups of parentheses."
82 (forward-list (- arg
)))
84 (defun down-list (arg)
85 "Move forward down one level of parentheses.
86 With argument, do this that many times.
87 A negative argument means move backward but still go down a level.
88 In Lisp programs, an argument is required."
90 (let ((inc (if (> arg
0) 1 -
1)))
92 (goto-char (or (scan-lists (point) inc -
1) (buffer-end arg
)))
93 (setq arg
(- arg inc
)))))
95 (defun backward-up-list (arg)
96 "Move backward out of one level of parentheses.
97 With argument, do this that many times.
98 A negative argument means move forward but still to a less deep spot.
99 In Lisp programs, an argument is required."
104 "Move forward out of one level of parentheses.
105 With argument, do this that many times.
106 A negative argument means move backward but still to a less deep spot.
107 In Lisp programs, an argument is required."
109 (let ((inc (if (> arg
0) 1 -
1)))
111 (goto-char (or (scan-lists (point) inc
1) (buffer-end arg
)))
112 (setq arg
(- arg inc
)))))
114 (defun kill-sexp (arg)
115 "Kill the sexp (balanced expression) following the cursor.
116 With argument, kill that many sexps after the cursor.
117 Negative arg -N means kill N sexps before the cursor."
119 (let ((opoint (point)))
121 (kill-region opoint
(point))))
123 (defun backward-kill-sexp (arg)
124 "Kill the sexp (balanced expression) preceding the cursor.
125 With argument, kill that many sexps before the cursor.
126 Negative arg -N means kill N sexps after the cursor."
130 (defun beginning-of-defun (&optional arg
)
131 "Move backward to the beginning of a defun.
132 With argument, do it that many times. Negative arg -N
133 means move forward to Nth following beginning of defun.
134 Returns t unless search stops due to beginning or end of buffer.
136 Normally a defun starts when there is an char with open-parenthesis
137 syntax at the beginning of a line. If `defun-prompt-regexp' is
138 non-nil, then a string which matches that regexp may precede the
139 open-parenthesis, and point ends up at the beginning of the line."
141 (and (beginning-of-defun-raw arg
)
142 (progn (beginning-of-line) t
)))
144 (defun beginning-of-defun-raw (&optional arg
)
145 "Move point to the character that starts a defun.
146 This is identical to beginning-of-defun, except that point does not move
147 to the beginning of the line when `defun-prompt-regexp' is non-nil."
149 (and arg
(< arg
0) (not (eobp)) (forward-char 1))
150 (and (re-search-backward (if defun-prompt-regexp
152 "\\(" defun-prompt-regexp
"\\)\\s(")
154 nil
'move
(or arg
1))
155 (progn (goto-char (1- (match-end 0)))) t
))
157 (defun buffer-end (arg)
158 (if (> arg
0) (point-max) (point-min)))
160 (defun end-of-defun (&optional arg
)
161 "Move forward to next end of defun. With argument, do it that many times.
162 Negative argument -N means move back to Nth preceding end of defun.
164 An end of a defun occurs right after the close-parenthesis that matches
165 the open-parenthesis that starts a defun; see `beginning-of-defun'."
167 (if (or (null arg
) (= arg
0)) (setq arg
1))
169 (while (and (> arg
0) (< (point) (point-max)))
170 (let ((pos (point)) npos
)
175 (beginning-of-defun-raw 1)))
177 (or (bobp) (forward-char -
1))
178 (beginning-of-defun-raw -
1))
181 (skip-chars-forward " \t")
182 (if (looking-at "\\s<\\|\n")
188 (beginning-of-defun-raw 1)
192 (if (beginning-of-defun-raw 2)
195 (skip-chars-forward " \t")
196 (if (looking-at "\\s<\\|\n")
198 (goto-char (point-min)))))
199 (setq arg
(1+ arg
)))))
202 "Put mark at end of this defun, point at beginning.
203 The defun marked is the one that contains point or follows point."
207 (push-mark (point) nil t
)
209 (re-search-backward "^\n" (- (point) 1) t
))
211 (defun insert-parentheses (arg)
212 "Put parentheses around next ARG sexps. Leave point after open-paren.
213 No argument is equivalent to zero: just insert `()' and leave point between.
214 If `parens-require-spaces' is non-nil, this command also inserts a space
215 before and after, depending on the surrounding characters."
217 (if arg
(setq arg
(prefix-numeric-value arg
))
219 (or (eq arg
0) (skip-chars-forward " \t"))
220 (and parens-require-spaces
222 (memq (char-syntax (preceding-char)) '(?w ?_ ?\
) ))
226 (or (eq arg
0) (forward-sexp arg
))
228 (and parens-require-spaces
230 (memq (char-syntax (following-char)) '(?w ?_ ?\
( ))
233 (defun move-past-close-and-reindent ()
234 "Move past next `)', delete indentation before it, then indent after it."
238 (while (save-excursion ; this is my contribution
239 (let ((before-paren (point)))
240 (back-to-indentation)
241 (= (point) before-paren
)))
242 (delete-indentation))
244 (newline-and-indent))
246 (defun lisp-complete-symbol ()
247 "Perform completion on Lisp symbol preceding point.
248 Compare that symbol against the known Lisp symbols.
250 The context determines which symbols are considered.
251 If the symbol starts just after an open-parenthesis, only symbols
252 with function definitions are considered. Otherwise, all symbols with
253 function definitions, values or properties are considered."
256 (buffer-syntax (syntax-table))
259 (set-syntax-table emacs-lisp-mode-syntax-table
)
261 (while (= (char-syntax (following-char)) ?
\')
264 (set-syntax-table buffer-syntax
)))
265 (pattern (buffer-substring beg end
))
267 (if (eq (char-after (1- beg
)) ?\
()
269 (function (lambda (sym)
270 (or (boundp sym
) (fboundp sym
)
271 (symbol-plist sym
))))))
272 (completion (try-completion pattern obarray predicate
)))
273 (cond ((eq completion t
))
275 (message "Can't find completion for \"%s\"" pattern
)
277 ((not (string= pattern completion
))
278 (delete-region beg end
)
281 (message "Making completion list...")
282 (let ((list (all-completions pattern obarray predicate
))
283 (completion-fixup-function
284 (function (lambda () (if (save-excursion
285 (goto-char (max (point-min) (- (point) 4)))
287 (forward-char -
4))))))
288 (or (eq predicate
'fboundp
)
291 (setq new
(cons (if (fboundp (intern (car list
)))
292 (list (car list
) " <f>")
295 (setq list
(cdr list
)))
296 (setq list
(nreverse new
))))
297 (with-output-to-temp-buffer "*Completions*"
298 (display-completion-list list
)))
299 (message "Making completion list...%s" "done")))))
301 ;;; lisp.el ends here