Mercurial > emacs
annotate lisp/view.el @ 6064:bdfff039f6e3
(Fget_char_property): Fix docstring.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Thu, 24 Feb 1994 19:24:37 +0000 |
parents | 4bf8c101aaef |
children | 3badf836d51d |
rev | line source |
---|---|
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
1 ;;; view.el --- peruse file or buffer without editing. |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
2 |
840
113281b361ec
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
3 ;; Copyright (C) 1985, 1989 Free Software Foundation, Inc. |
113281b361ec
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
4 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
5 ;; Author: K. Shane Hartman |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
6 ;; Maintainer: FSF |
44 | 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 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
44 | 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 | |
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
23 | |
2319
d98c49df2acd
Added or corrected Commentary section
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
931
diff
changeset
|
24 ;;; Commentary: |
d98c49df2acd
Added or corrected Commentary section
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
931
diff
changeset
|
25 |
d98c49df2acd
Added or corrected Commentary section
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
931
diff
changeset
|
26 ;; This package provides the `view' major mode documented in the Emacs |
d98c49df2acd
Added or corrected Commentary section
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
931
diff
changeset
|
27 ;; user's manual. |
d98c49df2acd
Added or corrected Commentary section
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
931
diff
changeset
|
28 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
29 ;;; Code: |
44 | 30 |
31 (defvar view-mode-map nil) | |
32 (if view-mode-map | |
33 nil | |
34 (setq view-mode-map (make-keymap)) | |
354 | 35 (fillarray (nth 1 view-mode-map) 'View-undefined) |
44 | 36 (define-key view-mode-map "\C-c" 'view-exit) |
37 (define-key view-mode-map "\C-z" 'suspend-emacs) | |
38 (define-key view-mode-map "q" 'view-exit) | |
39 (define-key view-mode-map "-" 'negative-argument) | |
40 (define-key view-mode-map "0" 'digit-argument) | |
41 (define-key view-mode-map "1" 'digit-argument) | |
42 (define-key view-mode-map "2" 'digit-argument) | |
43 (define-key view-mode-map "3" 'digit-argument) | |
44 (define-key view-mode-map "4" 'digit-argument) | |
45 (define-key view-mode-map "5" 'digit-argument) | |
46 (define-key view-mode-map "6" 'digit-argument) | |
47 (define-key view-mode-map "7" 'digit-argument) | |
48 (define-key view-mode-map "8" 'digit-argument) | |
49 (define-key view-mode-map "9" 'digit-argument) | |
50 (define-key view-mode-map "\C-u" 'universal-argument) | |
51 (define-key view-mode-map "\e" nil) | |
52 (define-key view-mode-map "\C-x" 'Control-X-prefix) | |
53 (define-key view-mode-map "\e-" 'negative-argument) | |
54 (define-key view-mode-map "\e0" 'digit-argument) | |
55 (define-key view-mode-map "\e1" 'digit-argument) | |
56 (define-key view-mode-map "\e2" 'digit-argument) | |
57 (define-key view-mode-map "\e3" 'digit-argument) | |
58 (define-key view-mode-map "\e4" 'digit-argument) | |
59 (define-key view-mode-map "\e5" 'digit-argument) | |
60 (define-key view-mode-map "\e6" 'digit-argument) | |
61 (define-key view-mode-map "\e7" 'digit-argument) | |
62 (define-key view-mode-map "\e8" 'digit-argument) | |
63 (define-key view-mode-map "\e9" 'digit-argument) | |
64 (define-key view-mode-map "<" 'beginning-of-buffer) | |
65 (define-key view-mode-map ">" 'end-of-buffer) | |
66 (define-key view-mode-map "\ev" 'View-scroll-lines-backward) | |
67 (define-key view-mode-map "\C-v" 'View-scroll-lines-forward) | |
68 (define-key view-mode-map " " 'View-scroll-lines-forward) | |
69 (define-key view-mode-map "\177" 'View-scroll-lines-backward) | |
70 (define-key view-mode-map "\n" 'View-scroll-one-more-line) | |
71 (define-key view-mode-map "\r" 'View-scroll-one-more-line) | |
72 (define-key view-mode-map "\C-l" 'recenter) | |
73 (define-key view-mode-map "z" 'View-scroll-lines-forward-set-scroll-size) | |
74 (define-key view-mode-map "g" 'View-goto-line) | |
75 (define-key view-mode-map "=" 'what-line) | |
76 (define-key view-mode-map "." 'set-mark-command) | |
77 (define-key view-mode-map "\C-@" 'set-mark-command) | |
78 (define-key view-mode-map "'" 'View-back-to-mark) | |
79 (define-key view-mode-map "@" 'View-back-to-mark) | |
80 (define-key view-mode-map "x" 'exchange-point-and-mark) | |
81 (define-key view-mode-map "h" 'Helper-describe-bindings) | |
82 (define-key view-mode-map "?" 'Helper-describe-bindings) | |
930
1dac458b5117
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
909
diff
changeset
|
83 (define-key view-mode-map (char-to-string help-char) 'Helper-help) |
44 | 84 (define-key view-mode-map "\C-n" 'next-line) |
85 (define-key view-mode-map "\C-p" 'previous-line) | |
86 (define-key view-mode-map "\C-s" 'isearch-forward) | |
87 (define-key view-mode-map "\C-r" 'isearch-backward) | |
88 (define-key view-mode-map "s" 'isearch-forward) | |
89 (define-key view-mode-map "r" 'isearch-backward) | |
90 (define-key view-mode-map "/" 'View-search-regexp-forward) | |
91 (define-key view-mode-map "\\" 'View-search-regexp-backward) | |
92 ;; This conflicts with the standard binding of isearch-regexp-forward | |
93 (define-key view-mode-map "\e\C-s" 'View-search-regexp-forward) | |
94 (define-key view-mode-map "\e\C-r" 'View-search-regexp-backward) | |
95 (define-key view-mode-map "n" 'View-search-last-regexp-forward) | |
96 (define-key view-mode-map "p" 'View-search-last-regexp-backward) | |
97 ) | |
98 | |
99 | |
256 | 100 ;;;###autoload |
44 | 101 (defun view-file (file-name) |
102 "View FILE in View mode, returning to previous buffer when done. | |
103 The usual Emacs commands are not available; instead, | |
104 a special set of commands (mostly letters and punctuation) | |
105 are defined for moving around in the buffer. | |
106 Space scrolls forward, Delete scrolls backward. | |
107 For list of all View commands, type ? or h while viewing. | |
108 | |
4119
7b1b2a8d05f2
Doc fixes; some args renamed.
Richard M. Stallman <rms@gnu.org>
parents:
3450
diff
changeset
|
109 This command runs the normal hook `view-hook'." |
44 | 110 (interactive "fView file: ") |
111 (let ((old-buf (current-buffer)) | |
112 (had-a-buf (get-file-buffer file-name)) | |
113 (buf-to-view (find-file-noselect file-name))) | |
114 (switch-to-buffer buf-to-view t) | |
115 (view-mode old-buf | |
116 (and (not had-a-buf) (not (buffer-modified-p buf-to-view)) | |
117 'kill-buffer)))) | |
118 | |
256 | 119 ;;;###autoload |
354 | 120 (defun view-file-other-window (file-name) |
121 "View FILE in View mode in other window. | |
122 Return to previous buffer when done. | |
123 The usual Emacs commands are not available; instead, | |
124 a special set of commands (mostly letters and punctuation) | |
125 are defined for moving around in the buffer. | |
126 Space scrolls forward, Delete scrolls backward. | |
127 For list of all View commands, type ? or h while viewing. | |
128 | |
4119
7b1b2a8d05f2
Doc fixes; some args renamed.
Richard M. Stallman <rms@gnu.org>
parents:
3450
diff
changeset
|
129 This command runs the normal hook `view-hook'." |
354 | 130 (interactive "fView file: ") |
131 (let ((old-arrangement (current-window-configuration)) | |
132 (had-a-buf (get-file-buffer file-name)) | |
133 (buf-to-view (find-file-noselect file-name))) | |
134 (switch-to-buffer-other-window buf-to-view) | |
135 (view-mode old-arrangement | |
136 (and (not had-a-buf) (not (buffer-modified-p buf-to-view)) | |
137 'kill-buffer)))) | |
138 | |
139 ;;;###autoload | |
44 | 140 (defun view-buffer (buffer-name) |
141 "View BUFFER in View mode, returning to previous buffer when done. | |
142 The usual Emacs commands are not available; instead, | |
143 a special set of commands (mostly letters and punctuation) | |
144 are defined for moving around in the buffer. | |
145 Space scrolls forward, Delete scrolls backward. | |
146 For list of all View commands, type ? or h while viewing. | |
147 | |
4119
7b1b2a8d05f2
Doc fixes; some args renamed.
Richard M. Stallman <rms@gnu.org>
parents:
3450
diff
changeset
|
148 This command runs the normal hook `view-hook'." |
44 | 149 (interactive "bView buffer: ") |
150 (let ((old-buf (current-buffer))) | |
151 (switch-to-buffer buffer-name t) | |
152 (view-mode old-buf nil))) | |
153 | |
256 | 154 ;;;###autoload |
354 | 155 (defun view-buffer-other-window (buffer-name not-return) |
156 "View BUFFER in View mode in another window, | |
4119
7b1b2a8d05f2
Doc fixes; some args renamed.
Richard M. Stallman <rms@gnu.org>
parents:
3450
diff
changeset
|
157 returning to original buffer when done *only* if |
7b1b2a8d05f2
Doc fixes; some args renamed.
Richard M. Stallman <rms@gnu.org>
parents:
3450
diff
changeset
|
158 prefix argument NOT-RETURN is nil (which is the default). |
7b1b2a8d05f2
Doc fixes; some args renamed.
Richard M. Stallman <rms@gnu.org>
parents:
3450
diff
changeset
|
159 |
7b1b2a8d05f2
Doc fixes; some args renamed.
Richard M. Stallman <rms@gnu.org>
parents:
3450
diff
changeset
|
160 The usual Emacs commands are not available in View mode; instead, |
354 | 161 a special set of commands (mostly letters and punctuation) |
162 are defined for moving around in the buffer. | |
163 Space scrolls forward, Delete scrolls backward. | |
164 For list of all View commands, type ? or h while viewing. | |
165 | |
4119
7b1b2a8d05f2
Doc fixes; some args renamed.
Richard M. Stallman <rms@gnu.org>
parents:
3450
diff
changeset
|
166 This command runs the normal hook `view-hook'." |
2444
5a563f113d6a
(view-buffer-other-window): Remove spurious backslashes from
Roland McGrath <roland@gnu.org>
parents:
2443
diff
changeset
|
167 (interactive "bView buffer:\nP") |
354 | 168 (let ((return-to (and not-return (current-window-configuration)))) |
169 (switch-to-buffer-other-window buffer-name) | |
170 (view-mode return-to))) | |
171 | |
172 ;;;###autoload | |
44 | 173 (defun view-mode (&optional prev-buffer action) |
174 "Major mode for viewing text but not editing it. | |
175 Letters do not insert themselves. Instead these commands are provided. | |
176 Most commands take prefix arguments. Commands dealing with lines | |
177 default to \"scroll size\" lines (initially size of window). | |
178 Search commands default to a repeat count of one. | |
179 M-< or < move to beginning of buffer. | |
180 M-> or > move to end of buffer. | |
181 C-v or Space scroll forward lines. | |
182 M-v or DEL scroll backward lines. | |
183 CR or LF scroll forward one line (backward with prefix argument). | |
184 z like Space except set number of lines for further | |
185 scrolling commands to scroll by. | |
186 C-u and Digits provide prefix arguments. `-' denotes negative argument. | |
187 = prints the current line number. | |
188 g goes to line given by prefix argument. | |
189 / or M-C-s searches forward for regular expression | |
190 \\ or M-C-r searches backward for regular expression. | |
191 n searches forward for last regular expression. | |
192 p searches backward for last regular expression. | |
193 C-@ or . set the mark. | |
194 x exchanges point and mark. | |
195 C-s or s do forward incremental search. | |
196 C-r or r do reverse incremental search. | |
197 @ or ' return to mark and pops mark ring. | |
198 Mark ring is pushed at start of every | |
199 successful search and when jump to line to occurs. | |
200 The mark is set on jump to buffer start or end. | |
201 ? or h provide help message (list of commands). | |
930
1dac458b5117
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
909
diff
changeset
|
202 \\[Helper-help] provides help (list of commands or description of a command). |
44 | 203 C-n moves down lines vertically. |
204 C-p moves upward lines vertically. | |
205 C-l recenters the screen. | |
206 q or C-c exit view-mode and return to previous buffer. | |
207 | |
4119
7b1b2a8d05f2
Doc fixes; some args renamed.
Richard M. Stallman <rms@gnu.org>
parents:
3450
diff
changeset
|
208 Entry to this mode runs the normal hook `view-hook'. |
7b1b2a8d05f2
Doc fixes; some args renamed.
Richard M. Stallman <rms@gnu.org>
parents:
3450
diff
changeset
|
209 |
44 | 210 \\{view-mode-map}" |
211 ; Not interactive because dangerous things happen | |
212 ; if you call it without passing a buffer as argument | |
213 ; and they are not easy to fix. | |
214 ; (interactive) | |
215 (make-local-variable 'view-old-mode-line-buffer-identification) | |
216 (setq view-old-mode-line-buffer-identification | |
217 mode-line-buffer-identification) | |
218 (make-local-variable 'view-old-buffer-read-only) | |
219 (setq view-old-buffer-read-only buffer-read-only) | |
220 (make-local-variable 'view-old-mode-name) | |
221 (setq view-old-mode-name mode-name) | |
222 (make-local-variable 'view-old-major-mode) | |
223 (setq view-old-major-mode major-mode) | |
224 (make-local-variable 'view-old-local-map) | |
225 (setq view-old-local-map (current-local-map)) | |
226 (make-local-variable 'view-old-Helper-return-blurb) | |
227 (setq view-old-Helper-return-blurb | |
228 (and (boundp 'Helper-return-blurb) Helper-return-blurb)) | |
229 | |
230 (setq buffer-read-only t) | |
231 (setq mode-line-buffer-identification | |
232 (list | |
233 (if (buffer-file-name) | |
234 "Viewing %f" | |
235 "Viewing %b"))) | |
236 (setq mode-name "View") | |
237 (setq major-mode 'view-mode) | |
238 (setq Helper-return-blurb | |
239 (format "continue viewing %s" | |
240 (if (buffer-file-name) | |
241 (file-name-nondirectory (buffer-file-name)) | |
242 (buffer-name)))) | |
243 | |
244 (make-local-variable 'view-exit-action) | |
245 (setq view-exit-action action) | |
354 | 246 (make-local-variable 'view-return-here) |
247 (setq view-return-here prev-buffer) | |
44 | 248 (make-local-variable 'view-exit-position) |
249 (setq view-exit-position (point-marker)) | |
250 | |
251 (make-local-variable 'view-scroll-size) | |
252 (setq view-scroll-size nil) | |
253 (make-local-variable 'view-last-regexp) | |
254 (setq view-last-regexp nil) | |
255 | |
256 (beginning-of-line) | |
257 (setq goal-column nil) | |
258 | |
259 (use-local-map view-mode-map) | |
260 (run-hooks 'view-hook) | |
261 (view-helpful-message)) | |
262 | |
354 | 263 |
44 | 264 (defun view-exit () |
265 "Exit from view-mode. | |
266 If you viewed an existing buffer, that buffer returns to its previous mode. | |
267 If you viewed a file that was not present in Emacs, its buffer is killed." | |
268 (interactive) | |
269 (setq mode-line-buffer-identification | |
270 view-old-mode-line-buffer-identification) | |
271 (setq major-mode view-old-major-mode) | |
272 (setq mode-name view-old-mode-name) | |
2443
fa26210d3028
(view-exit): Use local map view-old-local-map, not (current-local-map).
Roland McGrath <roland@gnu.org>
parents:
2319
diff
changeset
|
273 (use-local-map view-old-local-map) |
44 | 274 (setq buffer-read-only view-old-buffer-read-only) |
275 | |
276 (goto-char view-exit-position) | |
277 (set-marker view-exit-position nil) | |
278 | |
279 ;; Now do something to the buffer that we were viewing | |
280 ;; (such as kill it). | |
281 (let ((viewed-buffer (current-buffer)) | |
282 (action view-exit-action)) | |
354 | 283 (cond |
284 ((bufferp view-return-here) | |
285 (switch-to-buffer view-return-here)) | |
286 ((window-configuration-p view-return-here) | |
287 (set-window-configuration view-return-here))) | |
44 | 288 (if action (funcall action viewed-buffer)))) |
289 | |
290 (defun view-helpful-message () | |
291 (message | |
292 (substitute-command-keys | |
931 | 293 "Type \\[Helper-help] for help, \\[Helper-describe-bindings] for commands, \\[view-exit] to quit."))) |
44 | 294 |
295 (defun View-undefined () | |
296 (interactive) | |
297 (ding) | |
298 (view-helpful-message)) | |
299 | |
300 (defun view-window-size () (1- (window-height))) | |
301 | |
302 (defun view-scroll-size () | |
303 (min (view-window-size) (or view-scroll-size (view-window-size)))) | |
304 | |
305 (defvar view-hook nil | |
4119
7b1b2a8d05f2
Doc fixes; some args renamed.
Richard M. Stallman <rms@gnu.org>
parents:
3450
diff
changeset
|
306 "Normal hook run when starting to view a buffer or file.") |
44 | 307 |
308 ;(defun view-last-command (&optional who what) | |
309 ; (setq view-last-command-entry this-command) | |
310 ; (setq view-last-command who) | |
311 ; (setq view-last-command-argument what)) | |
312 | |
313 ;(defun View-repeat-last-command () | |
314 ; "Repeat last command issued in View mode." | |
315 ; (interactive) | |
316 ; (if (and view-last-command | |
317 ; (eq view-last-command-entry last-command)) | |
318 ; (funcall view-last-command view-last-command-argument)) | |
319 ; (setq this-command view-last-command-entry)) | |
320 | |
321 (defun View-goto-line (&optional line) | |
4119
7b1b2a8d05f2
Doc fixes; some args renamed.
Richard M. Stallman <rms@gnu.org>
parents:
3450
diff
changeset
|
322 "Move to line LINE in View mode. |
44 | 323 Display is centered at LINE. Sets mark at starting position and pushes |
324 mark ring." | |
325 (interactive "p") | |
326 (push-mark) | |
327 (goto-line (or line 1)) | |
328 (recenter (/ (view-window-size) 2))) | |
329 | |
330 (defun View-scroll-lines-forward (&optional lines) | |
331 "Scroll forward in View mode, or exit if end of text is visible. | |
332 No arg means whole window full, or number of lines set by \\[View-scroll-lines-forward-set-scroll-size]. | |
333 Arg is number of lines to scroll." | |
334 (interactive "P") | |
5123
4bf8c101aaef
(View-scroll-lines-forward):
Richard M. Stallman <rms@gnu.org>
parents:
4119
diff
changeset
|
335 (if (and (pos-visible-in-window-p (point-max)) |
4bf8c101aaef
(View-scroll-lines-forward):
Richard M. Stallman <rms@gnu.org>
parents:
4119
diff
changeset
|
336 ;; Allow scrolling backward at the end of the buffer. |
4bf8c101aaef
(View-scroll-lines-forward):
Richard M. Stallman <rms@gnu.org>
parents:
4119
diff
changeset
|
337 (or (null lines) |
4bf8c101aaef
(View-scroll-lines-forward):
Richard M. Stallman <rms@gnu.org>
parents:
4119
diff
changeset
|
338 (> lines 0))) |
3450
89cd5536ee81
(View-scroll-lines-forward): If we exit, do nothing else.
Richard M. Stallman <rms@gnu.org>
parents:
2444
diff
changeset
|
339 (view-exit) |
89cd5536ee81
(View-scroll-lines-forward): If we exit, do nothing else.
Richard M. Stallman <rms@gnu.org>
parents:
2444
diff
changeset
|
340 (setq lines |
89cd5536ee81
(View-scroll-lines-forward): If we exit, do nothing else.
Richard M. Stallman <rms@gnu.org>
parents:
2444
diff
changeset
|
341 (if lines (prefix-numeric-value lines) |
89cd5536ee81
(View-scroll-lines-forward): If we exit, do nothing else.
Richard M. Stallman <rms@gnu.org>
parents:
2444
diff
changeset
|
342 (view-scroll-size))) |
89cd5536ee81
(View-scroll-lines-forward): If we exit, do nothing else.
Richard M. Stallman <rms@gnu.org>
parents:
2444
diff
changeset
|
343 ;; (view-last-command 'View-scroll-lines-forward lines) |
89cd5536ee81
(View-scroll-lines-forward): If we exit, do nothing else.
Richard M. Stallman <rms@gnu.org>
parents:
2444
diff
changeset
|
344 (if (>= lines (view-window-size)) |
89cd5536ee81
(View-scroll-lines-forward): If we exit, do nothing else.
Richard M. Stallman <rms@gnu.org>
parents:
2444
diff
changeset
|
345 (scroll-up nil) |
89cd5536ee81
(View-scroll-lines-forward): If we exit, do nothing else.
Richard M. Stallman <rms@gnu.org>
parents:
2444
diff
changeset
|
346 (if (>= (- lines) (view-window-size)) |
89cd5536ee81
(View-scroll-lines-forward): If we exit, do nothing else.
Richard M. Stallman <rms@gnu.org>
parents:
2444
diff
changeset
|
347 (scroll-down nil) |
89cd5536ee81
(View-scroll-lines-forward): If we exit, do nothing else.
Richard M. Stallman <rms@gnu.org>
parents:
2444
diff
changeset
|
348 (scroll-up lines))) |
89cd5536ee81
(View-scroll-lines-forward): If we exit, do nothing else.
Richard M. Stallman <rms@gnu.org>
parents:
2444
diff
changeset
|
349 (cond ((pos-visible-in-window-p (point-max)) |
89cd5536ee81
(View-scroll-lines-forward): If we exit, do nothing else.
Richard M. Stallman <rms@gnu.org>
parents:
2444
diff
changeset
|
350 (goto-char (point-max)) |
89cd5536ee81
(View-scroll-lines-forward): If we exit, do nothing else.
Richard M. Stallman <rms@gnu.org>
parents:
2444
diff
changeset
|
351 (recenter -1) |
89cd5536ee81
(View-scroll-lines-forward): If we exit, do nothing else.
Richard M. Stallman <rms@gnu.org>
parents:
2444
diff
changeset
|
352 (message (substitute-command-keys |
89cd5536ee81
(View-scroll-lines-forward): If we exit, do nothing else.
Richard M. Stallman <rms@gnu.org>
parents:
2444
diff
changeset
|
353 "End. Type \\[view-exit] to quit viewing.")))) |
89cd5536ee81
(View-scroll-lines-forward): If we exit, do nothing else.
Richard M. Stallman <rms@gnu.org>
parents:
2444
diff
changeset
|
354 (move-to-window-line -1) |
89cd5536ee81
(View-scroll-lines-forward): If we exit, do nothing else.
Richard M. Stallman <rms@gnu.org>
parents:
2444
diff
changeset
|
355 (beginning-of-line))) |
44 | 356 |
357 (defun View-scroll-lines-forward-set-scroll-size (&optional lines) | |
358 "Scroll forward LINES lines in View mode, setting the \"scroll size\". | |
359 This is the number of lines which \\[View-scroll-lines-forward] and \\[View-scroll-lines-backward] scroll by default. | |
360 The absolute value of LINES is used, so this command can be used to scroll | |
361 backwards (but \"scroll size\" is always positive). If LINES is greater than | |
362 window height or omitted, then window height is assumed. If LINES is less | |
363 than window height then scrolling context is provided from previous screen." | |
364 (interactive "P") | |
365 (if (not lines) | |
366 (setq view-scroll-size (view-window-size)) | |
367 (setq lines (prefix-numeric-value lines)) | |
368 (setq view-scroll-size | |
369 (min (if (> lines 0) lines (- lines)) (view-window-size)))) | |
370 (View-scroll-lines-forward lines)) | |
371 | |
372 (defun View-scroll-one-more-line (&optional arg) | |
373 "Scroll one more line up in View mode. | |
374 With ARG scroll one line down." | |
375 (interactive "P") | |
376 (View-scroll-lines-forward (if (not arg) 1 -1))) | |
377 | |
378 (defun View-scroll-lines-backward (&optional lines) | |
379 "Scroll backward in View mode. | |
380 No arg means whole window full, or number of lines set by \\[View-scroll-lines-forward-set-scroll-size]. | |
381 Arg is number of lines to scroll." | |
382 (interactive "P") | |
383 (View-scroll-lines-forward (if lines | |
384 (- (prefix-numeric-value lines)) | |
385 (- (view-scroll-size))))) | |
386 | |
4119
7b1b2a8d05f2
Doc fixes; some args renamed.
Richard M. Stallman <rms@gnu.org>
parents:
3450
diff
changeset
|
387 (defun View-search-regexp-forward (n regexp) |
7b1b2a8d05f2
Doc fixes; some args renamed.
Richard M. Stallman <rms@gnu.org>
parents:
3450
diff
changeset
|
388 "Search forward for Nth occurrence of REGEXP. |
44 | 389 Displays line found at center of window. REGEXP is remembered for |
390 searching with \\[View-search-last-regexp-forward] and \\[View-search-last-regexp-backward]. Sets mark at starting position and pushes mark ring." | |
391 (interactive "p\nsSearch forward (regexp): ") | |
392 (if (> (length regexp) 0) | |
393 (progn | |
4119
7b1b2a8d05f2
Doc fixes; some args renamed.
Richard M. Stallman <rms@gnu.org>
parents:
3450
diff
changeset
|
394 ;(view-last-command 'View-search-last-regexp-forward n) |
7b1b2a8d05f2
Doc fixes; some args renamed.
Richard M. Stallman <rms@gnu.org>
parents:
3450
diff
changeset
|
395 (view-search n regexp)))) |
44 | 396 |
4119
7b1b2a8d05f2
Doc fixes; some args renamed.
Richard M. Stallman <rms@gnu.org>
parents:
3450
diff
changeset
|
397 (defun View-search-regexp-backward (n regexp) |
7b1b2a8d05f2
Doc fixes; some args renamed.
Richard M. Stallman <rms@gnu.org>
parents:
3450
diff
changeset
|
398 "Search backward from window start for Nth instance of REGEXP. |
44 | 399 Displays line found at center of window. REGEXP is remembered for |
400 searching with \\[View-search-last-regexp-forward] and \\[View-search-last-regexp-backward]. Sets mark at starting position and pushes mark ring." | |
401 (interactive "p\nsSearch backward (regexp): ") | |
4119
7b1b2a8d05f2
Doc fixes; some args renamed.
Richard M. Stallman <rms@gnu.org>
parents:
3450
diff
changeset
|
402 (View-search-regexp-forward (- n) regexp)) |
44 | 403 |
4119
7b1b2a8d05f2
Doc fixes; some args renamed.
Richard M. Stallman <rms@gnu.org>
parents:
3450
diff
changeset
|
404 (defun View-search-last-regexp-forward (n) |
7b1b2a8d05f2
Doc fixes; some args renamed.
Richard M. Stallman <rms@gnu.org>
parents:
3450
diff
changeset
|
405 "Search forward from window end for Nth instance of last regexp. |
44 | 406 Displays line found at center of window. Sets mark at starting position |
407 and pushes mark ring." | |
408 (interactive "p") | |
4119
7b1b2a8d05f2
Doc fixes; some args renamed.
Richard M. Stallman <rms@gnu.org>
parents:
3450
diff
changeset
|
409 (View-search-regexp-forward n view-last-regexp)) |
44 | 410 |
4119
7b1b2a8d05f2
Doc fixes; some args renamed.
Richard M. Stallman <rms@gnu.org>
parents:
3450
diff
changeset
|
411 (defun View-search-last-regexp-backward (n) |
7b1b2a8d05f2
Doc fixes; some args renamed.
Richard M. Stallman <rms@gnu.org>
parents:
3450
diff
changeset
|
412 "Search backward from window start for Nth instance of last regexp. |
44 | 413 Displays line found at center of window. Sets mark at starting position and |
414 pushes mark ring." | |
415 (interactive "p") | |
4119
7b1b2a8d05f2
Doc fixes; some args renamed.
Richard M. Stallman <rms@gnu.org>
parents:
3450
diff
changeset
|
416 (View-search-regexp-backward n view-last-regexp)) |
44 | 417 |
418 (defun View-back-to-mark (&optional ignore) | |
419 "Return to last mark set in View mode, else beginning of file. | |
420 Displays line at center of window. Pops mark ring so successive | |
421 invocations return to earlier marks." | |
422 (interactive) | |
423 (goto-char (or (mark) (point-min))) | |
424 (pop-mark) | |
425 (recenter (/ (view-window-size) 2))) | |
426 | |
427 (defun view-search (times regexp) | |
428 (setq view-last-regexp regexp) | |
429 (let (where) | |
430 (save-excursion | |
431 (move-to-window-line (if (< times 0) 0 -1)) | |
432 (if (re-search-forward regexp nil t times) | |
433 (setq where (point)))) | |
434 (if where | |
435 (progn | |
436 (push-mark) | |
437 (goto-char where) | |
438 (beginning-of-line) | |
439 (recenter (/ (view-window-size) 2))) | |
440 (message "Can't find occurrence %d of %s" times regexp) | |
441 (sit-for 4)))) | |
442 | |
354 | 443 |
584 | 444 (provide 'view) |
445 | |
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
446 ;;; view.el ends here |