mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
16 lines
297 B
EmacsLisp
16 lines
297 B
EmacsLisp
;;; siren-expand-region.el --- jimeh's Emacs Siren: expand-region
|
|
|
|
;;; Commentary:
|
|
|
|
;; Configuration for expand-region
|
|
|
|
;;; Code:
|
|
|
|
(use-package expand-region
|
|
:general
|
|
("M-." 'er/expand-region)
|
|
("M-," 'er/contract-region))
|
|
|
|
(provide 'siren-expand-region)
|
|
;;; siren-expand-region.el ends here
|