* mh-mime.el (mh-decode-message-subject): Fix case of Subject.
[emacs.git] / lisp / longlines.el
blobe81a235a17b9ba4d2a3ada548604ba8b72bfe32b
1 ;;; longlines.el --- automatically wrap long lines -*- coding:utf-8 -*-
3 ;; Copyright (C) 2000-2001, 2004-2011 Free Software Foundation, Inc.
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>
9 ;; Keywords: convenience, wp
11 ;; This file is part of GNU Emacs.
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 3 of the License, or
16 ;; (at your option) any later version.
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.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;;; Commentary:
28 ;; Some text editors save text files with long lines, and they
29 ;; automatically break these lines at whitespace, without actually
30 ;; inserting any newline characters. When doing `M-q' in Emacs, you
31 ;; are inserting newline characters. Longlines mode provides a file
32 ;; format which wraps the long lines when reading a file and unwraps
33 ;; the lines when saving the file. It can also wrap and unwrap
34 ;; automatically as editing takes place.
36 ;; Special thanks to Rod Smith for many useful bug reports.
38 ;;; Code:
40 (defgroup longlines nil
41 "Automatic wrapping of long lines when loading files."
42 :group 'fill)
44 (defcustom longlines-auto-wrap t
45 "Non-nil means long lines are automatically wrapped after each command.
46 Otherwise, you can perform filling using `fill-paragraph' or
47 `auto-fill-mode'. In any case, the soft newlines will be removed
48 when the file is saved to disk."
49 :group 'longlines
50 :type 'boolean)
52 (defcustom longlines-wrap-follows-window-size nil
53 "Non-nil means wrapping and filling happen at the edge of the window.
54 Otherwise, `fill-column' is used, regardless of the window size. This
55 does not work well when the buffer is displayed in multiple windows
56 with differing widths.
58 If the value is an integer, that specifies the distance from the
59 right edge of the window at which wrapping occurs. For any other
60 non-nil value, wrapping occurs 2 characters from the right edge."
61 :group 'longlines
62 :type 'boolean)
64 (defcustom longlines-show-hard-newlines nil
65 "Non-nil means each hard newline is marked on the screen.
66 \(The variable `longlines-show-effect' controls what they look like.)
67 You can also enable the display temporarily, using the command
68 `longlines-show-hard-newlines'."
69 :group 'longlines
70 :type 'boolean)
72 (defcustom longlines-show-effect (propertize "ΒΆ\n" 'face 'escape-glyph)
73 "A string to display when showing hard newlines.
74 This is used when `longlines-show-hard-newlines' is on."
75 :group 'longlines
76 :type 'string)
78 ;; Internal variables
80 (defvar longlines-wrap-beg nil)
81 (defvar longlines-wrap-end nil)
82 (defvar longlines-wrap-point nil)
83 (defvar longlines-showing nil)
84 (defvar longlines-decoded nil)
86 (make-variable-buffer-local 'longlines-wrap-beg)
87 (make-variable-buffer-local 'longlines-wrap-end)
88 (make-variable-buffer-local 'longlines-wrap-point)
89 (make-variable-buffer-local 'longlines-showing)
90 (make-variable-buffer-local 'longlines-decoded)
92 ;; Mode
94 (defvar message-indent-citation-function)
96 ;;;###autoload
97 (define-minor-mode longlines-mode
98 "Minor mode to wrap long lines.
99 In Long Lines mode, long lines are wrapped if they extend beyond
100 `fill-column'. The soft newlines used for line wrapping will not
101 show up when the text is yanked or saved to disk.
103 With no argument, this command toggles Flyspell mode.
104 With a prefix argument ARG, turn Flyspell minor mode on if ARG is positive,
105 otherwise turn it off.
107 If the variable `longlines-auto-wrap' is non-nil, lines are automatically
108 wrapped whenever the buffer is changed. You can always call
109 `fill-paragraph' to fill individual paragraphs.
111 If the variable `longlines-show-hard-newlines' is non-nil, hard newlines
112 are indicated with a symbol."
113 :group 'longlines :lighter " ll"
114 (if longlines-mode
115 ;; Turn on longlines mode
116 (progn
117 (use-hard-newlines 1 'never)
118 (set (make-local-variable 'require-final-newline) nil)
119 (add-to-list 'buffer-file-format 'longlines)
120 (add-hook 'change-major-mode-hook 'longlines-mode-off nil t)
121 (add-hook 'before-revert-hook 'longlines-before-revert-hook nil t)
122 (make-local-variable 'buffer-substring-filters)
123 (make-local-variable 'longlines-auto-wrap)
124 (set (make-local-variable 'isearch-search-fun-function)
125 'longlines-search-function)
126 (set (make-local-variable 'replace-search-function)
127 'longlines-search-forward)
128 (set (make-local-variable 'replace-re-search-function)
129 'longlines-re-search-forward)
130 (add-to-list 'buffer-substring-filters 'longlines-encode-string)
131 (when longlines-wrap-follows-window-size
132 (let ((dw (if (and (integerp longlines-wrap-follows-window-size)
133 (>= longlines-wrap-follows-window-size 0)
134 (< longlines-wrap-follows-window-size
135 (window-width)))
136 longlines-wrap-follows-window-size
137 2)))
138 (set (make-local-variable 'fill-column)
139 (- (window-width) dw)))
140 (add-hook 'window-configuration-change-hook
141 'longlines-window-change-function nil t))
142 (let ((buffer-undo-list t)
143 (inhibit-read-only t)
144 (after-change-functions nil)
145 (mod (buffer-modified-p))
146 buffer-file-name buffer-file-truename)
147 ;; Turning off undo is OK since (spaces + newlines) is
148 ;; conserved, except for a corner case in
149 ;; longlines-wrap-lines that we'll never encounter from here
150 (save-restriction
151 (widen)
152 (unless longlines-decoded
153 (longlines-decode-buffer)
154 (setq longlines-decoded t))
155 (longlines-wrap-region (point-min) (point-max)))
156 (set-buffer-modified-p mod))
157 (when (and longlines-show-hard-newlines
158 (not longlines-showing))
159 (longlines-show-hard-newlines))
161 ;; Hacks to make longlines play nice with various modes.
162 (cond ((eq major-mode 'mail-mode)
163 (add-hook 'mail-setup-hook 'longlines-decode-buffer nil t)
164 (or mail-citation-hook
165 (add-hook 'mail-citation-hook 'mail-indent-citation nil t))
166 (add-hook 'mail-citation-hook 'longlines-decode-region nil t))
167 ((eq major-mode 'message-mode)
168 (add-hook 'message-setup-hook 'longlines-decode-buffer nil t)
169 (make-local-variable 'message-indent-citation-function)
170 (if (not (listp message-indent-citation-function))
171 (setq message-indent-citation-function
172 (list message-indent-citation-function)))
173 (add-to-list 'message-indent-citation-function
174 'longlines-decode-region t)))
176 (add-hook 'after-change-functions 'longlines-after-change-function nil t)
177 (add-hook 'post-command-hook 'longlines-post-command-function nil t)
178 (when longlines-auto-wrap
179 (auto-fill-mode 0)))
180 ;; Turn off longlines mode
181 (setq buffer-file-format (delete 'longlines buffer-file-format))
182 (if longlines-showing
183 (longlines-unshow-hard-newlines))
184 (let ((buffer-undo-list t)
185 (after-change-functions nil)
186 (inhibit-read-only t)
187 buffer-file-name buffer-file-truename)
188 (if longlines-decoded
189 (save-restriction
190 (widen)
191 (longlines-encode-region (point-min) (point-max))
192 (setq longlines-decoded nil))))
193 (remove-hook 'change-major-mode-hook 'longlines-mode-off t)
194 (remove-hook 'after-change-functions 'longlines-after-change-function t)
195 (remove-hook 'post-command-hook 'longlines-post-command-function t)
196 (remove-hook 'before-revert-hook 'longlines-before-revert-hook t)
197 (remove-hook 'window-configuration-change-hook
198 'longlines-window-change-function t)
199 (when longlines-wrap-follows-window-size
200 (kill-local-variable 'fill-column))
201 (kill-local-variable 'isearch-search-fun-function)
202 (kill-local-variable 'replace-search-function)
203 (kill-local-variable 'replace-re-search-function)
204 (kill-local-variable 'require-final-newline)
205 (kill-local-variable 'buffer-substring-filters)
206 (kill-local-variable 'use-hard-newlines)))
208 (defun longlines-mode-off ()
209 "Turn off longlines mode.
210 This function exists to be called by `change-major-mode-hook' when the
211 major mode changes."
212 (longlines-mode 0))
214 ;; Showing the effect of hard newlines in the buffer
216 (defun longlines-show-hard-newlines (&optional arg)
217 "Make hard newlines visible by adding a face.
218 With optional argument ARG, make the hard newlines invisible again."
219 (interactive "P")
220 (if arg
221 (longlines-unshow-hard-newlines)
222 (setq longlines-showing t)
223 (longlines-show-region (point-min) (point-max))))
225 (defun longlines-show-region (beg end)
226 "Make hard newlines between BEG and END visible."
227 (let* ((pmin (min beg end))
228 (pmax (max beg end))
229 (pos (text-property-not-all pmin pmax 'hard nil))
230 (mod (buffer-modified-p))
231 (buffer-undo-list t)
232 (inhibit-read-only t)
233 (inhibit-modification-hooks t)
234 buffer-file-name buffer-file-truename)
235 (while pos
236 (put-text-property pos (1+ pos) 'display
237 (copy-sequence longlines-show-effect))
238 (setq pos (text-property-not-all (1+ pos) pmax 'hard nil)))
239 (restore-buffer-modified-p mod)))
241 (defun longlines-unshow-hard-newlines ()
242 "Make hard newlines invisible again."
243 (interactive)
244 (setq longlines-showing nil)
245 (let ((pos (text-property-not-all (point-min) (point-max) 'hard nil))
246 (mod (buffer-modified-p))
247 (buffer-undo-list t)
248 (inhibit-read-only t)
249 (inhibit-modification-hooks t)
250 buffer-file-name buffer-file-truename)
251 (while pos
252 (remove-text-properties pos (1+ pos) '(display))
253 (setq pos (text-property-not-all (1+ pos) (point-max) 'hard nil)))
254 (restore-buffer-modified-p mod)))
256 ;; Wrapping the paragraphs.
258 (defun longlines-wrap-region (beg end)
259 "Wrap each successive line, starting with the line before BEG.
260 Stop when we reach lines after END that don't need wrapping, or the
261 end of the buffer."
262 (let ((mod (buffer-modified-p)))
263 (setq longlines-wrap-point (point))
264 (goto-char beg)
265 (forward-line -1)
266 ;; Two successful longlines-wrap-line's in a row mean successive
267 ;; lines don't need wrapping.
268 (while (null (and (longlines-wrap-line)
269 (or (eobp)
270 (and (>= (point) end)
271 (longlines-wrap-line))))))
272 (goto-char longlines-wrap-point)
273 (set-buffer-modified-p mod)))
275 (defun longlines-wrap-line ()
276 "If the current line needs to be wrapped, wrap it and return nil.
277 If wrapping is performed, point remains on the line. If the line does
278 not need to be wrapped, move point to the next line and return t."
279 (if (longlines-set-breakpoint)
280 (progn (insert-before-markers ?\n)
281 (backward-char 1)
282 (delete-char -1)
283 (forward-char 1)
284 nil)
285 (if (longlines-merge-lines-p)
286 (progn (end-of-line)
287 ;; After certain commands (e.g. kill-line), there may be two
288 ;; successive soft newlines in the buffer. In this case, we
289 ;; replace these two newlines by a single space. Unfortunately,
290 ;; this breaks the conservation of (spaces + newlines), so we
291 ;; have to fiddle with longlines-wrap-point.
292 (if (or (prog1 (bolp) (forward-char 1)) (eolp))
293 (progn
294 (delete-char -1)
295 (if (> longlines-wrap-point (point))
296 (setq longlines-wrap-point
297 (1- longlines-wrap-point))))
298 (insert-before-markers-and-inherit ?\s)
299 (backward-char 1)
300 (delete-char -1)
301 (forward-char 1))
302 nil)
303 (forward-line 1)
304 t)))
306 (defun longlines-set-breakpoint ()
307 "Place point where we should break the current line, and return t.
308 If the line should not be broken, return nil; point remains on the
309 line."
310 (move-to-column fill-column)
311 (if (and (re-search-forward "[^ ]" (line-end-position) 1)
312 (> (current-column) fill-column))
313 ;; This line is too long. Can we break it?
314 (or (longlines-find-break-backward)
315 (progn (move-to-column fill-column)
316 (longlines-find-break-forward)))))
318 (defun longlines-find-break-backward ()
319 "Move point backward to the first available breakpoint and return t.
320 If no breakpoint is found, return nil."
321 (and (search-backward " " (line-beginning-position) 1)
322 (save-excursion
323 (skip-chars-backward " " (line-beginning-position))
324 (null (bolp)))
325 (progn (forward-char 1)
326 (if (and fill-nobreak-predicate
327 (run-hook-with-args-until-success
328 'fill-nobreak-predicate))
329 (progn (skip-chars-backward " " (line-beginning-position))
330 (longlines-find-break-backward))
331 t))))
333 (defun longlines-find-break-forward ()
334 "Move point forward to the first available breakpoint and return t.
335 If no break point is found, return nil."
336 (and (search-forward " " (line-end-position) 1)
337 (progn (skip-chars-forward " " (line-end-position))
338 (null (eolp)))
339 (if (and fill-nobreak-predicate
340 (run-hook-with-args-until-success
341 'fill-nobreak-predicate))
342 (longlines-find-break-forward)
343 t)))
345 (defun longlines-merge-lines-p ()
346 "Return t if part of the next line can fit onto the current line.
347 Otherwise, return nil. Text cannot be moved across hard newlines."
348 (save-excursion
349 (end-of-line)
350 (and (null (eobp))
351 (null (get-text-property (point) 'hard))
352 (let ((space (- fill-column (current-column))))
353 (forward-line 1)
354 (if (eq (char-after) ? )
355 t ; We can always merge some spaces
356 (<= (if (search-forward " " (line-end-position) 1)
357 (current-column)
358 (1+ (current-column)))
359 space))))))
361 (defun longlines-decode-region (&optional beg end)
362 "Turn all newlines between BEG and END into hard newlines.
363 If BEG and END are nil, the point and mark are used."
364 (if (null beg) (setq beg (point)))
365 (if (null end) (setq end (mark t)))
366 (save-excursion
367 (let ((reg-max (max beg end)))
368 (goto-char (min beg end))
369 (while (search-forward "\n" reg-max t)
370 (set-hard-newline-properties
371 (match-beginning 0) (match-end 0))))))
373 (defun longlines-decode-buffer ()
374 "Turn all newlines in the buffer into hard newlines."
375 (longlines-decode-region (point-min) (point-max)))
377 (defun longlines-encode-region (beg end &optional _buffer)
378 "Replace each soft newline between BEG and END with exactly one space.
379 Hard newlines are left intact. The optional argument BUFFER exists for
380 compatibility with `format-alist', and is ignored."
381 (save-excursion
382 (let ((reg-max (max beg end))
383 (mod (buffer-modified-p)))
384 (goto-char (min beg end))
385 (while (search-forward "\n" reg-max t)
386 (unless (get-text-property (match-beginning 0) 'hard)
387 (replace-match " ")))
388 (set-buffer-modified-p mod)
389 end)))
391 (defun longlines-encode-string (string)
392 "Return a copy of STRING with each soft newline replaced by a space.
393 Hard newlines are left intact."
394 (let* ((str (copy-sequence string))
395 (pos (string-match "\n" str)))
396 (while pos
397 (if (null (get-text-property pos 'hard str))
398 (aset str pos ? ))
399 (setq pos (string-match "\n" str (1+ pos))))
400 str))
402 ;; Auto wrap
404 (defun longlines-auto-wrap (&optional arg)
405 "Toggle automatic line wrapping.
406 With optional argument ARG, turn on line wrapping if and only if ARG is positive.
407 If automatic line wrapping is turned on, wrap the entire buffer."
408 (interactive "P")
409 (setq arg (if arg
410 (> (prefix-numeric-value arg) 0)
411 (not longlines-auto-wrap)))
412 (if arg
413 (progn
414 (setq longlines-auto-wrap t)
415 (longlines-wrap-region (point-min) (point-max))
416 (message "Auto wrap enabled."))
417 (setq longlines-auto-wrap nil)
418 (message "Auto wrap disabled.")))
420 (defun longlines-after-change-function (beg end _len)
421 "Update `longlines-wrap-beg' and `longlines-wrap-end'.
422 This is called by `after-change-functions' to keep track of the region
423 that has changed."
424 (when (and longlines-auto-wrap (not undo-in-progress))
425 (setq longlines-wrap-beg
426 (if longlines-wrap-beg (min longlines-wrap-beg beg) beg))
427 (setq longlines-wrap-end
428 (if longlines-wrap-end (max longlines-wrap-end end) end))))
430 (defun longlines-post-command-function ()
431 "Perform line wrapping on the parts of the buffer that have changed.
432 This is called by `post-command-hook' after each command."
433 (when (and longlines-auto-wrap longlines-wrap-beg)
434 (if (or (eq this-command 'yank)
435 (eq this-command 'yank-pop))
436 (longlines-decode-region (point) (mark t)))
437 (if longlines-showing
438 (longlines-show-region longlines-wrap-beg longlines-wrap-end))
439 (unless (or (eq this-command 'fill-paragraph)
440 (eq this-command 'fill-region))
441 (longlines-wrap-region longlines-wrap-beg longlines-wrap-end))
442 (setq longlines-wrap-beg nil)
443 (setq longlines-wrap-end nil)))
445 (defun longlines-window-change-function ()
446 "Re-wrap the buffer if the window width has changed.
447 This is called by `window-configuration-change-hook'."
448 (let ((dw (if (and (integerp longlines-wrap-follows-window-size)
449 (>= longlines-wrap-follows-window-size 0)
450 (< longlines-wrap-follows-window-size (window-width)))
451 longlines-wrap-follows-window-size
452 2)))
453 (when (/= fill-column (- (window-width) dw))
454 (setq fill-column (- (window-width) dw))
455 (longlines-wrap-region (point-min) (point-max)))))
457 ;; Isearch
459 (defun longlines-search-function ()
460 (cond
461 (isearch-word
462 (if isearch-forward 'word-search-forward 'word-search-backward))
463 (isearch-regexp
464 (if isearch-forward 're-search-forward 're-search-backward))
466 (if isearch-forward
467 'longlines-search-forward
468 'longlines-search-backward))))
470 (defun longlines-search-forward (string &optional bound noerror count)
471 (let ((search-spaces-regexp " *[ \n]"))
472 (re-search-forward (regexp-quote string) bound noerror count)))
474 (defun longlines-search-backward (string &optional bound noerror count)
475 (let ((search-spaces-regexp " *[ \n]"))
476 (re-search-backward (regexp-quote string) bound noerror count)))
478 (defun longlines-re-search-forward (string &optional bound noerror count)
479 (let ((search-spaces-regexp " *[ \n]"))
480 (re-search-forward string bound noerror count)))
482 ;; Loading and saving
484 (defun longlines-before-revert-hook ()
485 (add-hook 'after-revert-hook 'longlines-after-revert-hook nil t)
486 (longlines-mode 0))
488 (defun longlines-after-revert-hook ()
489 (remove-hook 'after-revert-hook 'longlines-after-revert-hook t)
490 (longlines-mode 1))
492 (add-to-list
493 'format-alist
494 (list 'longlines "Automatically wrap long lines." nil nil
495 'longlines-encode-region t nil))
497 ;; Unloading
499 (defun longlines-unload-function ()
500 "Unload the longlines library."
501 (save-current-buffer
502 (dolist (buffer (buffer-list))
503 (set-buffer buffer)
504 (longlines-mode-off)))
505 ;; continue standard unloading
506 nil)
508 (provide 'longlines)
510 ;;; longlines.el ends here