]> code.delx.au - gnu-emacs-elpa/commitdiff
* awp-mode: New package.
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 25 Nov 2011 14:51:22 +0000 (09:51 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 25 Nov 2011 14:51:22 +0000 (09:51 -0500)
packages/awp-mode/awp-mode.el [new file with mode: 0644]

diff --git a/packages/awp-mode/awp-mode.el b/packages/awp-mode/awp-mode.el
new file mode 100644 (file)
index 0000000..3b5fdef
--- /dev/null
@@ -0,0 +1,52 @@
+;;; awp-mode.el --- Perform smart line-wrapping with wrap-prefix
+
+;; Copyright (C) 2011  Stefan Monnier
+
+;; Author: Stephen Berman <stephen.berman@gmx.net>
+;;         Stefan Monnier <monnier@iro.umontreal.ca>
+;; Version: 0.1
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; 
+
+;;; Code:
+
+(defun adaptive-wrap-prefix-function (beg end)
+  "Indent the region between BEG and END with adaptive filling."
+  (goto-char beg)
+  (while (< (point) end)
+    (let ((blp (line-beginning-position)))
+      (put-text-property (point)
+                         (progn (search-forward "\n" end 'move) (point))
+                         'wrap-prefix
+                         (fill-context-prefix blp (point))))))
+
+;;;###autoload
+(define-minor-mode adaptive-wrap-prefix-mode
+  "Wrap the buffer text with adaptive filling."
+  :lighter ""
+  (if adaptive-wrap-prefix-mode
+      (jit-lock-register #'adaptive-wrap-prefix-function)
+    (jit-lock-unregister #'adaptive-wrap-prefix-function)
+    (with-silent-modifications
+      (save-restriction
+        (widen)
+        (remove-text-properties (point-min) (point-max) '(wrap-prefix nil))))))
+
+
+(provide 'awp-mode)
+;;; awp-mode.el ends here