Mercurial > emacs
annotate lisp/dabbrev.el @ 1717:aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
`has_vertical_scrollbars'.
(FRAME_CAN_HAVE_SCROLLBARS, FRAME_HAS_VERTICAL_SCROLLBARS): New
accessors, for both the MULTI_FRAME and non-MULTI_FRAME.
(VERTICAL_SCROLLBAR_WIDTH, WINDOW_VERTICAL_SCROLLBAR,
WINDOW_VERTICAL_SCROLLBAR_COLUMN,
WINDOW_VERTICAL_SCROLLBAR_HEIGHT): New macros.
* window.h (struct window): New field `vertical_scrollbar'.
* xterm.h (struct x_display): vertical_scrollbars,
judge_timestamp, vertical_scrollbar_extra: New fields.
(struct scrollbar): New struct.
(VERTICAL_SCROLLBAR_PIXEL_WIDTH, VERTICAL_SCROLLBAR_PIXEL_HEIGHT,
VERTICAL_SCROLLBAR_LEFT_BORDER, VERTICAL_SCROLLBAR_RIGHT_BORDER,
VERTICAL_SCROLLBAR_TOP_BORDER, VERTICAL_SCROLLBAR_BOTTOM_BORDER,
CHAR_TO_PIXEL_WIDTH, CHAR_TO_PIXEL_HEIGHT, PIXEL_TO_CHAR_WIDTH,
PIXEL_TO_CHAR_HEIGHT): New accessors and macros.
* frame.c (make_frame): Initialize the `can_have_scrollbars' and
`has_vertical_scrollbars' fields of the frame.
* term.c (term_init): Note that TERMCAP terminals don't support
scrollbars.
(mouse_position_hook): Document new args.
(set_vertical_scrollbar_hook, condemn_scrollbars_hook,
redeem_scrollbar_hook, judge_scrollbars_hook): New hooks.
* termhooks.h: Declare and document them.
(enum scrollbar_part): New type.
(struct input_event): Describe the new form of the scrollbar_click
event type. Change `part' from a Lisp_Object to an enum
scrollbar_part. Add a new field `scrollbar'.
* keyboard.c (kbd_buffer_get_event): Pass appropriate new
parameters to *mouse_position_hook, and make_lispy_movement.
* xfns.c (x_set_vertical_scrollbar): New function.
(x_figure_window_size): Use new macros to calculate frame size.
(Fx_create_frame): Note that X Windows frames do support scroll
bars. Default to "yes".
* xterm.c: #include <X11/cursorfont.h> and "window.h".
(x_vertical_scrollbar_cursor): New variable.
(x_term_init): Initialize it.
(last_mouse_bar, last_mouse_bar_frame, last_mouse_part,
last_mouse_scroll_range_start, last_mouse_scroll_range_end): New
variables.
(XTmouse_position): Use them to return scrollbar movement events.
Take new arguments, for that purpose.
(x_window_to_scrollbar, x_scrollbar_create,
x_scrollbar_set_handle, x_scrollbar_remove, x_scrollbar_move,
XTset_scrollbar, XTcondemn_scrollbars, XTredeem_scrollbar,
XTjudge_scrollbars, x_scrollbar_expose,
x_scrollbar_background_expose, x_scrollbar_handle_click,
x_scrollbar_handle_motion): New functions to implement scrollbars.
(x_term_init): Set the termhooks.h hooks to point to them.
(x_set_window_size): Use new macros to calculate frame size. Set
vertical_scrollbar_extra field.
(x_make_frame_visible): Use the frame accessor
FRAME_HAS_VERTICAL_SCROLLBARS to decide if we need to map the
frame's subwindows as well.
(XTread_socket): Use new size-calculation macros from xterm.h when
processing ConfigureNotify events.
(x_wm_set_size_hint): Use PIXEL_TO_CHAR_WIDTH and
PIXEL_TO_CHAR_HEIGHT macros.
* ymakefile (xdisp.o): This now depends on termhooks.h.
(xterm.o): This now depends on window.h.
| author | Jim Blandy <jimb@redhat.com> |
|---|---|
| date | Thu, 24 Dec 1992 06:17:18 +0000 |
| parents | 9fe14b2cc5b9 |
| children | 2c7997f249eb |
| rev | line source |
|---|---|
|
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
1 ;;; dabbrev.el --- dynamic abbreviation package for GNU Emacs. |
|
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
2 |
|
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
3 ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc. |
|
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
4 |
|
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
5 ;; Last-Modified: 16 Mar 1992 |
|
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
6 ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc. |
|
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
7 |
|
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
793
diff
changeset
|
8 ;; Maintainer: FSF |
| 267 | 9 |
| 10 ;; This file is part of GNU Emacs. | |
| 11 | |
| 12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
| 13 ;; it under the terms of the GNU General Public License as published by | |
|
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
793
diff
changeset
|
14 ;; the Free Software Foundation; either version 2, or (at your option) |
| 267 | 15 ;; any later version. |
| 16 | |
| 17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
| 18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 20 ;; GNU General Public License for more details. | |
| 21 | |
| 22 ;; You should have received a copy of the GNU General Public License | |
| 23 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
| 24 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
| 25 | |
|
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
793
diff
changeset
|
26 ;;; Commentary: |
| 267 | 27 |
| 28 ; DABBREVS - "Dynamic abbreviations" hack, originally written by Don Morrison | |
| 29 ; for Twenex Emacs. Converted to mlisp by Russ Fish. Supports the table | |
| 30 ; feature to avoid hitting the same expansion on re-expand, and the search | |
| 31 ; size limit variable. Bugs fixed from the Twenex version are flagged by | |
| 32 ; comments starting with ;;; . | |
| 33 ; | |
|
793
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
34 ; converted to Emacs Lisp by Spencer Thomas. |
| 267 | 35 ; Thoroughly cleaned up by Richard Stallman. |
| 36 ; | |
| 37 ; If anyone feels like hacking at it, Bob Keller (Keller@Utah-20) first | |
| 38 ; suggested the beast, and has some good ideas for its improvement, but | |
|
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
793
diff
changeset
|
39 ; doesn't know TECO (the lucky devil...). One thing that should definitely |
| 267 | 40 ; be done is adding the ability to search some other buffer(s) if you can?t |
| 41 ; find the expansion you want in the current one. | |
| 42 | |
|
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
793
diff
changeset
|
43 ;;; Code: |
|
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
793
diff
changeset
|
44 |
| 267 | 45 ;; (defun dabbrevs-help () |
| 46 ;; "Give help about dabbrevs." | |
| 47 ;; (interactive) | |
| 48 ;; (&info "emacs" "dabbrevs") ; Select the specific info node. | |
| 49 ;; ) | |
| 50 (defvar dabbrevs-limit nil | |
| 51 "*Limits region searched by `dabbrevs-expand' to this many chars away.") | |
| 52 (make-variable-buffer-local 'dabbrevs-limit) | |
| 53 | |
| 54 (defvar dabbrevs-backward-only nil | |
| 55 "*If non-NIL, `dabbrevs-expand' only looks backwards.") | |
| 56 | |
| 57 ; State vars for dabbrevs-re-expand. | |
| 58 (defvar last-dabbrevs-table nil | |
| 59 "Table of expansions seen so far (local)") | |
| 60 (make-variable-buffer-local 'last-dabbrevs-table) | |
| 61 | |
| 62 (defvar last-dabbrevs-abbreviation "" | |
| 63 "Last string we tried to expand (local).") | |
| 64 (make-variable-buffer-local 'last-dabbrevs-abbreviation) | |
| 65 | |
| 66 (defvar last-dabbrevs-direction 0 | |
| 67 "Direction of last dabbrevs search (local)") | |
| 68 (make-variable-buffer-local 'last-dabbrevs-direction) | |
| 69 | |
| 70 (defvar last-dabbrevs-abbrev-location nil | |
| 71 "Location last abbreviation began (local).") | |
| 72 (make-variable-buffer-local 'last-dabbrevs-abbrev-location) | |
| 73 | |
| 74 (defvar last-dabbrevs-expansion nil | |
| 75 "Last expansion of an abbreviation. (local)") | |
| 76 (make-variable-buffer-local 'last-dabbrevs-expansion) | |
| 77 | |
| 78 (defvar last-dabbrevs-expansion-location nil | |
| 79 "Location the last expansion was found. (local)") | |
| 80 (make-variable-buffer-local 'last-dabbrevs-expansion-location) | |
| 81 | |
| 82 ;;;###autoload | |
| 83 (defun dabbrev-expand (arg) | |
| 84 "Expand previous word \"dynamically\". | |
| 85 Expands to the most recent, preceding word for which this is a prefix. | |
| 86 If no suitable preceding word is found, words following point are considered. | |
| 87 | |
| 88 If `case-fold-search' and `case-replace' are non-nil (usually true) | |
| 89 then the substituted word may be case-adjusted to match the abbreviation | |
| 90 that you had typed. This takes place if the substituted word, as found, | |
| 91 is all lower case, or if it is at the beginning of a sentence and only | |
| 92 its first letter was upper case. | |
| 93 | |
| 94 A positive prefix arg N says to take the Nth backward DISTINCT | |
| 95 possibility. A negative argument says search forward. The variable | |
| 96 `dabbrev-backward-only' may be used to limit the direction of search to | |
| 97 backward if set non-nil. | |
| 98 | |
| 99 If the cursor has not moved from the end of the previous expansion and | |
| 100 no argument is given, replace the previously-made expansion | |
| 101 with the next possible expansion not yet tried." | |
| 102 (interactive "*P") | |
| 103 (let (abbrev expansion old which loc n pattern | |
| 104 (do-case (and case-fold-search case-replace))) | |
| 105 ;; abbrev -- the abbrev to expand | |
| 106 ;; expansion -- the expansion found (eventually) or nil until then | |
| 107 ;; old -- the text currently in the buffer | |
| 108 ;; (the abbrev, or the previously-made expansion) | |
| 109 ;; loc -- place where expansion is found | |
| 110 ;; (to start search there for next expansion if requested later) | |
| 111 ;; do-case -- non-nil if should transform case when substituting. | |
| 112 (save-excursion | |
| 113 (if (and (null arg) | |
| 114 (eq last-command this-command) | |
| 115 last-dabbrevs-abbrev-location) | |
| 116 (progn | |
| 117 (setq abbrev last-dabbrevs-abbreviation) | |
| 118 (setq old last-dabbrevs-expansion) | |
| 119 (setq which last-dabbrevs-direction)) | |
| 120 (setq which (if (null arg) | |
| 121 (if dabbrevs-backward-only 1 0) | |
| 122 (prefix-numeric-value arg))) | |
| 123 (setq loc (point)) | |
| 124 (forward-word -1) | |
| 125 (setq last-dabbrevs-abbrev-location (point)) ; Original location. | |
| 126 (setq abbrev (buffer-substring (point) loc)) | |
| 127 (setq old abbrev) | |
| 128 (setq last-dabbrevs-expansion-location nil) | |
| 129 (setq last-dabbrev-table nil)) ; Clear table of things seen. | |
| 130 | |
| 131 (setq pattern (concat "\\b" (regexp-quote abbrev) "\\(\\sw\\|\\s_\\)+")) | |
| 132 ;; Try looking backward unless inhibited. | |
| 133 (if (>= which 0) | |
| 134 (progn | |
| 135 (setq n (max 1 which)) | |
| 136 (if last-dabbrevs-expansion-location | |
| 137 (goto-char last-dabbrevs-expansion-location)) | |
| 138 (while (and (> n 0) | |
| 139 (setq expansion (dabbrevs-search pattern t do-case))) | |
| 140 (setq loc (point-marker)) | |
| 141 (setq last-dabbrev-table (cons expansion last-dabbrev-table)) | |
| 142 (setq n (1- n))) | |
| 143 (or expansion | |
| 144 (setq last-dabbrevs-expansion-location nil)) | |
| 145 (setq last-dabbrevs-direction (min 1 which)))) | |
| 146 | |
| 147 (if (and (<= which 0) (not expansion)) ; Then look forward. | |
| 148 (progn | |
| 149 (setq n (max 1 (- which))) | |
| 150 (if last-dabbrevs-expansion-location | |
| 151 (goto-char last-dabbrevs-expansion-location)) | |
| 152 (while (and (> n 0) | |
| 153 (setq expansion (dabbrevs-search pattern nil do-case))) | |
| 154 (setq loc (point-marker)) | |
| 155 (setq last-dabbrev-table (cons expansion last-dabbrev-table)) | |
| 156 (setq n (1- n))) | |
| 157 (setq last-dabbrevs-direction -1)))) | |
| 158 | |
| 159 (if (not expansion) | |
| 160 (let ((first (string= abbrev old))) | |
| 161 (setq last-dabbrevs-abbrev-location nil) | |
| 162 (if (not first) | |
| 163 (progn (undo-boundary) | |
| 164 (delete-backward-char (length old)) | |
| 165 (insert abbrev))) | |
| 166 (error (if first | |
| 167 "No dynamic expansion for \"%s\" found." | |
| 168 "No further dynamic expansions for \"%s\" found.") | |
| 169 abbrev)) | |
| 170 ;; Success: stick it in and return. | |
| 171 (undo-boundary) | |
| 172 (search-backward old) | |
| 173 ;; Make case of replacement conform to case of abbreviation | |
| 174 ;; provided (1) that kind of thing is enabled in this buffer | |
| 175 ;; and (2) the replacement itself is all lower case. | |
| 176 ;; First put back the original abbreviation with its original | |
| 177 ;; case pattern. | |
| 178 (save-excursion | |
| 179 (replace-match abbrev t 'literal)) | |
| 180 (search-forward abbrev) | |
| 181 (let ((do-case (and do-case | |
| 182 (string= (substring expansion 1) | |
| 183 (downcase (substring expansion 1)))))) | |
| 184 ;; First put back the original abbreviation with its original | |
| 185 ;; case pattern. | |
| 186 (save-excursion | |
| 187 (replace-match abbrev t 'literal)) | |
| 188 (search-forward abbrev) | |
| 189 (replace-match (if do-case (downcase expansion) expansion) | |
| 190 (not do-case) | |
| 191 'literal)) | |
| 192 ;; Save state for re-expand. | |
| 193 (setq last-dabbrevs-abbreviation abbrev) | |
| 194 (setq last-dabbrevs-expansion expansion) | |
| 195 (setq last-dabbrevs-expansion-location loc)))) | |
| 196 | |
| 197 ;;;###autoload | |
| 198 (define-key esc-map "/" 'dabbrev-expand) | |
| 199 | |
| 200 | |
| 201 ;; Search function used by dabbrevs library. | |
| 202 ;; First arg is string to find as prefix of word. Second arg is | |
| 203 ;; t for reverse search, nil for forward. Variable dabbrevs-limit | |
| 204 ;; controls the maximum search region size. | |
| 205 | |
| 206 ;; Table of expansions already seen is examined in buffer last-dabbrev-table, | |
| 207 ;; so that only distinct possibilities are found by dabbrevs-re-expand. | |
| 208 ;; Note that to prevent finding the abbrev itself it must have been | |
| 209 ;; entered in the table. | |
| 210 | |
| 211 ;; IGNORE-CASE non-nil means treat case as insignificant while | |
| 212 ;; looking for a match and when comparing with previous matches. | |
| 213 ;; Also if that's non-nil and the match is found at the beginning of a sentence | |
| 214 ;; and is in lower case except for the initial | |
| 215 ;; then it is converted to all lower case for return. | |
| 216 | |
| 217 ;; Value is the expansion, or nil if not found. After a successful | |
| 218 ;; search, point is left right after the expansion found. | |
| 219 | |
| 220 (defun dabbrevs-search (pattern reverse ignore-case) | |
| 221 (let (missing result (case-fold-search ignore-case)) | |
| 222 (save-restriction ; Uses restriction for limited searches. | |
| 223 (if dabbrevs-limit | |
| 224 (narrow-to-region last-dabbrevs-abbrev-location | |
| 225 (+ (point) | |
| 226 (* dabbrevs-limit (if reverse -1 1))))) | |
| 227 ;; Keep looking for a distinct expansion. | |
| 228 (setq result nil) | |
| 229 (setq missing nil) | |
| 230 (while (and (not result) (not missing)) | |
| 231 ; Look for it, leave loop if search fails. | |
| 232 (setq missing | |
| 233 (not (if reverse | |
| 234 (re-search-backward pattern nil t) | |
| 235 (re-search-forward pattern nil t)))) | |
| 236 | |
| 237 (if (not missing) | |
| 238 (progn | |
| 239 (setq result (buffer-substring (match-beginning 0) | |
| 240 (match-end 0))) | |
| 241 (let* ((test last-dabbrev-table)) | |
| 242 (while (and test | |
| 243 (not | |
| 244 (if ignore-case | |
| 245 (string= (downcase (car test)) | |
| 246 (downcase result)) | |
| 247 (string= (car test) result)))) | |
| 248 (setq test (cdr test))) | |
| 249 (if test (setq result nil)))))) ; if already in table, ignore | |
| 250 (if result | |
| 251 (save-excursion | |
| 252 (let ((beg (match-beginning 0))) | |
| 253 (goto-char beg) | |
| 254 (and ignore-case | |
| 255 (string= (substring result 1) | |
| 256 (downcase (substring result 1))) | |
| 257 (if (string= paragraph-start | |
| 258 (concat "^$\\|" page-delimiter)) | |
| 259 (and (re-search-backward sentence-end nil t) | |
| 260 (= (match-end 0) beg)) | |
| 261 (forward-char 1) | |
| 262 (backward-sentence) | |
| 263 (= (point) beg)) | |
| 264 (setq result (downcase result)))))) | |
| 265 result))) | |
| 584 | 266 |
| 1144 | 267 (provide 'dabbrev) |
| 584 | 268 |
|
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
269 ;;; dabbrev.el ends here |
