在emacs下一直沒有找到合適的工程項目類插件,因而本身寫了一個。主要的痛點以下: css
插件的主要功能: linux
插件安裝方法: shell
(defun proj-save-rsync ( ) "Save buffers and do a command." (save-some-buffers) (shell-command proj-rsync-script ) (interactive) ) (defun proj-load (arg) (interactive (list (completing-read "Choose one project: " (directory-files "~/.emacs.d/projects" nil "\\.el$") ))) (load (concat "~/.emacs.d/projects/" arg)) ;(insert arg) ) (global-set-key (kbd "C-x p") 'proj-load) (global-set-key [f8] 'proj-save-rsync)
mkdir ~/.emacs.d/projects
(setq proj-root "/path/to/the/source/root") ;配置項目root path (setq proj-rsync-script "/rsync/script.exp") ;設置上傳代碼的腳本 (proj-ac-config proj-root) ;自定義的一個函數,設置clang搜索頭文件時候的路徑 (find-file proj-root) ;打開project的root path (cscope-set-initial-directory proj-root) ;初始化cscope (cscope-index-files proj-root)