Mercurial > emacs
annotate lisp/longlines.el @ 91299:c4ebc853f7ec
*** empty log message ***
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Thu, 27 Dec 2007 02:41:35 +0000 |
parents | 3f909380f612 |
children | 107ccd98fa12 |
rev | line source |
---|---|
61110 | 1 ;;; longlines.el --- automatically wrap long lines |
2 | |
75347 | 3 ;; Copyright (C) 2000, 2001, 2004, 2005, 2006, 2007 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 | |
78236
9355f9b7bbff
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
78088
diff
changeset
|
15 ;; the Free Software Foundation; either version 3, or (at your option) |
61110 | 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 | |
72225
1d3db748db52
(longlines-show-region): Make it work on read-only buffers as well.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
71873
diff
changeset
|
47 "Non-nil means long lines are automatically wrapped after each command. |
61110 | 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 | |
72225
1d3db748db52
(longlines-show-region): Make it work on read-only buffers as well.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
71873
diff
changeset
|
55 "Non-nil means wrapping and filling happen at the edge of the window. |
61110 | 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 | |
85347
f215fc483ae3
(longlines-wrap-follows-window-size): Integer value
Chong Yidong <cyd@stupidchicken.com>
parents:
82317
diff
changeset
|
58 with differing widths. |
f215fc483ae3
(longlines-wrap-follows-window-size): Integer value
Chong Yidong <cyd@stupidchicken.com>
parents:
82317
diff
changeset
|
59 |
f215fc483ae3
(longlines-wrap-follows-window-size): Integer value
Chong Yidong <cyd@stupidchicken.com>
parents:
82317
diff
changeset
|
60 If the value is an integer, that specifies the distance from the |
f215fc483ae3
(longlines-wrap-follows-window-size): Integer value
Chong Yidong <cyd@stupidchicken.com>
parents:
82317
diff
changeset
|
61 right edge of the window at which wrapping occurs. For any other |
f215fc483ae3
(longlines-wrap-follows-window-size): Integer value
Chong Yidong <cyd@stupidchicken.com>
parents:
82317
diff
changeset
|
62 non-nil value, wrapping occurs 2 characters from the right edge." |
61110 | 63 :group 'longlines |
64 :type 'boolean) | |
65 | |
66 (defcustom longlines-show-hard-newlines nil | |
72225
1d3db748db52
(longlines-show-region): Make it work on read-only buffers as well.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
71873
diff
changeset
|
67 "Non-nil means each hard newline is marked on the screen. |
63557
6a1d35d4ea03
(longlines-mode, longlines-show-hard-newlines): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
63198
diff
changeset
|
68 \(The variable `longlines-show-effect' controls what they look like.) |
61110 | 69 You can also enable the display temporarily, using the command |
75226
7257e69d3378
(longlines-show-hard-newlines): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
74234
diff
changeset
|
70 `longlines-show-hard-newlines'." |
61110 | 71 :group 'longlines |
72 :type 'boolean) | |
73 | |
74 (defcustom longlines-show-effect (propertize "|\n" 'face 'escape-glyph) | |
72225
1d3db748db52
(longlines-show-region): Make it work on read-only buffers as well.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
71873
diff
changeset
|
75 "A string to display when showing hard newlines. |
61110 | 76 This is used when `longlines-show-hard-newlines' is on." |
77 :group 'longlines | |
78 :type 'string) | |
79 | |
80 ;; Internal variables | |
81 | |
82 (defvar longlines-wrap-beg nil) | |
83 (defvar longlines-wrap-end nil) | |
84 (defvar longlines-wrap-point nil) | |
85 (defvar longlines-showing nil) | |
82317
c668fe19825b
(longlines-decoded): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
82140
diff
changeset
|
86 (defvar longlines-decoded nil) |
61110 | 87 |
88 (make-variable-buffer-local 'longlines-wrap-beg) | |
89 (make-variable-buffer-local 'longlines-wrap-end) | |
90 (make-variable-buffer-local 'longlines-wrap-point) | |
91 (make-variable-buffer-local 'longlines-showing) | |
82317
c668fe19825b
(longlines-decoded): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
82140
diff
changeset
|
92 (make-variable-buffer-local 'longlines-decoded) |
61110 | 93 |
94 ;; Mode | |
95 | |
85765
f1a78e8d37f0
* textmodes/flyspell.el (message-signature-separator):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85347
diff
changeset
|
96 (defvar message-indent-citation-function) |
f1a78e8d37f0
* textmodes/flyspell.el (message-signature-separator):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85347
diff
changeset
|
97 |
61110 | 98 ;;;###autoload |
99 (define-minor-mode longlines-mode | |
100 "Toggle Long Lines mode. | |
101 In Long Lines mode, long lines are wrapped if they extend beyond | |
102 `fill-column'. The soft newlines used for line wrapping will not | |
103 show up when the text is yanked or saved to disk. | |
104 | |
63557
6a1d35d4ea03
(longlines-mode, longlines-show-hard-newlines): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
63198
diff
changeset
|
105 If the variable `longlines-auto-wrap' is non-nil, lines are automatically |
61110 | 106 wrapped whenever the buffer is changed. You can always call |
107 `fill-paragraph' to fill individual paragraphs. | |
108 | |
63557
6a1d35d4ea03
(longlines-mode, longlines-show-hard-newlines): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
63198
diff
changeset
|
109 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
|
110 are indicated with a symbol." |
61289
78b96a3ee117
(longlines-mode): Specify :group.
Lute Kamstra <lute@gnu.org>
parents:
61125
diff
changeset
|
111 :group 'longlines :lighter " ll" |
61110 | 112 (if longlines-mode |
113 ;; Turn on longlines mode | |
114 (progn | |
115 (use-hard-newlines 1 'never) | |
116 (set (make-local-variable 'require-final-newline) nil) | |
117 (add-to-list 'buffer-file-format 'longlines) | |
118 (add-hook 'change-major-mode-hook 'longlines-mode-off nil t) | |
67021
e220d76071f7
* longlines.el (longlines-before-revert-hook)
Chong Yidong <cyd@stupidchicken.com>
parents:
66996
diff
changeset
|
119 (add-hook 'before-revert-hook 'longlines-before-revert-hook nil t) |
61110 | 120 (make-local-variable 'buffer-substring-filters) |
77871
2b390b4a6ba8
(longlines-mode): Make longlines-auto-wrap buffer-local. Add hooks
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
121 (make-local-variable 'longlines-auto-wrap) |
66088
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
122 (set (make-local-variable 'isearch-search-fun-function) |
67701 | 123 'longlines-search-function) |
61110 | 124 (add-to-list 'buffer-substring-filters 'longlines-encode-string) |
125 (when longlines-wrap-follows-window-size | |
85347
f215fc483ae3
(longlines-wrap-follows-window-size): Integer value
Chong Yidong <cyd@stupidchicken.com>
parents:
82317
diff
changeset
|
126 (let ((dw (if (and (integerp longlines-wrap-follows-window-size) |
f215fc483ae3
(longlines-wrap-follows-window-size): Integer value
Chong Yidong <cyd@stupidchicken.com>
parents:
82317
diff
changeset
|
127 (>= longlines-wrap-follows-window-size 0) |
f215fc483ae3
(longlines-wrap-follows-window-size): Integer value
Chong Yidong <cyd@stupidchicken.com>
parents:
82317
diff
changeset
|
128 (< longlines-wrap-follows-window-size |
f215fc483ae3
(longlines-wrap-follows-window-size): Integer value
Chong Yidong <cyd@stupidchicken.com>
parents:
82317
diff
changeset
|
129 (window-width))) |
f215fc483ae3
(longlines-wrap-follows-window-size): Integer value
Chong Yidong <cyd@stupidchicken.com>
parents:
82317
diff
changeset
|
130 longlines-wrap-follows-window-size |
f215fc483ae3
(longlines-wrap-follows-window-size): Integer value
Chong Yidong <cyd@stupidchicken.com>
parents:
82317
diff
changeset
|
131 2))) |
f215fc483ae3
(longlines-wrap-follows-window-size): Integer value
Chong Yidong <cyd@stupidchicken.com>
parents:
82317
diff
changeset
|
132 (set (make-local-variable 'fill-column) |
f215fc483ae3
(longlines-wrap-follows-window-size): Integer value
Chong Yidong <cyd@stupidchicken.com>
parents:
82317
diff
changeset
|
133 (- (window-width) dw))) |
61110 | 134 (add-hook 'window-configuration-change-hook |
135 'longlines-window-change-function nil t)) | |
136 (let ((buffer-undo-list t) | |
65312
915d671fef52
*** empty log message ***
Chong Yidong <cyd@stupidchicken.com>
parents:
64762
diff
changeset
|
137 (inhibit-read-only t) |
66465
9a896c723ab2
* longlines.el (longlines-mode): Bind after-change-functions to
Chong Yidong <cyd@stupidchicken.com>
parents:
66453
diff
changeset
|
138 (after-change-functions nil) |
61110 | 139 (mod (buffer-modified-p))) |
140 ;; Turning off undo is OK since (spaces + newlines) is | |
141 ;; conserved, except for a corner case in | |
142 ;; 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
|
143 (save-restriction |
ce840b1d13ad
* longlines.el (longlines-mode): Remove narrowing before
Chong Yidong <cyd@stupidchicken.com>
parents:
66132
diff
changeset
|
144 (widen) |
82317
c668fe19825b
(longlines-decoded): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
82140
diff
changeset
|
145 (unless longlines-decoded |
c668fe19825b
(longlines-decoded): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
82140
diff
changeset
|
146 (longlines-decode-buffer) |
c668fe19825b
(longlines-decoded): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
82140
diff
changeset
|
147 (setq longlines-decoded t)) |
67673
947510e65020
* longlines.el (longlines-mode): Wrap while widened.
Chong Yidong <cyd@stupidchicken.com>
parents:
67213
diff
changeset
|
148 (longlines-wrap-region (point-min) (point-max))) |
61110 | 149 (set-buffer-modified-p mod)) |
150 (when (and longlines-show-hard-newlines | |
151 (not longlines-showing)) | |
152 (longlines-show-hard-newlines)) | |
66995
e10f2e7919f0
Add hacks for citation in mail-mode and message-mode.
Chong Yidong <cyd@stupidchicken.com>
parents:
66465
diff
changeset
|
153 |
e10f2e7919f0
Add hacks for citation in mail-mode and message-mode.
Chong Yidong <cyd@stupidchicken.com>
parents:
66465
diff
changeset
|
154 ;; Hacks to make longlines play nice with various modes. |
e10f2e7919f0
Add hacks for citation in mail-mode and message-mode.
Chong Yidong <cyd@stupidchicken.com>
parents:
66465
diff
changeset
|
155 (cond ((eq major-mode 'mail-mode) |
67213
818361523ce8
* longlines.el (longlines-mode): Add mail-setup-hook.
Chong Yidong <cyd@stupidchicken.com>
parents:
67120
diff
changeset
|
156 (add-hook 'mail-setup-hook 'longlines-decode-buffer nil t) |
66995
e10f2e7919f0
Add hacks for citation in mail-mode and message-mode.
Chong Yidong <cyd@stupidchicken.com>
parents:
66465
diff
changeset
|
157 (or mail-citation-hook |
e10f2e7919f0
Add hacks for citation in mail-mode and message-mode.
Chong Yidong <cyd@stupidchicken.com>
parents:
66465
diff
changeset
|
158 (add-hook 'mail-citation-hook 'mail-indent-citation nil t)) |
e10f2e7919f0
Add hacks for citation in mail-mode and message-mode.
Chong Yidong <cyd@stupidchicken.com>
parents:
66465
diff
changeset
|
159 (add-hook 'mail-citation-hook 'longlines-decode-region nil t)) |
e10f2e7919f0
Add hacks for citation in mail-mode and message-mode.
Chong Yidong <cyd@stupidchicken.com>
parents:
66465
diff
changeset
|
160 ((eq major-mode 'message-mode) |
67031
9dbc51935e01
(longlines-mode): Add a message-setup-hook.
Chong Yidong <cyd@stupidchicken.com>
parents:
67024
diff
changeset
|
161 (add-hook 'message-setup-hook 'longlines-decode-buffer nil t) |
66995
e10f2e7919f0
Add hacks for citation in mail-mode and message-mode.
Chong Yidong <cyd@stupidchicken.com>
parents:
66465
diff
changeset
|
162 (make-local-variable 'message-indent-citation-function) |
e10f2e7919f0
Add hacks for citation in mail-mode and message-mode.
Chong Yidong <cyd@stupidchicken.com>
parents:
66465
diff
changeset
|
163 (if (not (listp message-indent-citation-function)) |
e10f2e7919f0
Add hacks for citation in mail-mode and message-mode.
Chong Yidong <cyd@stupidchicken.com>
parents:
66465
diff
changeset
|
164 (setq message-indent-citation-function |
e10f2e7919f0
Add hacks for citation in mail-mode and message-mode.
Chong Yidong <cyd@stupidchicken.com>
parents:
66465
diff
changeset
|
165 (list message-indent-citation-function))) |
e10f2e7919f0
Add hacks for citation in mail-mode and message-mode.
Chong Yidong <cyd@stupidchicken.com>
parents:
66465
diff
changeset
|
166 (add-to-list 'message-indent-citation-function |
e10f2e7919f0
Add hacks for citation in mail-mode and message-mode.
Chong Yidong <cyd@stupidchicken.com>
parents:
66465
diff
changeset
|
167 'longlines-decode-region t))) |
66996
cf7bf8dadf78
*** empty log message ***
Chong Yidong <cyd@stupidchicken.com>
parents:
66995
diff
changeset
|
168 |
77871
2b390b4a6ba8
(longlines-mode): Make longlines-auto-wrap buffer-local. Add hooks
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
169 (add-hook 'after-change-functions 'longlines-after-change-function nil t) |
2b390b4a6ba8
(longlines-mode): Make longlines-auto-wrap buffer-local. Add hooks
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
170 (add-hook 'post-command-hook 'longlines-post-command-function nil t) |
66996
cf7bf8dadf78
*** empty log message ***
Chong Yidong <cyd@stupidchicken.com>
parents:
66995
diff
changeset
|
171 (when longlines-auto-wrap |
77871
2b390b4a6ba8
(longlines-mode): Make longlines-auto-wrap buffer-local. Add hooks
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
172 (auto-fill-mode 0))) |
61110 | 173 ;; Turn off longlines mode |
174 (setq buffer-file-format (delete 'longlines buffer-file-format)) | |
175 (if longlines-showing | |
176 (longlines-unshow-hard-newlines)) | |
65312
915d671fef52
*** empty log message ***
Chong Yidong <cyd@stupidchicken.com>
parents:
64762
diff
changeset
|
177 (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
|
178 (after-change-functions nil) |
65312
915d671fef52
*** empty log message ***
Chong Yidong <cyd@stupidchicken.com>
parents:
64762
diff
changeset
|
179 (inhibit-read-only t)) |
82317
c668fe19825b
(longlines-decoded): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
82140
diff
changeset
|
180 (if longlines-decoded |
c668fe19825b
(longlines-decoded): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
82140
diff
changeset
|
181 (save-restriction |
c668fe19825b
(longlines-decoded): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
82140
diff
changeset
|
182 (widen) |
c668fe19825b
(longlines-decoded): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
82140
diff
changeset
|
183 (longlines-encode-region (point-min) (point-max)) |
c668fe19825b
(longlines-decoded): New variable.
Chong Yidong <cyd@stupidchicken.com>
parents:
82140
diff
changeset
|
184 (setq longlines-decoded nil)))) |
61110 | 185 (remove-hook 'change-major-mode-hook 'longlines-mode-off t) |
186 (remove-hook 'after-change-functions 'longlines-after-change-function t) | |
187 (remove-hook 'post-command-hook 'longlines-post-command-function t) | |
67021
e220d76071f7
* longlines.el (longlines-before-revert-hook)
Chong Yidong <cyd@stupidchicken.com>
parents:
66996
diff
changeset
|
188 (remove-hook 'before-revert-hook 'longlines-before-revert-hook t) |
61110 | 189 (remove-hook 'window-configuration-change-hook |
190 'longlines-window-change-function t) | |
65312
915d671fef52
*** empty log message ***
Chong Yidong <cyd@stupidchicken.com>
parents:
64762
diff
changeset
|
191 (when longlines-wrap-follows-window-size |
915d671fef52
*** empty log message ***
Chong Yidong <cyd@stupidchicken.com>
parents:
64762
diff
changeset
|
192 (kill-local-variable 'fill-column)) |
66088
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
193 (kill-local-variable 'isearch-search-fun-function) |
65312
915d671fef52
*** empty log message ***
Chong Yidong <cyd@stupidchicken.com>
parents:
64762
diff
changeset
|
194 (kill-local-variable 'require-final-newline) |
915d671fef52
*** empty log message ***
Chong Yidong <cyd@stupidchicken.com>
parents:
64762
diff
changeset
|
195 (kill-local-variable 'buffer-substring-filters) |
915d671fef52
*** empty log message ***
Chong Yidong <cyd@stupidchicken.com>
parents:
64762
diff
changeset
|
196 (kill-local-variable 'use-hard-newlines))) |
61110 | 197 |
198 (defun longlines-mode-off () | |
199 "Turn off longlines mode. | |
200 This function exists to be called by `change-major-mode-hook' when the | |
201 major mode changes." | |
202 (longlines-mode 0)) | |
203 | |
204 ;; Showing the effect of hard newlines in the buffer | |
205 | |
206 (defun longlines-show-hard-newlines (&optional arg) | |
207 "Make hard newlines visible by adding a face. | |
208 With optional argument ARG, make the hard newlines invisible again." | |
209 (interactive "P") | |
210 (if arg | |
211 (longlines-unshow-hard-newlines) | |
212 (setq longlines-showing t) | |
86873
3f909380f612
(longlines-show-hard-newlines): Remove handling of
Martin Rudalics <rudalics@gmx.at>
parents:
85765
diff
changeset
|
213 (longlines-show-region (point-min) (point-max)))) |
61110 | 214 |
215 (defun longlines-show-region (beg end) | |
216 "Make hard newlines between BEG and END visible." | |
217 (let* ((pmin (min beg end)) | |
218 (pmax (max beg end)) | |
72225
1d3db748db52
(longlines-show-region): Make it work on read-only buffers as well.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
71873
diff
changeset
|
219 (pos (text-property-not-all pmin pmax 'hard nil)) |
86873
3f909380f612
(longlines-show-hard-newlines): Remove handling of
Martin Rudalics <rudalics@gmx.at>
parents:
85765
diff
changeset
|
220 (mod (buffer-modified-p)) |
3f909380f612
(longlines-show-hard-newlines): Remove handling of
Martin Rudalics <rudalics@gmx.at>
parents:
85765
diff
changeset
|
221 (buffer-undo-list t) |
3f909380f612
(longlines-show-hard-newlines): Remove handling of
Martin Rudalics <rudalics@gmx.at>
parents:
85765
diff
changeset
|
222 (inhibit-read-only t) |
3f909380f612
(longlines-show-hard-newlines): Remove handling of
Martin Rudalics <rudalics@gmx.at>
parents:
85765
diff
changeset
|
223 (inhibit-modification-hooks t)) |
61110 | 224 (while pos |
225 (put-text-property pos (1+ pos) 'display | |
86873
3f909380f612
(longlines-show-hard-newlines): Remove handling of
Martin Rudalics <rudalics@gmx.at>
parents:
85765
diff
changeset
|
226 (copy-sequence longlines-show-effect)) |
3f909380f612
(longlines-show-hard-newlines): Remove handling of
Martin Rudalics <rudalics@gmx.at>
parents:
85765
diff
changeset
|
227 (setq pos (text-property-not-all (1+ pos) pmax 'hard nil))) |
3f909380f612
(longlines-show-hard-newlines): Remove handling of
Martin Rudalics <rudalics@gmx.at>
parents:
85765
diff
changeset
|
228 (restore-buffer-modified-p mod))) |
61110 | 229 |
230 (defun longlines-unshow-hard-newlines () | |
231 "Make hard newlines invisible again." | |
232 (interactive) | |
233 (setq longlines-showing nil) | |
86873
3f909380f612
(longlines-show-hard-newlines): Remove handling of
Martin Rudalics <rudalics@gmx.at>
parents:
85765
diff
changeset
|
234 (let ((pos (text-property-not-all (point-min) (point-max) 'hard nil)) |
3f909380f612
(longlines-show-hard-newlines): Remove handling of
Martin Rudalics <rudalics@gmx.at>
parents:
85765
diff
changeset
|
235 (mod (buffer-modified-p)) |
3f909380f612
(longlines-show-hard-newlines): Remove handling of
Martin Rudalics <rudalics@gmx.at>
parents:
85765
diff
changeset
|
236 (buffer-undo-list t) |
3f909380f612
(longlines-show-hard-newlines): Remove handling of
Martin Rudalics <rudalics@gmx.at>
parents:
85765
diff
changeset
|
237 (inhibit-read-only t) |
3f909380f612
(longlines-show-hard-newlines): Remove handling of
Martin Rudalics <rudalics@gmx.at>
parents:
85765
diff
changeset
|
238 (inhibit-modification-hooks t)) |
61110 | 239 (while pos |
240 (remove-text-properties pos (1+ pos) '(display)) | |
86873
3f909380f612
(longlines-show-hard-newlines): Remove handling of
Martin Rudalics <rudalics@gmx.at>
parents:
85765
diff
changeset
|
241 (setq pos (text-property-not-all (1+ pos) (point-max) 'hard nil))) |
3f909380f612
(longlines-show-hard-newlines): Remove handling of
Martin Rudalics <rudalics@gmx.at>
parents:
85765
diff
changeset
|
242 (restore-buffer-modified-p mod))) |
61110 | 243 |
244 ;; Wrapping the paragraphs. | |
245 | |
246 (defun longlines-wrap-region (beg end) | |
247 "Wrap each successive line, starting with the line before BEG. | |
248 Stop when we reach lines after END that don't need wrapping, or the | |
249 end of the buffer." | |
78088
4545583b711c
(longlines-wrap-region): Avoid marking buffer as modified.
Chong Yidong <cyd@stupidchicken.com>
parents:
77871
diff
changeset
|
250 (let ((mod (buffer-modified-p))) |
4545583b711c
(longlines-wrap-region): Avoid marking buffer as modified.
Chong Yidong <cyd@stupidchicken.com>
parents:
77871
diff
changeset
|
251 (setq longlines-wrap-point (point)) |
4545583b711c
(longlines-wrap-region): Avoid marking buffer as modified.
Chong Yidong <cyd@stupidchicken.com>
parents:
77871
diff
changeset
|
252 (goto-char beg) |
4545583b711c
(longlines-wrap-region): Avoid marking buffer as modified.
Chong Yidong <cyd@stupidchicken.com>
parents:
77871
diff
changeset
|
253 (forward-line -1) |
4545583b711c
(longlines-wrap-region): Avoid marking buffer as modified.
Chong Yidong <cyd@stupidchicken.com>
parents:
77871
diff
changeset
|
254 ;; Two successful longlines-wrap-line's in a row mean successive |
4545583b711c
(longlines-wrap-region): Avoid marking buffer as modified.
Chong Yidong <cyd@stupidchicken.com>
parents:
77871
diff
changeset
|
255 ;; lines don't need wrapping. |
4545583b711c
(longlines-wrap-region): Avoid marking buffer as modified.
Chong Yidong <cyd@stupidchicken.com>
parents:
77871
diff
changeset
|
256 (while (null (and (longlines-wrap-line) |
4545583b711c
(longlines-wrap-region): Avoid marking buffer as modified.
Chong Yidong <cyd@stupidchicken.com>
parents:
77871
diff
changeset
|
257 (or (eobp) |
4545583b711c
(longlines-wrap-region): Avoid marking buffer as modified.
Chong Yidong <cyd@stupidchicken.com>
parents:
77871
diff
changeset
|
258 (and (>= (point) end) |
4545583b711c
(longlines-wrap-region): Avoid marking buffer as modified.
Chong Yidong <cyd@stupidchicken.com>
parents:
77871
diff
changeset
|
259 (longlines-wrap-line)))))) |
4545583b711c
(longlines-wrap-region): Avoid marking buffer as modified.
Chong Yidong <cyd@stupidchicken.com>
parents:
77871
diff
changeset
|
260 (goto-char longlines-wrap-point) |
4545583b711c
(longlines-wrap-region): Avoid marking buffer as modified.
Chong Yidong <cyd@stupidchicken.com>
parents:
77871
diff
changeset
|
261 (set-buffer-modified-p mod))) |
61110 | 262 |
263 (defun longlines-wrap-line () | |
264 "If the current line needs to be wrapped, wrap it and return nil. | |
265 If wrapping is performed, point remains on the line. If the line does | |
266 not need to be wrapped, move point to the next line and return t." | |
267 (if (longlines-set-breakpoint) | |
67033
1a383aa3be8a
longlines.el (longlines-wrap-line): Preserve marker positions.
Chong Yidong <cyd@stupidchicken.com>
parents:
67031
diff
changeset
|
268 (progn (insert-before-markers ?\n) |
1a383aa3be8a
longlines.el (longlines-wrap-line): Preserve marker positions.
Chong Yidong <cyd@stupidchicken.com>
parents:
67031
diff
changeset
|
269 (backward-char 1) |
1a383aa3be8a
longlines.el (longlines-wrap-line): Preserve marker positions.
Chong Yidong <cyd@stupidchicken.com>
parents:
67031
diff
changeset
|
270 (delete-char -1) |
1a383aa3be8a
longlines.el (longlines-wrap-line): Preserve marker positions.
Chong Yidong <cyd@stupidchicken.com>
parents:
67031
diff
changeset
|
271 (forward-char 1) |
61110 | 272 nil) |
273 (if (longlines-merge-lines-p) | |
274 (progn (end-of-line) | |
275 ;; After certain commands (e.g. kill-line), there may be two | |
276 ;; successive soft newlines in the buffer. In this case, we | |
277 ;; replace these two newlines by a single space. Unfortunately, | |
278 ;; this breaks the conservation of (spaces + newlines), so we | |
279 ;; have to fiddle with longlines-wrap-point. | |
67120
d3b833785ae6
(longlines-wrap-line): Reorder wrapping to "insert
David Kastrup <dak@gnu.org>
parents:
67033
diff
changeset
|
280 (if (or (prog1 (bolp) (forward-char 1)) (eolp)) |
d3b833785ae6
(longlines-wrap-line): Reorder wrapping to "insert
David Kastrup <dak@gnu.org>
parents:
67033
diff
changeset
|
281 (progn |
d3b833785ae6
(longlines-wrap-line): Reorder wrapping to "insert
David Kastrup <dak@gnu.org>
parents:
67033
diff
changeset
|
282 (delete-char -1) |
d3b833785ae6
(longlines-wrap-line): Reorder wrapping to "insert
David Kastrup <dak@gnu.org>
parents:
67033
diff
changeset
|
283 (if (> longlines-wrap-point (point)) |
d3b833785ae6
(longlines-wrap-line): Reorder wrapping to "insert
David Kastrup <dak@gnu.org>
parents:
67033
diff
changeset
|
284 (setq longlines-wrap-point |
d3b833785ae6
(longlines-wrap-line): Reorder wrapping to "insert
David Kastrup <dak@gnu.org>
parents:
67033
diff
changeset
|
285 (1- longlines-wrap-point)))) |
74234
d966c458c782
(longlines-wrap-line): "?\ " -> "?\s".
Juanma Barranquero <lekktu@gmail.com>
parents:
73330
diff
changeset
|
286 (insert-before-markers-and-inherit ?\s) |
67120
d3b833785ae6
(longlines-wrap-line): Reorder wrapping to "insert
David Kastrup <dak@gnu.org>
parents:
67033
diff
changeset
|
287 (backward-char 1) |
d3b833785ae6
(longlines-wrap-line): Reorder wrapping to "insert
David Kastrup <dak@gnu.org>
parents:
67033
diff
changeset
|
288 (delete-char -1) |
d3b833785ae6
(longlines-wrap-line): Reorder wrapping to "insert
David Kastrup <dak@gnu.org>
parents:
67033
diff
changeset
|
289 (forward-char 1)) |
61110 | 290 nil) |
291 (forward-line 1) | |
292 t))) | |
293 | |
294 (defun longlines-set-breakpoint () | |
295 "Place point where we should break the current line, and return t. | |
296 If the line should not be broken, return nil; point remains on the | |
297 line." | |
298 (move-to-column fill-column) | |
299 (if (and (re-search-forward "[^ ]" (line-end-position) 1) | |
300 (> (current-column) fill-column)) | |
301 ;; This line is too long. Can we break it? | |
302 (or (longlines-find-break-backward) | |
303 (progn (move-to-column fill-column) | |
304 (longlines-find-break-forward))))) | |
305 | |
306 (defun longlines-find-break-backward () | |
307 "Move point backward to the first available breakpoint and return t. | |
308 If no breakpoint is found, return nil." | |
309 (and (search-backward " " (line-beginning-position) 1) | |
310 (save-excursion | |
311 (skip-chars-backward " " (line-beginning-position)) | |
312 (null (bolp))) | |
313 (progn (forward-char 1) | |
314 (if (and fill-nobreak-predicate | |
315 (run-hook-with-args-until-success | |
316 'fill-nobreak-predicate)) | |
317 (progn (skip-chars-backward " " (line-beginning-position)) | |
318 (longlines-find-break-backward)) | |
319 t)))) | |
320 | |
321 (defun longlines-find-break-forward () | |
322 "Move point forward to the first available breakpoint and return t. | |
323 If no break point is found, return nil." | |
324 (and (search-forward " " (line-end-position) 1) | |
325 (progn (skip-chars-forward " " (line-end-position)) | |
326 (null (eolp))) | |
327 (if (and fill-nobreak-predicate | |
328 (run-hook-with-args-until-success | |
329 'fill-nobreak-predicate)) | |
330 (longlines-find-break-forward) | |
331 t))) | |
332 | |
333 (defun longlines-merge-lines-p () | |
334 "Return t if part of the next line can fit onto the current line. | |
335 Otherwise, return nil. Text cannot be moved across hard newlines." | |
336 (save-excursion | |
337 (end-of-line) | |
338 (and (null (eobp)) | |
339 (null (get-text-property (point) 'hard)) | |
340 (let ((space (- fill-column (current-column)))) | |
341 (forward-line 1) | |
342 (if (eq (char-after) ? ) | |
343 t ; We can always merge some spaces | |
344 (<= (if (search-forward " " (line-end-position) 1) | |
345 (current-column) | |
346 (1+ (current-column))) | |
347 space)))))) | |
348 | |
66995
e10f2e7919f0
Add hacks for citation in mail-mode and message-mode.
Chong Yidong <cyd@stupidchicken.com>
parents:
66465
diff
changeset
|
349 (defun longlines-decode-region (&optional beg end) |
e10f2e7919f0
Add hacks for citation in mail-mode and message-mode.
Chong Yidong <cyd@stupidchicken.com>
parents:
66465
diff
changeset
|
350 "Turn all newlines between BEG and END into hard newlines. |
e10f2e7919f0
Add hacks for citation in mail-mode and message-mode.
Chong Yidong <cyd@stupidchicken.com>
parents:
66465
diff
changeset
|
351 If BEG and END are nil, the point and mark are used." |
e10f2e7919f0
Add hacks for citation in mail-mode and message-mode.
Chong Yidong <cyd@stupidchicken.com>
parents:
66465
diff
changeset
|
352 (if (null beg) (setq beg (point))) |
e10f2e7919f0
Add hacks for citation in mail-mode and message-mode.
Chong Yidong <cyd@stupidchicken.com>
parents:
66465
diff
changeset
|
353 (if (null end) (setq end (mark t))) |
61110 | 354 (save-excursion |
67673
947510e65020
* longlines.el (longlines-mode): Wrap while widened.
Chong Yidong <cyd@stupidchicken.com>
parents:
67213
diff
changeset
|
355 (let ((reg-max (max beg end))) |
947510e65020
* longlines.el (longlines-mode): Wrap while widened.
Chong Yidong <cyd@stupidchicken.com>
parents:
67213
diff
changeset
|
356 (goto-char (min beg end)) |
947510e65020
* longlines.el (longlines-mode): Wrap while widened.
Chong Yidong <cyd@stupidchicken.com>
parents:
67213
diff
changeset
|
357 (while (search-forward "\n" reg-max t) |
947510e65020
* longlines.el (longlines-mode): Wrap while widened.
Chong Yidong <cyd@stupidchicken.com>
parents:
67213
diff
changeset
|
358 (set-hard-newline-properties |
947510e65020
* longlines.el (longlines-mode): Wrap while widened.
Chong Yidong <cyd@stupidchicken.com>
parents:
67213
diff
changeset
|
359 (match-beginning 0) (match-end 0)))))) |
61110 | 360 |
67031
9dbc51935e01
(longlines-mode): Add a message-setup-hook.
Chong Yidong <cyd@stupidchicken.com>
parents:
67024
diff
changeset
|
361 (defun longlines-decode-buffer () |
9dbc51935e01
(longlines-mode): Add a message-setup-hook.
Chong Yidong <cyd@stupidchicken.com>
parents:
67024
diff
changeset
|
362 "Turn all newlines in the buffer into hard newlines." |
9dbc51935e01
(longlines-mode): Add a message-setup-hook.
Chong Yidong <cyd@stupidchicken.com>
parents:
67024
diff
changeset
|
363 (longlines-decode-region (point-min) (point-max))) |
9dbc51935e01
(longlines-mode): Add a message-setup-hook.
Chong Yidong <cyd@stupidchicken.com>
parents:
67024
diff
changeset
|
364 |
61110 | 365 (defun longlines-encode-region (beg end &optional buffer) |
366 "Replace each soft newline between BEG and END with exactly one space. | |
367 Hard newlines are left intact. The optional argument BUFFER exists for | |
368 compatibility with `format-alist', and is ignored." | |
369 (save-excursion | |
67673
947510e65020
* longlines.el (longlines-mode): Wrap while widened.
Chong Yidong <cyd@stupidchicken.com>
parents:
67213
diff
changeset
|
370 (let ((reg-max (max beg end)) |
947510e65020
* longlines.el (longlines-mode): Wrap while widened.
Chong Yidong <cyd@stupidchicken.com>
parents:
67213
diff
changeset
|
371 (mod (buffer-modified-p))) |
61110 | 372 (goto-char (min beg end)) |
67673
947510e65020
* longlines.el (longlines-mode): Wrap while widened.
Chong Yidong <cyd@stupidchicken.com>
parents:
67213
diff
changeset
|
373 (while (search-forward "\n" reg-max t) |
61110 | 374 (unless (get-text-property (match-beginning 0) 'hard) |
375 (replace-match " "))) | |
376 (set-buffer-modified-p mod) | |
377 end))) | |
378 | |
379 (defun longlines-encode-string (string) | |
380 "Return a copy of STRING with each soft newline replaced by a space. | |
381 Hard newlines are left intact." | |
382 (let* ((str (copy-sequence string)) | |
383 (pos (string-match "\n" str))) | |
384 (while pos | |
385 (if (null (get-text-property pos 'hard str)) | |
386 (aset str pos ? )) | |
387 (setq pos (string-match "\n" str (1+ pos)))) | |
388 str)) | |
389 | |
390 ;; Auto wrap | |
391 | |
392 (defun longlines-auto-wrap (&optional arg) | |
77871
2b390b4a6ba8
(longlines-mode): Make longlines-auto-wrap buffer-local. Add hooks
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
393 "Toggle automatic line wrapping. |
2b390b4a6ba8
(longlines-mode): Make longlines-auto-wrap buffer-local. Add hooks
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
394 With optional argument ARG, turn on line wrapping if and only if ARG is positive. |
2b390b4a6ba8
(longlines-mode): Make longlines-auto-wrap buffer-local. Add hooks
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
395 If automatic line wrapping is turned on, wrap the entire buffer." |
61110 | 396 (interactive "P") |
77871
2b390b4a6ba8
(longlines-mode): Make longlines-auto-wrap buffer-local. Add hooks
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
397 (setq arg (if arg |
2b390b4a6ba8
(longlines-mode): Make longlines-auto-wrap buffer-local. Add hooks
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
398 (> (prefix-numeric-value arg) 0) |
2b390b4a6ba8
(longlines-mode): Make longlines-auto-wrap buffer-local. Add hooks
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
399 (not longlines-auto-wrap))) |
61110 | 400 (if arg |
78088
4545583b711c
(longlines-wrap-region): Avoid marking buffer as modified.
Chong Yidong <cyd@stupidchicken.com>
parents:
77871
diff
changeset
|
401 (progn |
77871
2b390b4a6ba8
(longlines-mode): Make longlines-auto-wrap buffer-local. Add hooks
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
402 (setq longlines-auto-wrap t) |
2b390b4a6ba8
(longlines-mode): Make longlines-auto-wrap buffer-local. Add hooks
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
403 (longlines-wrap-region (point-min) (point-max)) |
2b390b4a6ba8
(longlines-mode): Make longlines-auto-wrap buffer-local. Add hooks
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
404 (message "Auto wrap enabled.")) |
2b390b4a6ba8
(longlines-mode): Make longlines-auto-wrap buffer-local. Add hooks
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
405 (setq longlines-auto-wrap nil) |
2b390b4a6ba8
(longlines-mode): Make longlines-auto-wrap buffer-local. Add hooks
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
406 (message "Auto wrap disabled."))) |
61110 | 407 |
408 (defun longlines-after-change-function (beg end len) | |
409 "Update `longlines-wrap-beg' and `longlines-wrap-end'. | |
410 This is called by `after-change-functions' to keep track of the region | |
411 that has changed." | |
77871
2b390b4a6ba8
(longlines-mode): Make longlines-auto-wrap buffer-local. Add hooks
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
412 (when (and longlines-auto-wrap (not undo-in-progress)) |
61110 | 413 (setq longlines-wrap-beg |
414 (if longlines-wrap-beg (min longlines-wrap-beg beg) beg)) | |
415 (setq longlines-wrap-end | |
416 (if longlines-wrap-end (max longlines-wrap-end end) end)))) | |
417 | |
418 (defun longlines-post-command-function () | |
419 "Perform line wrapping on the parts of the buffer that have changed. | |
420 This is called by `post-command-hook' after each command." | |
77871
2b390b4a6ba8
(longlines-mode): Make longlines-auto-wrap buffer-local. Add hooks
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
421 (when (and longlines-auto-wrap longlines-wrap-beg) |
71873 | 422 (if (or (eq this-command 'yank) |
423 (eq this-command 'yank-pop)) | |
424 (longlines-decode-region (point) (mark t))) | |
425 (if longlines-showing | |
426 (longlines-show-region longlines-wrap-beg longlines-wrap-end)) | |
61110 | 427 (unless (or (eq this-command 'fill-paragraph) |
428 (eq this-command 'fill-region)) | |
429 (longlines-wrap-region longlines-wrap-beg longlines-wrap-end)) | |
430 (setq longlines-wrap-beg nil) | |
431 (setq longlines-wrap-end nil))) | |
432 | |
433 (defun longlines-window-change-function () | |
434 "Re-wrap the buffer if the window width has changed. | |
73330
400487787181
* dnd.el (dnd-handle-one-url): Fix typo in doc-string.
Jan Djärv <jan.h.d@swipnet.se>
parents:
72225
diff
changeset
|
435 This is called by `window-configuration-change-hook'." |
85347
f215fc483ae3
(longlines-wrap-follows-window-size): Integer value
Chong Yidong <cyd@stupidchicken.com>
parents:
82317
diff
changeset
|
436 (let ((dw (if (and (integerp longlines-wrap-follows-window-size) |
f215fc483ae3
(longlines-wrap-follows-window-size): Integer value
Chong Yidong <cyd@stupidchicken.com>
parents:
82317
diff
changeset
|
437 (>= longlines-wrap-follows-window-size 0) |
f215fc483ae3
(longlines-wrap-follows-window-size): Integer value
Chong Yidong <cyd@stupidchicken.com>
parents:
82317
diff
changeset
|
438 (< longlines-wrap-follows-window-size (window-width))) |
f215fc483ae3
(longlines-wrap-follows-window-size): Integer value
Chong Yidong <cyd@stupidchicken.com>
parents:
82317
diff
changeset
|
439 longlines-wrap-follows-window-size |
f215fc483ae3
(longlines-wrap-follows-window-size): Integer value
Chong Yidong <cyd@stupidchicken.com>
parents:
82317
diff
changeset
|
440 2))) |
f215fc483ae3
(longlines-wrap-follows-window-size): Integer value
Chong Yidong <cyd@stupidchicken.com>
parents:
82317
diff
changeset
|
441 (when (/= fill-column (- (window-width) dw)) |
f215fc483ae3
(longlines-wrap-follows-window-size): Integer value
Chong Yidong <cyd@stupidchicken.com>
parents:
82317
diff
changeset
|
442 (setq fill-column (- (window-width) dw)) |
f215fc483ae3
(longlines-wrap-follows-window-size): Integer value
Chong Yidong <cyd@stupidchicken.com>
parents:
82317
diff
changeset
|
443 (longlines-wrap-region (point-min) (point-max))))) |
61110 | 444 |
66088
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
445 ;; Isearch |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
446 |
67701 | 447 (defun longlines-search-function () |
66088
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
448 (cond |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
449 (isearch-word |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
450 (if isearch-forward 'word-search-forward 'word-search-backward)) |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
451 (isearch-regexp |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
452 (if isearch-forward 're-search-forward 're-search-backward)) |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
453 (t |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
454 (if isearch-forward |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
455 'longlines-search-forward |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
456 'longlines-search-backward)))) |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
457 |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
458 (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
|
459 (let ((search-spaces-regexp "[ \n]+")) |
66088
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
460 (re-search-forward (regexp-quote string) bound noerror count))) |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
461 |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
462 (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
|
463 (let ((search-spaces-regexp "[ \n]+")) |
66088
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
464 (re-search-backward (regexp-quote string) bound noerror count))) |
b63142efae15
* longlines.el (longlinges-search-function)
Chong Yidong <cyd@stupidchicken.com>
parents:
65312
diff
changeset
|
465 |
61110 | 466 ;; Loading and saving |
467 | |
67021
e220d76071f7
* longlines.el (longlines-before-revert-hook)
Chong Yidong <cyd@stupidchicken.com>
parents:
66996
diff
changeset
|
468 (defun longlines-before-revert-hook () |
e220d76071f7
* longlines.el (longlines-before-revert-hook)
Chong Yidong <cyd@stupidchicken.com>
parents:
66996
diff
changeset
|
469 (add-hook 'after-revert-hook 'longlines-after-revert-hook nil t) |
e220d76071f7
* longlines.el (longlines-before-revert-hook)
Chong Yidong <cyd@stupidchicken.com>
parents:
66996
diff
changeset
|
470 (longlines-mode 0)) |
e220d76071f7
* longlines.el (longlines-before-revert-hook)
Chong Yidong <cyd@stupidchicken.com>
parents:
66996
diff
changeset
|
471 |
e220d76071f7
* longlines.el (longlines-before-revert-hook)
Chong Yidong <cyd@stupidchicken.com>
parents:
66996
diff
changeset
|
472 (defun longlines-after-revert-hook () |
e220d76071f7
* longlines.el (longlines-before-revert-hook)
Chong Yidong <cyd@stupidchicken.com>
parents:
66996
diff
changeset
|
473 (remove-hook 'after-revert-hook 'longlines-after-revert-hook t) |
e220d76071f7
* longlines.el (longlines-before-revert-hook)
Chong Yidong <cyd@stupidchicken.com>
parents:
66996
diff
changeset
|
474 (longlines-mode 1)) |
e220d76071f7
* longlines.el (longlines-before-revert-hook)
Chong Yidong <cyd@stupidchicken.com>
parents:
66996
diff
changeset
|
475 |
61110 | 476 (add-to-list |
477 'format-alist | |
67024 | 478 (list 'longlines "Automatically wrap long lines." nil nil |
67021
e220d76071f7
* longlines.el (longlines-before-revert-hook)
Chong Yidong <cyd@stupidchicken.com>
parents:
66996
diff
changeset
|
479 'longlines-encode-region t nil)) |
61110 | 480 |
481 (provide 'longlines) | |
482 | |
61125
93886f61ae3e
Changes from arch/CVS synchronization
Miles Bader <miles@gnu.org>
parents:
61110
diff
changeset
|
483 ;; arch-tag: 3489d225-5506-47b9-8659-d8807b77c624 |
61110 | 484 ;;; longlines.el ends here |