branch: externals/substitute
commit eb9bc3d502f7e41d2799d2e18939cb7812e4867b
Author: Protesilaos Stavrou <[email protected]>
Commit: Protesilaos Stavrou <[email protected]>
Update substitute--scope-description doc string to include the new scopes I
added today
---
substitute.el | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/substitute.el b/substitute.el
index 63c0afbe6d..fb810cbbba 100644
--- a/substitute.el
+++ b/substitute.el
@@ -96,7 +96,11 @@ Possible meaningful values for SCOPE are:
- `below' :: from point to the end of the buffer.
- `above' :: from point to the beginning of the buffer.
- `defun' :: limit to the current defun per `narrow-to-defun'.
-- nil :: across the whole buffer."
+- `defun-and-below' :: as above but only operate from point onwards.
+- `outline' :: limit to the current outline level per `outline-regexp'.
+- `page' :: limit to the current page per `page-delimiter'.
+- `paragraph' :: in the current paragraph.
+- any other value :: across the whole buffer."
(pcase scope
('below "from point to the END of the buffer")
('above "from point to the BEGINNING of the buffer")