emacs之切换h/cpp配置

emacsConfig/switch-file-setting.el

 1 (defun switch-c ()
 2   (global-set-key (kbd "<C-return>")  'ffap)
 3   (global-set-key [f11] 'ff-find-other-file)
 4 )
 5 (add-hook 'c-mode-hook 'switch-c)
 6 
 7 (defun switch-cpp ()
 8   (global-set-key (kbd "<C-return>")  'ffap)
 9   (global-set-key [f11] 'ff-find-other-file)
10 )
11 (add-hook 'c++-mode-hook 'switch-cpp)

 

posted @ 2014-01-07 21:16  自由出土文物  阅读(320)  评论(0)    收藏  举报