mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
- Split large modules into smaller parts (e.g. siren-text-manipulation) - Organize modules into high level groups: - completion - core - editor - languages - linting - misc - navigation - projects - spelling - text-editing - version-control - windows - workspaces
16 lines
296 B
EmacsLisp
16 lines
296 B
EmacsLisp
;;; siren-expand-region.el --- jimeh's Emacs Siren: expand-region
|
|
|
|
;;; Commentary:
|
|
|
|
;; Configuration for expand-region
|
|
|
|
;;; Code:
|
|
|
|
(use-package expand-region
|
|
:bind
|
|
("M-." . er/expand-region)
|
|
("M-," . er/contract-region))
|
|
|
|
(provide 'siren-expand-region)
|
|
;;; siren-expand-region.el ends here
|