Mercurial > emacs
annotate lisp/longlines.el @ 66627:d4bc6b8ae712
*** empty log message ***
author | Bill Wohler <wohler@newt.com> |
---|---|
date | Wed, 02 Nov 2005 01:21:56 +0000 |
parents | 9a896c723ab2 |
children | e10f2e7919f0 |
rev | line source |
---|---|
61110 | 1 ;;; longlines.el --- automatically wrap long lines |
2 | |
64762
41bb365f41c4
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64216
diff
changeset
|
3 ;; Copyright (C) 2000, 2001, 2005 Free Software Foundation, Inc. |
61110 | 4 |
5 ;; Authors: Kai Grossjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE> | |
6 ;; Alex Schroeder <alex@gnu.org> | |
7 ;; Chong Yidong <cyd@stupidchicken.com> | |
8 ;; Maintainer: Chong Yidong <cyd@stupidchicken.com> | |
66465
9a896c723ab2
* longlines.el (longlines-mode): Bind after-change-functions to
Chong Yidong <cyd@stupidchicken.com>
parents:
66453
diff
changeset
|
9 ;; Keywords: convenience, wp |
61110 | 10 |
11 ;; This file is part of GNU Emacs. | |
12 | |
13 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
14 ;; it under the terms of the GNU General Public License as published by | |
15 ;; the Free Software Foundation; either version 2, or (at your option) | |
16 ;; any later version. | |
17 | |
18 ;; GNU Emacs is distributed in the hope that it will be useful, | |
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 ;; GNU General Public License for more details. | |
22 | |
23 ;; You should have received a copy of the GNU General Public License | |
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64091 | 25 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
26 ;; Boston, MA 02110-1301, USA. | |
61110 | 27 |
28 ;;; Commentary: | |
29 | |
30 ;; Some text editors save text files with long lines, and they | |
31 ;; automatically break these lines at whitespace, without actually | |
32 ;; inserting any newline characters. When doing `M-q' in Emacs, you | |
33 ;; are inserting newline characters. Longlines mode provides a file | |
34 ;; format which wraps the long lines when reading a file and unwraps | |
35 ;; the lines when saving the file. It can also wrap and unwrap | |
36 ;; automatically as editing takes place. | |
37 | |
38 ;; Special thanks to Rod Smith for many useful bug reports. | |
39 | |
40 ;;; Code: | |
41 | |
42 (defgroup longlines nil | |
43 "Automatic wrapping of long lines when loading files." | |
44 :group 'fill) | |
45 | |
46 (defcustom longlines-auto-wrap t | |
47 "*Non-nil means long lines are automatically wrapped after each command. | |
48 Otherwise, you can perform filling using `fill-paragraph' or | |
49 `auto-fill-mode'. In any case, the soft newlines will be removed | |
50 when the file is saved to disk." | |
51 :group 'longlines | |
52 :type 'boolean) | |
53 | |
54 (defcustom longlines-wrap-follows-window-size nil | |
55 "*Non-nil means wrapping and filling happen at the edge of the window. | |
56 Otherwise, `fill-column' is used, regardless of the window size. This | |
57 does not work well when the buffer is displayed in multiple windows | |
58 with differing widths." | |
59 :group 'longlines | |
60 :type 'boolean) | |
61 | |
62 (defcustom longlines-show-hard-newlines nil | |
63557
6a1d35d4ea03
(longlines-mode, longlines-show-hard-newlines): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
63198
diff
changeset
|
63 "*Non-nil means each hard newline is marked on the screen. |
6a1d35d4ea03
(longlines-mode, longlines-show-hard-newlines): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
63198
diff
changeset
|
64 \(The variable `longlines-show-effect' controls what they look like.) |
61110 | 65 You can also enable the display temporarily, using the command |
66 `longlines-show-hard-newlines'" | |
67 :group 'longlines | |
68 :type 'boolean) | |
69 | |
70 (defcustom longlines-show-effect (propertize "|\n" 'face 'escape-glyph) | |
71 "*A string to display when showing hard newlines. | |
72 This is used when `longlines-show-hard-newlines' is on." | |
73 :group 'longlines | |
74 :type 'string) | |
75 | |
76 ;; Internal variables | |
77 | |
78 (defvar longlines-wrap-beg nil) | |
79 (defvar longlines-wrap-end nil) | |
80 (defvar longlines-wrap-point nil) | |
81 (defvar longlines-showing nil) | |
82 | |
83 (make-variable-buffer-local 'longlines-wrap-beg) | |
84 (make-variable-buffer-local 'longlines-wrap-end) | |
85 (make-variable-buffer-local 'longlines-wrap-point) | |
86 (make-variable-buffer-local 'longlines-showing) | |
87 | |
88 ;; Mode | |
89 | |
90 ;;;###autoload | |
91 (define-minor-mode longlines-mode | |
92 "Toggle Long Lines mode. | |
93 In Long Lines mode, long lines are wrapped if they extend beyond | |
94 `fill-column'. The soft newlines used for line wrapping will not | |
95 show up when the text is yanked or saved to disk. | |
96 | |
63557
6a1d35d4ea03
(longlines-mode, longlines-show-hard-newlines): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
63198
diff
changeset
|
97 If the variable `longlines-auto-wrap' is non-nil, lines are automatically |
61110 | 98 wrapped whenever the buffer is changed. You can always call |
99 `fill-paragraph' to fill individual paragraphs. | |
100 | |
63557
6a1d35d4ea03
(longlines-mode, longlines-show-hard-newlines): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
63198
diff
changeset
|
101 If the variable `longlines-show-hard-newlines' is non-nil, hard newlines |
6a1d35d4ea03
(longlines-mode, longlines-show-hard-newlines): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
63198
diff
changeset
|
102 are indicated with a symbol." |
61289
78b96a3ee117
(longlines-mode): Specify :group.
Lute Kamstra <lute@gnu.org>
parents:
61125
diff
changeset
|
103 :group 'longlines :lighter " ll" |
61110 | 104 (if longlines-mode |
105 ;; Turn on longlines mode | |
106 (progn | |
107 (use-hard-newlines 1 'never) | |
108 (set (make-local-variable 'require-final-newline) nil) | |
109 (add-to-list 'buffer-file-format 'longlines) | |
110 (add-hook 'change-major-mode-hook 'longlines-mode-off nil t) | |
111 (make-local-variable 'buffer-substring-filters) | |
66088
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
112 (set (make-local-variable 'isearch-search-fun-function) |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
113 'longlinges-search-function) |
61110 | 114 (add-to-list 'buffer-substring-filters 'longlines-encode-string) |
115 (when longlines-wrap-follows-window-size | |
116 (set (make-local-variable 'fill-column) | |
117 (- (window-width) window-min-width)) | |
118 (add-hook 'window-configuration-change-hook | |
119 'longlines-window-change-function nil t)) | |
120 (let ((buffer-undo-list t) | |
65312
915d671fef52
*** empty log message ***
Chong Yidong <cyd@stupidchicken.com>
parents:
64762
diff
changeset
|
121 (inhibit-read-only t) |
66465
9a896c723ab2
* longlines.el (longlines-mode): Bind after-change-functions to
Chong Yidong <cyd@stupidchicken.com>
parents:
66453
diff
changeset
|
122 (after-change-functions nil) |
61110 | 123 (mod (buffer-modified-p))) |
124 ;; Turning off undo is OK since (spaces + newlines) is | |
125 ;; conserved, except for a corner case in | |
126 ;; longlines-wrap-lines that we'll never encounter from here | |
66453
ce840b1d13ad
* longlines.el (longlines-mode): Remove narrowing before
Chong Yidong <cyd@stupidchicken.com>
parents:
66132
diff
changeset
|
127 (save-restriction |
ce840b1d13ad
* longlines.el (longlines-mode): Remove narrowing before
Chong Yidong <cyd@stupidchicken.com>
parents:
66132
diff
changeset
|
128 (widen) |
ce840b1d13ad
* longlines.el (longlines-mode): Remove narrowing before
Chong Yidong <cyd@stupidchicken.com>
parents:
66132
diff
changeset
|
129 (longlines-decode-region (point-min) (point-max))) |
61110 | 130 (longlines-wrap-region (point-min) (point-max)) |
131 (set-buffer-modified-p mod)) | |
132 (when (and longlines-show-hard-newlines | |
133 (not longlines-showing)) | |
134 (longlines-show-hard-newlines)) | |
135 (when longlines-auto-wrap | |
136 (auto-fill-mode 0) | |
137 (add-hook 'after-change-functions | |
138 'longlines-after-change-function nil t) | |
139 (add-hook 'post-command-hook | |
140 'longlines-post-command-function nil t))) | |
141 ;; Turn off longlines mode | |
142 (setq buffer-file-format (delete 'longlines buffer-file-format)) | |
143 (if longlines-showing | |
144 (longlines-unshow-hard-newlines)) | |
65312
915d671fef52
*** empty log message ***
Chong Yidong <cyd@stupidchicken.com>
parents:
64762
diff
changeset
|
145 (let ((buffer-undo-list t) |
66465
9a896c723ab2
* longlines.el (longlines-mode): Bind after-change-functions to
Chong Yidong <cyd@stupidchicken.com>
parents:
66453
diff
changeset
|
146 (after-change-functions nil) |
65312
915d671fef52
*** empty log message ***
Chong Yidong <cyd@stupidchicken.com>
parents:
64762
diff
changeset
|
147 (inhibit-read-only t)) |
66453
ce840b1d13ad
* longlines.el (longlines-mode): Remove narrowing before
Chong Yidong <cyd@stupidchicken.com>
parents:
66132
diff
changeset
|
148 (save-restriction |
ce840b1d13ad
* longlines.el (longlines-mode): Remove narrowing before
Chong Yidong <cyd@stupidchicken.com>
parents:
66132
diff
changeset
|
149 (widen) |
ce840b1d13ad
* longlines.el (longlines-mode): Remove narrowing before
Chong Yidong <cyd@stupidchicken.com>
parents:
66132
diff
changeset
|
150 (longlines-encode-region (point-min) (point-max)))) |
61110 | 151 (remove-hook 'change-major-mode-hook 'longlines-mode-off t) |
152 (remove-hook 'before-kill-functions 'longlines-encode-region t) | |
153 (remove-hook 'after-change-functions 'longlines-after-change-function t) | |
154 (remove-hook 'post-command-hook 'longlines-post-command-function t) | |
155 (remove-hook 'window-configuration-change-hook | |
156 'longlines-window-change-function t) | |
65312
915d671fef52
*** empty log message ***
Chong Yidong <cyd@stupidchicken.com>
parents:
64762
diff
changeset
|
157 (when longlines-wrap-follows-window-size |
915d671fef52
*** empty log message ***
Chong Yidong <cyd@stupidchicken.com>
parents:
64762
diff
changeset
|
158 (kill-local-variable 'fill-column)) |
66088
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
159 (kill-local-variable 'isearch-search-fun-function) |
65312
915d671fef52
*** empty log message ***
Chong Yidong <cyd@stupidchicken.com>
parents:
64762
diff
changeset
|
160 (kill-local-variable 'require-final-newline) |
915d671fef52
*** empty log message ***
Chong Yidong <cyd@stupidchicken.com>
parents:
64762
diff
changeset
|
161 (kill-local-variable 'buffer-substring-filters) |
915d671fef52
*** empty log message ***
Chong Yidong <cyd@stupidchicken.com>
parents:
64762
diff
changeset
|
162 (kill-local-variable 'use-hard-newlines))) |
61110 | 163 |
164 (defun longlines-mode-off () | |
165 "Turn off longlines mode. | |
166 This function exists to be called by `change-major-mode-hook' when the | |
167 major mode changes." | |
168 (longlines-mode 0)) | |
169 | |
170 ;; Showing the effect of hard newlines in the buffer | |
171 | |
172 (defun longlines-show-hard-newlines (&optional arg) | |
173 "Make hard newlines visible by adding a face. | |
174 With optional argument ARG, make the hard newlines invisible again." | |
175 (interactive "P") | |
176 (let ((buffer-undo-list t) | |
177 (mod (buffer-modified-p))) | |
178 (if arg | |
179 (longlines-unshow-hard-newlines) | |
180 (setq longlines-showing t) | |
181 (longlines-show-region (point-min) (point-max))) | |
182 (set-buffer-modified-p mod))) | |
183 | |
184 (defun longlines-show-region (beg end) | |
185 "Make hard newlines between BEG and END visible." | |
186 (let* ((pmin (min beg end)) | |
187 (pmax (max beg end)) | |
64216
6c19076eecb0
(longlines-show-region, longlines-unshow-hard-newlines):
Richard M. Stallman <rms@gnu.org>
parents:
64091
diff
changeset
|
188 (pos (text-property-not-all pmin pmax 'hard nil))) |
61110 | 189 (while pos |
190 (put-text-property pos (1+ pos) 'display | |
191 (copy-sequence longlines-show-effect)) | |
64216
6c19076eecb0
(longlines-show-region, longlines-unshow-hard-newlines):
Richard M. Stallman <rms@gnu.org>
parents:
64091
diff
changeset
|
192 (setq pos (text-property-not-all (1+ pos) pmax 'hard nil))))) |
61110 | 193 |
194 (defun longlines-unshow-hard-newlines () | |
195 "Make hard newlines invisible again." | |
196 (interactive) | |
197 (setq longlines-showing nil) | |
64216
6c19076eecb0
(longlines-show-region, longlines-unshow-hard-newlines):
Richard M. Stallman <rms@gnu.org>
parents:
64091
diff
changeset
|
198 (let ((pos (text-property-not-all (point-min) (point-max) 'hard nil))) |
61110 | 199 (while pos |
200 (remove-text-properties pos (1+ pos) '(display)) | |
64216
6c19076eecb0
(longlines-show-region, longlines-unshow-hard-newlines):
Richard M. Stallman <rms@gnu.org>
parents:
64091
diff
changeset
|
201 (setq pos (text-property-not-all (1+ pos) (point-max) 'hard nil))))) |
61110 | 202 |
203 ;; Wrapping the paragraphs. | |
204 | |
205 (defun longlines-wrap-region (beg end) | |
206 "Wrap each successive line, starting with the line before BEG. | |
207 Stop when we reach lines after END that don't need wrapping, or the | |
208 end of the buffer." | |
209 (setq longlines-wrap-point (point)) | |
210 (goto-char beg) | |
211 (forward-line -1) | |
212 ;; Two successful longlines-wrap-line's in a row mean successive | |
213 ;; lines don't need wrapping. | |
214 (while (null (and (longlines-wrap-line) | |
215 (or (eobp) | |
216 (and (>= (point) end) | |
217 (longlines-wrap-line)))))) | |
218 (goto-char longlines-wrap-point)) | |
219 | |
220 (defun longlines-wrap-line () | |
221 "If the current line needs to be wrapped, wrap it and return nil. | |
222 If wrapping is performed, point remains on the line. If the line does | |
223 not need to be wrapped, move point to the next line and return t." | |
224 (if (longlines-set-breakpoint) | |
225 (progn (backward-char 1) | |
226 (delete-char 1) | |
227 (insert-char ?\n 1) | |
228 nil) | |
229 (if (longlines-merge-lines-p) | |
230 (progn (end-of-line) | |
231 (delete-char 1) | |
232 ;; After certain commands (e.g. kill-line), there may be two | |
233 ;; successive soft newlines in the buffer. In this case, we | |
234 ;; replace these two newlines by a single space. Unfortunately, | |
235 ;; this breaks the conservation of (spaces + newlines), so we | |
236 ;; have to fiddle with longlines-wrap-point. | |
237 (if (or (bolp) (eolp)) | |
238 (if (> longlines-wrap-point (point)) | |
239 (setq longlines-wrap-point | |
240 (1- longlines-wrap-point))) | |
241 (insert-char ? 1)) | |
242 nil) | |
243 (forward-line 1) | |
244 t))) | |
245 | |
246 (defun longlines-set-breakpoint () | |
247 "Place point where we should break the current line, and return t. | |
248 If the line should not be broken, return nil; point remains on the | |
249 line." | |
250 (move-to-column fill-column) | |
251 (if (and (re-search-forward "[^ ]" (line-end-position) 1) | |
252 (> (current-column) fill-column)) | |
253 ;; This line is too long. Can we break it? | |
254 (or (longlines-find-break-backward) | |
255 (progn (move-to-column fill-column) | |
256 (longlines-find-break-forward))))) | |
257 | |
258 (defun longlines-find-break-backward () | |
259 "Move point backward to the first available breakpoint and return t. | |
260 If no breakpoint is found, return nil." | |
261 (and (search-backward " " (line-beginning-position) 1) | |
262 (save-excursion | |
263 (skip-chars-backward " " (line-beginning-position)) | |
264 (null (bolp))) | |
265 (progn (forward-char 1) | |
266 (if (and fill-nobreak-predicate | |
267 (run-hook-with-args-until-success | |
268 'fill-nobreak-predicate)) | |
269 (progn (skip-chars-backward " " (line-beginning-position)) | |
270 (longlines-find-break-backward)) | |
271 t)))) | |
272 | |
273 (defun longlines-find-break-forward () | |
274 "Move point forward to the first available breakpoint and return t. | |
275 If no break point is found, return nil." | |
276 (and (search-forward " " (line-end-position) 1) | |
277 (progn (skip-chars-forward " " (line-end-position)) | |
278 (null (eolp))) | |
279 (if (and fill-nobreak-predicate | |
280 (run-hook-with-args-until-success | |
281 'fill-nobreak-predicate)) | |
282 (longlines-find-break-forward) | |
283 t))) | |
284 | |
285 (defun longlines-merge-lines-p () | |
286 "Return t if part of the next line can fit onto the current line. | |
287 Otherwise, return nil. Text cannot be moved across hard newlines." | |
288 (save-excursion | |
289 (end-of-line) | |
290 (and (null (eobp)) | |
291 (null (get-text-property (point) 'hard)) | |
292 (let ((space (- fill-column (current-column)))) | |
293 (forward-line 1) | |
294 (if (eq (char-after) ? ) | |
295 t ; We can always merge some spaces | |
296 (<= (if (search-forward " " (line-end-position) 1) | |
297 (current-column) | |
298 (1+ (current-column))) | |
299 space)))))) | |
300 | |
301 (defun longlines-decode-region (beg end) | |
302 "Turn all newlines between BEG and END into hard newlines." | |
303 (save-excursion | |
304 (goto-char (min beg end)) | |
305 (while (search-forward "\n" (max beg end) t) | |
306 (set-hard-newline-properties | |
307 (match-beginning 0) (match-end 0))))) | |
308 | |
309 (defun longlines-encode-region (beg end &optional buffer) | |
310 "Replace each soft newline between BEG and END with exactly one space. | |
311 Hard newlines are left intact. The optional argument BUFFER exists for | |
312 compatibility with `format-alist', and is ignored." | |
313 (save-excursion | |
314 (let ((mod (buffer-modified-p))) | |
315 (goto-char (min beg end)) | |
316 (while (search-forward "\n" (max (max beg end)) t) | |
317 (unless (get-text-property (match-beginning 0) 'hard) | |
318 (replace-match " "))) | |
319 (set-buffer-modified-p mod) | |
320 end))) | |
321 | |
322 (defun longlines-encode-string (string) | |
323 "Return a copy of STRING with each soft newline replaced by a space. | |
324 Hard newlines are left intact." | |
325 (let* ((str (copy-sequence string)) | |
326 (pos (string-match "\n" str))) | |
327 (while pos | |
328 (if (null (get-text-property pos 'hard str)) | |
329 (aset str pos ? )) | |
330 (setq pos (string-match "\n" str (1+ pos)))) | |
331 str)) | |
332 | |
333 ;; Auto wrap | |
334 | |
335 (defun longlines-auto-wrap (&optional arg) | |
336 "Turn on automatic line wrapping, and wrap the entire buffer. | |
337 With optional argument ARG, turn off line wrapping." | |
338 (interactive "P") | |
339 (remove-hook 'after-change-functions 'longlines-after-change-function t) | |
340 (remove-hook 'post-command-hook 'longlines-post-command-function t) | |
341 (if arg | |
342 (progn (setq longlines-auto-wrap nil) | |
343 (message "Auto wrap disabled.")) | |
344 (setq longlines-auto-wrap t) | |
345 (add-hook 'after-change-functions | |
346 'longlines-after-change-function nil t) | |
347 (add-hook 'post-command-hook | |
348 'longlines-post-command-function nil t) | |
349 (let ((mod (buffer-modified-p))) | |
350 (longlines-wrap-region (point-min) (point-max)) | |
351 (set-buffer-modified-p mod)) | |
352 (message "Auto wrap enabled."))) | |
353 | |
354 (defun longlines-after-change-function (beg end len) | |
355 "Update `longlines-wrap-beg' and `longlines-wrap-end'. | |
356 This is called by `after-change-functions' to keep track of the region | |
357 that has changed." | |
358 (unless undo-in-progress | |
359 (setq longlines-wrap-beg | |
360 (if longlines-wrap-beg (min longlines-wrap-beg beg) beg)) | |
361 (setq longlines-wrap-end | |
362 (if longlines-wrap-end (max longlines-wrap-end end) end)))) | |
363 | |
364 (defun longlines-post-command-function () | |
365 "Perform line wrapping on the parts of the buffer that have changed. | |
366 This is called by `post-command-hook' after each command." | |
367 (when longlines-wrap-beg | |
368 (cond ((or (eq this-command 'yank) | |
369 (eq this-command 'yank-pop)) | |
370 (longlines-decode-region (point) (mark t)) | |
371 (if longlines-showing | |
372 (longlines-show-region (point) (mark t)))) | |
373 ((and (eq this-command 'newline) longlines-showing) | |
374 (save-excursion | |
375 (if (search-backward "\n" nil t) | |
376 (longlines-show-region | |
377 (match-beginning 0) (match-end 0)))))) | |
378 (unless (or (eq this-command 'fill-paragraph) | |
379 (eq this-command 'fill-region)) | |
380 (longlines-wrap-region longlines-wrap-beg longlines-wrap-end)) | |
381 (setq longlines-wrap-beg nil) | |
382 (setq longlines-wrap-end nil))) | |
383 | |
384 (defun longlines-window-change-function () | |
385 "Re-wrap the buffer if the window width has changed. | |
386 This is called by `window-size-change-functions'." | |
387 (when (/= fill-column (- (window-width) window-min-width)) | |
388 (setq fill-column (- (window-width) window-min-width)) | |
389 (let ((mod (buffer-modified-p))) | |
390 (longlines-wrap-region (point-min) (point-max)) | |
391 (set-buffer-modified-p mod)))) | |
392 | |
66088
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
393 ;; Isearch |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
394 |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
395 (defun longlinges-search-function () |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
396 (cond |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
397 (isearch-word |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
398 (if isearch-forward 'word-search-forward 'word-search-backward)) |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
399 (isearch-regexp |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
400 (if isearch-forward 're-search-forward 're-search-backward)) |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
401 (t |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
402 (if isearch-forward |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
403 'longlines-search-forward |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
404 'longlines-search-backward)))) |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
405 |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
406 (defun longlines-search-forward (string &optional bound noerror count) |
66132
3fe20f1edf7b
* longlines.el (longlines-search-forward)
Chong Yidong <cyd@stupidchicken.com>
parents:
66088
diff
changeset
|
407 (let ((search-spaces-regexp "[ \n]+")) |
66088
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
408 (re-search-forward (regexp-quote string) bound noerror count))) |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
409 |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
410 (defun longlines-search-backward (string &optional bound noerror count) |
66132
3fe20f1edf7b
* longlines.el (longlines-search-forward)
Chong Yidong <cyd@stupidchicken.com>
parents:
66088
diff
changeset
|
411 (let ((search-spaces-regexp "[ \n]+")) |
66088
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
412 (re-search-backward (regexp-quote string) bound noerror count))) |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
413 |
61110 | 414 ;; Loading and saving |
415 | |
416 (add-to-list | |
417 'format-alist | |
418 (list 'longlines "Automatically wrap long lines." nil | |
419 'longlines-decode-region 'longlines-encode-region t nil)) | |
420 | |
421 (provide 'longlines) | |
422 | |
61125
93886f61ae3e
Changes from arch/CVS synchronization
Miles Bader <miles@gnu.org>
parents:
61110
diff
changeset
|
423 ;; arch-tag: 3489d225-5506-47b9-8659-d8807b77c624 |
61110 | 424 ;;; longlines.el ends here |