diff options
Diffstat (limited to 'lisp/acdw.el')
-rw-r--r-- | lisp/acdw.el | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lisp/acdw.el b/lisp/acdw.el index be12dd6..eab0719 100644 --- a/lisp/acdw.el +++ b/lisp/acdw.el | |||
@@ -309,6 +309,16 @@ With a prefix argument, run git pull on the repo first." | |||
309 | 309 | ||
310 | ;;; Specialized functions | 310 | ;;; Specialized functions |
311 | 311 | ||
312 | (defun acdw/copy-region-plain (start end) | ||
313 | "Copy a region to clipboard, removing all Org formatting." | ||
314 | (interactive "*r") | ||
315 | (let ((s (buffer-substring-no-properties start end))) | ||
316 | (with-temp-buffer | ||
317 | (insert s) | ||
318 | (let ((sentence-end-double-space nil)) | ||
319 | (unfill-region (point-min) (point-max))) | ||
320 | (copy-region-as-kill (point-min) (point-max))))) | ||
321 | |||
312 | (defun acdw/dir (&optional file make-directory) | 322 | (defun acdw/dir (&optional file make-directory) |
313 | "Place Emacs files in one place. | 323 | "Place Emacs files in one place. |
314 | 324 | ||