Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md and CHANGELOD.md about the text registers #1669

Merged
merged 1 commit into from
Sep 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
Loading