Merge pull request #1232 from dholm/smart-forward

Recipe for 'smart-forward'
This commit is contained in:
Dimitri Fontaine 2013-07-21 15:44:51 -07:00
commit c7d30dcabc

12
recipes/smart-forward.rcp Normal file
View File

@ -0,0 +1,12 @@
(: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)))