aboutsummaryrefslogtreecommitdiff
path: root/test-org-link-edit.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2015-08-08 19:39:15 -0400
committerKyle Meyer <kyle@kyleam.com>2015-08-08 19:39:15 -0400
commit1d2e9a381e89ce14df3386d08f76f4012f202203 (patch)
treec57bf356c345e74b3b142f8605d0c3b3283d3083 /test-org-link-edit.el
parenta991bdf74dc90588121d54665ff405f9eb6f9da7 (diff)
downloadorg-link-edit-1d2e9a381e89ce14df3386d08f76f4012f202203.tar.gz
slurp: Reduce new line stretches to single space
... instead of replacing each new line with a space.
Diffstat (limited to 'test-org-link-edit.el')
-rw-r--r--test-org-link-edit.el18
1 files changed, 18 insertions, 0 deletions
diff --git a/test-org-link-edit.el b/test-org-link-edit.el
index e00288c..19d8c97 100644
--- a/test-org-link-edit.el
+++ b/test-org-link-edit.el
@@ -113,6 +113,15 @@ otherwise place the point at the beginning of the inserted text."
website is"
(org-link-edit-forward-slurp 1)
(buffer-string))))
+ ;; Collapse stretches of new lines.
+ (should
+ (string=
+ "\[\[http://orgmode.org/\]\[Org's website is\]\]"
+ (org-test-with-temp-text
+ "\[\[http://orgmode.org/\]\[Org's\]\]
+\n\nwebsite\n\n\nis"
+ (org-link-edit-forward-slurp 2)
+ (buffer-string))))
;; Slurp blob that has no whitespace.
(should
(string=
@@ -204,6 +213,15 @@ website is"
<point>\[\[http://orgmode.org/\]\[Org's website\]\]"
(org-link-edit-backward-slurp 1)
(buffer-string))))
+ ;; Collapse stretches of new lines.
+ (should
+ (string=
+ "\[\[http://orgmode.org/\]\[Here is Org's website\]\]"
+ (org-test-with-temp-text
+ "Here\n\nis\n\n\n
+<point>\[\[http://orgmode.org/\]\[Org's website\]\]"
+ (org-link-edit-backward-slurp 2)
+ (buffer-string))))
;; Slurp blob that has no whitespace.
(should
(string=