spacemacs/layers/+spacemacs/spacemacs-editing
Tim Ruffing 9e3fc598ad
Don't set :foreground/background to nil to avoid font warnings in emacs29 (#15877)
Fixes https://github.com/syl20bnr/spacemacs/issues/15862
2023-01-13 06:28:55 +00:00
..
local/spacemacs-whitespace-cleanup spacemacs-editing: refactor 2021-04-04 12:48:21 +02:00
README.org Undo-region: more ergonomic keybindings (#15631) 2022-07-15 19:26:28 +00:00
funcs.el Don't set :foreground/background to nil to avoid font warnings in emacs29 (#15877) 2023-01-13 06:28:55 +00:00
packages.el * layers/+spacemacs/spacemacs-editing: use the string-edit-at-point-mode 2022-11-13 07:22:51 +01:00

README.org

spacemacs-editing layer

Description

This layer adds packages to improve editing with Spacemacs.

Features:

Customization

Undo Region

In normal state, u is bound to evil-undo which undo changes in the buffer. Emacs's builtin undo command in addition has the ability to undo changes in a selected region. But by default in visual state, u is bound to evil-downcase which downcases the selected text.

You can bound undo to u in visual state, by setting the variable vim-style-enable-undo-region to t in your ~/.spacemacs.

  (setq-default dotspacemacs-configuration-layers
                '((spacemacs-editing :variables
                                     vim-style-enable-undo-region t)))