diff --git a/CHANGELOG.md b/CHANGELOG.md index 73f26fe779..0a2153cda3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to the "emacs-mcx" extension will be documented in this file ## [Unreleased] +### Add + +- Text registers, #1643, by @justinhopkins. + ## [0.49.1 (pre-release)] - 2023-09-08 ### Fix diff --git a/README.md b/README.md index 0dc1c8bf97..44deb8f81f 100644 --- a/README.md +++ b/README.md @@ -241,6 +241,15 @@ Alt key is mapped to the Meta prefix (`M`) by default and you can configure for See [this page](https://www.gnu.org/software/emacs/manual/html_node/emacs/Setting-Mark.html) and [this page](https://www.gnu.org/software/emacs/manual/html_node/emacs/Mark-Ring.html) about the mark and the mark ring. +## Text registers + +| Command | Desc | +| ------------- | ------------------------------------------------- | +| `C-x r s `_r_ | Copy region into register _r_ (copy-to-register). | +| `C-x r i `_r_ | Insert text from register _r_ (insert-register). | + +See [this page](https://www.gnu.org/software/emacs/manual/html_node/emacs/Text-Registers.html) about the text registers. + ## Rectangles | Command | Desc |