diff options
author | Clive Lin <clive@FreeBSD.org> | 2000-12-16 02:14:11 +0000 |
---|---|---|
committer | Clive Lin <clive@FreeBSD.org> | 2000-12-16 02:14:11 +0000 |
commit | f5da59390d10a56ec3ca75c18ab907e9ce40dd6e (patch) | |
tree | 5f77aff87b7f3b5c115dbd913f28e6e3ae1a08e3 /chinese/emacs20 | |
parent | 9c5bb2e3ce15e3657a47538e514f31a42b8c43fe (diff) | |
download | ports-f5da59390d10a56ec3ca75c18ab907e9ce40dd6e.tar.gz ports-f5da59390d10a56ec3ca75c18ab907e9ce40dd6e.zip |
Add comments in sample dot.emacs about yes/no consistency and
font-lock and pc-selection-mode.
Yet another comment is
;; Don't ask me more about emacs customization ! You should read the
;; manual or just ask google.com.
Another message for phj@cn.FreeBSD.org, I know you read cvs-all:
Could you give me the URL which introduces how to setup a
zh_CN.EUC environment ? Including all details, I think LANG=zh_CN.EUC
isn't sufficent. Otherwise I can't test and make zh-emacs20 work under
both Simplified/Trditional environment.
Notes
Notes:
svn path=/head/; revision=36016
Diffstat (limited to 'chinese/emacs20')
-rw-r--r-- | chinese/emacs20/files/dot.emacs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/chinese/emacs20/files/dot.emacs b/chinese/emacs20/files/dot.emacs index 2fb65f502f59..43589f9c9715 100644 --- a/chinese/emacs20/files/dot.emacs +++ b/chinese/emacs20/files/dot.emacs @@ -7,3 +7,16 @@ (modify-coding-system-alist 'process "*" 'chinese-big5) ;; Do not conflicts with xcin hook (global-set-key (kbd "M-SPC") 'set-mark-command) +;; --------------------------------------------------------------------------- +;; to get emacs a bit more consistent, replace all yes or no questions with +;; simple y or n. +;; --------------------------------------------------------------------------- +;;(fset 'yes-or-no-p 'y-or-n-p) +;; --Use Windoze style selection +;;(custom-set-variables +;; '(pc-selection-mode t nil (pc-select))) +;; To make sure you get as much highlighting as possible +;; (global-font-lock-mode t) +;; (setq-default font-lock-maximum-decoration t) +;; Don't ask me more about emacs customization ! You should read the +;; manual or just ask google.com. |