public
Description: Everybody have his own emacs, why not me?
Homepage:
Clone URL: git://github.com/dongbin/my_emacs.git
my_emacs / move_in_buffer.el
100644 14 lines (10 sloc) 0.422 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
;; shortcut
(global-set-key "\M-n" 'forward-paragraph)
(global-set-key "\M-p" 'backward-paragraph)
 
;; book-mark-jump 重绑为像ido一样
(global-set-key (kbd "C-x r b") 'my-bookmark-jump)
 
;; 在括号上时%跳到匹配的括号
;; (global-set-key "%" 'match-paren)
 
;;作记号,作完记号可以马上跳回来
(global-set-key (kbd "C-=") 'ska-point-to-register)
(global-set-key (kbd "C--") 'ska-jump-to-register)