(edt-load-xkeys): Doc fix.
[bpt/emacs.git] / lisp / thingatpt.el
CommitLineData
1a2b6c52
RS
1;;; thingatpt.el --- Get the `thing' at point
2
fde7326e 3;; Copyright (C) 1991,1992,1993,1994,1995 Free Software Foundation, Inc.
1a2b6c52
RS
4
5;; Author: Mike Williams <mikew@gopher.dosli.govt.nz>
b7f66977 6;; Keywords: extensions, matching, mouse
1a2b6c52 7;; Created: Thu Mar 28 13:48:23 1991
1a2b6c52
RS
8
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
13;; the Free Software Foundation; either version 2, or (at your option)
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
69f9ba7e 21;;; Commentary:
b578f267 22
1a2b6c52
RS
23;; This file provides routines for getting the `thing' at the location of
24;; point, whatever that `thing' happens to be. The `thing' is defined by
25;; it's beginning and end positions in the buffer.
26;;
27;; The function bounds-of-thing-at-point finds the beginning and end
28;; positions by moving first forward to the end of the `thing', and then
29;; backwards to the beginning. By default, it uses the corresponding
30;; forward-`thing' operator (eg. forward-word, forward-line).
31;;
32;; Special cases are allowed for using properties associated with the named
33;; `thing':
34;;
35;; forward-op Function to call to skip forward over a `thing' (or
36;; with a negative argument, backward).
37;;
38;; beginning-op Function to call to skip to the beginning of a `thing'.
39;; end-op Function to call to skip to the end of a `thing'.
40;;
41;; Reliance on existing operators means that many `things' can be accessed
42;; without further code: eg.
43;; (thing-at-point 'line)
44;; (thing-at-point 'page)
45
b578f267 46;;; Code:
1a2b6c52
RS
47
48(provide 'thingatpt)
49
b578f267 50;; Basic movement
1a2b6c52
RS
51
52;;;###autoload
53(defun forward-thing (THING &optional N)
54 "Move forward to the end of the next THING."
55 (let ((forward-op (or (get THING 'forward-op)
56 (intern-soft (format "forward-%s" THING)))))
57 (if (fboundp forward-op)
58 (funcall forward-op (or N 1))
59 (error "Can't determine how to move over %ss" THING))))
60
b578f267 61;; General routines
1a2b6c52
RS
62
63;;;###autoload
64(defun bounds-of-thing-at-point (THING)
65 "Determine the start and end buffer locations for the THING at point,
66where THING is an entity for which there is a either a corresponding
67forward-THING operation, or corresponding beginning-of-THING and
68end-of-THING operations, eg. 'word, 'sentence, 'defun.
69 Return a cons cell '(start . end) giving the start and end positions."
70 (let ((orig (point)))
71 (condition-case nil
72 (save-excursion
73 (let ((end (progn
74 (funcall
75 (or (get THING 'end-op)
76 (function (lambda () (forward-thing THING 1)))))
77 (point)))
78 (beg (progn
79 (funcall
80 (or (get THING 'beginning-op)
81 (function (lambda () (forward-thing THING -1)))))
82 (point))))
83 (if (and beg end (<= beg orig) (< orig end))
84 (cons beg end))))
85 (error nil))))
86
87;;;###autoload
88(defun thing-at-point (THING)
89 "Return the THING at point, where THING is an entity defined by
90bounds-of-thing-at-point."
91 (let ((bounds (bounds-of-thing-at-point THING)))
92 (if bounds
93 (buffer-substring (car bounds) (cdr bounds)))))
94
b578f267 95;; Go to beginning/end
1a2b6c52
RS
96
97(defun beginning-of-thing (THING)
98 (let ((bounds (bounds-of-thing-at-point THING)))
99 (or bounds (error "No %s here" THING))
100 (goto-char (car bounds))))
101
102(defun end-of-thing (THING)
103 (let ((bounds (bounds-of-thing-at-point THING)))
104 (or bounds (error "No %s here" THING))
105 (goto-char (cdr bounds))))
106
b578f267 107;; Special cases
1a2b6c52 108
b578f267 109;; Lines
9f5c7ace
RS
110
111;; bolp will be false when you click on the last line in the buffer
112;; and it has no final newline.
113
114(put 'line 'beginning-op
115 (function (lambda () (if (bolp) (forward-line -1) (beginning-of-line)))))
116
b578f267 117;; Sexps
1a2b6c52
RS
118
119(defun in-string-p ()
120 (let ((orig (point)))
121 (save-excursion
122 (beginning-of-defun)
123 (nth 3 (parse-partial-sexp (point) orig)))))
124
125(defun end-of-sexp ()
126 (let ((char-syntax (char-syntax (char-after (point)))))
127 (if (or (eq char-syntax ?\))
128 (and (eq char-syntax ?\") (in-string-p)))
129 (forward-char 1)
130 (forward-sexp 1))))
131
132(put 'sexp 'end-op 'end-of-sexp)
133
b578f267 134;; Lists
1a2b6c52
RS
135
136(put 'list 'end-op (function (lambda () (up-list 1))))
137(put 'list 'beginning-op 'backward-sexp)
138
b578f267 139;; Filenames
1a2b6c52
RS
140
141(defvar file-name-chars "~/A-Za-z0-9---_.${}#%,"
142 "Characters allowable in filenames.")
143
144(put 'filename 'end-op
145 (function (lambda () (skip-chars-forward file-name-chars))))
146(put 'filename 'beginning-op
147 (function (lambda () (skip-chars-backward file-name-chars (point-min)))))
148
b578f267 149;; Whitespace
1a2b6c52
RS
150
151(defun forward-whitespace (ARG)
152 (interactive "p")
153 (if (natnump ARG)
154 (re-search-forward "[ \t]+\\|\n" nil nil ARG)
155 (while (< ARG 0)
156 (if (re-search-backward "[ \t]+\\|\n" nil nil)
157 (or (eq (char-after (match-beginning 0)) 10)
158 (skip-chars-backward " \t")))
159 (setq ARG (1+ ARG)))))
160
b578f267 161;; Buffer
1a2b6c52
RS
162
163(put 'buffer 'end-op 'end-of-buffer)
164(put 'buffer 'beginning-op 'beginning-of-buffer)
165
b578f267 166;; Symbols
1a2b6c52
RS
167
168(defun forward-symbol (ARG)
169 (interactive "p")
170 (if (natnump ARG)
171 (re-search-forward "\\(\\sw\\|\\s_\\)+" nil nil ARG)
172 (while (< ARG 0)
173 (if (re-search-backward "\\(\\sw\\|\\s_\\)+" nil nil)
174 (skip-syntax-backward "w_"))
175 (setq ARG (1+ ARG)))))
176
b578f267 177;; Syntax blocks
fde7326e
RS
178
179(defun forward-same-syntax (&optional arg)
180 (interactive "p")
181 (while (< arg 0)
182 (skip-syntax-backward
183 (char-to-string (char-syntax (char-after (1- (point))))))
184 (setq arg (1+ arg)))
185 (while (> arg 0)
186 (skip-syntax-forward (char-to-string (char-syntax (char-after (point)))))
187 (setq arg (1- arg))))
188
b578f267 189;; Aliases
1a2b6c52
RS
190
191(defun word-at-point () (thing-at-point 'word))
192(defun sentence-at-point () (thing-at-point 'sentence))
193
194(defun read-from-whole-string (STR)
ac12c077 195 "Read a lisp expression from STR, signaling an error if the entire string
1a2b6c52
RS
196was not used."
197 (let* ((read-data (read-from-string STR))
198 (more-left
199 (condition-case nil
200 (progn (read-from-string (substring STR (cdr read-data)))
201 t)
202 (end-of-file nil))))
203 (if more-left
204 (error "Can't read whole string")
205 (car read-data))))
206
207(defun form-at-point (&optional THING PRED)
208 (let ((sexp (condition-case nil
209 (read-from-whole-string (thing-at-point (or THING 'sexp)))
210 (error nil))))
211 (if (or (not PRED) (funcall PRED sexp)) sexp)))
212
213(defun sexp-at-point () (form-at-point 'sexp))
214(defun symbol-at-point () (form-at-point 'sexp 'symbolp))
215(defun number-at-point () (form-at-point 'sexp 'numberp))
216(defun list-at-point () (form-at-point 'list 'listp))
217
218;; thingatpt.el ends here.