branch: externals/clipboard-collector
commit e5879749d7b49b3c71691987382ae5400578b3e8
Author: Clemens Radermacher <[email protected]>
Commit: Clemens Radermacher <[email protected]>
Rephrase description
---
README.org | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/README.org b/README.org
index b0e62c7..da941af 100644
--- a/README.org
+++ b/README.org
@@ -28,13 +28,12 @@ transformed to be used as property drawer items).
#+END_SRC
This creates a command called =cc-capture-rss=. When called the clipboard is
-observed and on changes which match one of the regexes, the clipboard contents
-are transformed via the format string provided above and saved for later
-processing.
+observed and any changes which match one of the regexes will be collected. The
+clipboard contents are transformed via the format string provided above.
When done collecting, you can press =C-c C-c= to call the finalize function (in
-the above example it would inserts the collected items and finish the
-org-capture).
+the above example it would inserts the collected items separated by newlines
and
+finish the org-capture).
If you would like to simply collect items as they are and paste them at some
other place you could use:
@@ -45,7 +44,7 @@ other place you could use:
((".*" "%s"))))
#+END_SRC
-It's also possible to provide an function to transform the contents before
+It's also possible to provide a function to transform the contents before
applying the format string. For example to upcase all collected items you could
use something like this: