考场配置:
<code>(tool-bar-mode 0) (menu-bar-mode 0) (global-linum-mode t) (show-paren-mode t) (ido-mode t) (setq-default cursor-type 'bar) (cua-mode t) (global-auto-revert-mode t) (setq-default scroll-step 1 scroll-margin 0 scroll-conservatively 10000) (global-set-key [f9] 'compile-file) (defun compile-file() (interactive) (compile (format "g++ -o %s %s -g -lm -Wall -std=c++98" (file-name-sans-extension (buffer-name)) (buffer-name))) ) (global-set-key (kbd "C-s") 'save-buffer) (global-set-key (kbd "C-q") 'kill-buffer) (global-set-key (kbd "C-x C-s") 'isearch-forward) (global-set-key (kbd "C-e") 'shell) (global-set-key (kbd "C-z") 'undo) (global-set-key (kbd "C-x C-a") 'mark-whole-buffer) (global-set-key (kbd "C-h") 'query-replace) </code>
【说明】:本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!