el-get/recipes/smart-forward.rcp
2013-05-25 10:38:54 +02:00

13 lines
569 B
Plaintext

(:name smart-forward
:type github
:pkgname "magnars/smart-forward.el"
:description "Semantic navigation based on expand-region"
:website "https://github.com/magnars/smart-forward.el"
:features smart-forward
:depends (expand-region)
:post-init (progn
(global-set-key (kbd "M-<up>") 'smart-up)
(global-set-key (kbd "M-<down>") 'smart-down)
(global-set-key (kbd "M-<left>") 'smart-backward)
(global-set-key (kbd "M-<right>") 'smart-forward)))