还有我想输入tab字符而不是indent...怎么弄?下面是我的.emacs,解决不了这个问题...
代码: 全选
(setq visible-bell t)
(setq inhibit-startup-message t)
(setq column-number-mode t)
(setq kill-ring-max 200)
(show-paren-mode t)
(setq show-paren-style 'parentheses)
( global-font-lock-mode t)
( display-time )
(column-number-mode t);
(show-paren-mode t);
(display-time-mode 1);
(setq display-time-24hr-format t)
(setq display-time-day-and-date t)
(transient-mark-mode t);
(setq default-fill-column 80);
(global-set-key (kbd "TAB") 'self-insert-command)
(global-set-key (kbd "TAB") 'tab-to-tab-stop)
(setq tab-width 4)
(setq tab-stop-list (list 4 8 12 16 20 24 28 32 36 40 44 48 52 56 60 64 68 72 76 80 84 88 92 96 100 104 108))