mirror of
https://github.com/correl/dotfiles.git
synced 2024-12-18 03:00:11 +00:00
[emacs] Add expand-region
This commit is contained in:
parent
746285b515
commit
51568dc99b
2 changed files with 4 additions and 0 deletions
|
@ -9,6 +9,7 @@
|
||||||
(depends-on "auto-complete")
|
(depends-on "auto-complete")
|
||||||
(depends-on "git-gutter")
|
(depends-on "git-gutter")
|
||||||
(depends-on "smex")
|
(depends-on "smex")
|
||||||
|
(depends-on "expand-region")
|
||||||
|
|
||||||
;; PHP
|
;; PHP
|
||||||
(depends-on "multi-web-mode")
|
(depends-on "multi-web-mode")
|
||||||
|
|
|
@ -30,6 +30,9 @@
|
||||||
(global-set-key (kbd "M-x") 'smex)
|
(global-set-key (kbd "M-x") 'smex)
|
||||||
(global-set-key (kbd "M-X") 'smex-major-mode-commands)
|
(global-set-key (kbd "M-X") 'smex-major-mode-commands)
|
||||||
|
|
||||||
|
;; Expand Region
|
||||||
|
(global-set-key (kbd "C-=") 'er/expand-region)
|
||||||
|
|
||||||
;; Git Gutter
|
;; Git Gutter
|
||||||
(global-git-gutter-mode t)
|
(global-git-gutter-mode t)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue