Difference between revisions of "Expand region"

From WikEmacs
Jump to navigation Jump to search
Line 27: Line 27:
  
 
== Common Customization ==
 
== Common Customization ==
 +
 +
=== Replacing the Region ===
 +
 +
{{Command|delete-selection-mode}} is sometimes used in conjunction with [[Expand region]]. [[Delete selection]] is a [[minor mode]] that allows you to type to delete and replace the contents of the current region.
  
 
== See Also ==
 
== See Also ==

Revision as of 14:34, 5 April 2012

expand-region
Description Emacs extension to increase selected region by semantic units.
Author Magnar Sveen
Maintainer Magnar Sveen
Source https://github.com/magnars/expand-region.el

Expand region increases the selected region by semantic units. Just keep pressing the key until it selects what you want.

An example:

(setq alphabet-start "abc def")

With the cursor at the c, it starts by marking the entire word abc, then expand to the contents of the quotes abc def, then to the entire quote "abc def", then to the contents of the sexp setq alphabet-start "abc def" and finally to the entire sexp.

Basic setup

(require 'expand-region)
(global-set-key (kbd "C-=") 'er/expand-region)

Helpful keybindings

Common Customization

Replacing the Region

M-x delete-selection-mode is sometimes used in conjunction with Expand region. Delete selection is a minor mode that allows you to type to delete and replace the contents of the current region.

See Also

Project Pages

Tutorial Pages