免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
楼主: flw
打印 上一主题 下一主题

有关 Emacs 使用技巧的内容请在这个帖子讨论。 [复制链接]

论坛徽章:
0
301 [报告]
发表于 2006-02-23 20:26 |只看该作者
呵呵~
你是怎么设置的?
把你添加的内容贴一下。

论坛徽章:
0
302 [报告]
发表于 2006-02-23 20:37 |只看该作者
原帖由 herberteuler 于 2006-2-22 22:41 发表
你追求的还挺多,呵呵。

1. 在你的 ~/.emacs 里写上

(defface boxed
  '((t (:box t)))
  "boxed")


2. 用 M-x customize-variable RET facemenu-keybindings RET  ...


太可怕了, 我根据你的设置,结果得到的是这个效果。
我弄成全局显示了。
见下图:
如何恢复呀?
在线急!!

capture2.jpg (106.83 KB, 下载次数: 43)

capture2.jpg

论坛徽章:
0
303 [报告]
发表于 2006-02-23 20:51 |只看该作者
我知道你的 Emacs 现在快没法看了,把你修改的代码贴一下吧。

论坛徽章:
0
304 [报告]
发表于 2006-02-23 21:11 |只看该作者
原帖由 herberteuler 于 2006-2-23 20:51 发表
我知道你的 Emacs 现在快没法看了,把你修改的代码贴一下吧。


这是你给我的修改配置:

  1. 1. 在你的 ~/.emacs 里写上

  2. (defface boxed
  3.   '((t (:box t)))
  4.   "boxed")

  5. 2. 用 M-x customize-variable RET facemenu-keybindings RET 来定义 facemenu-keybindings 的值。

  6. 3. 无论是用 M-o o 还是你定义的 facemenu-... ,应该都可以设置加边框的属性了。如果不能,执行 M-x facemenu-update 试试。你可以将 (facemenu-update) 写到 ~/.emacs 中。
复制代码

我的修改后的。emacs文件:

  1. (custom-set-variables
  2.   ;; custom-set-variables was added by Custom -- don't edit or cut/paste it!
  3.   ;; Your init file should contain only one such instance.
  4. '(auto-insert-mode t nil (autoinsert))
  5. '(auto-show-mode t t)
  6. '(c++-mode-hook nil)
  7. '(c-indent-comments-syntactically-p t)
  8. '(c-tab-always-indent t)
  9. '(case-fold-search t)
  10. '(column-number-mode t)
  11. '(cpp-known-writable t)
  12. '(current-language-environment "Chinese-GB")
  13. '(default-input-method "chinese-wbx-gb")
  14. '(dired-recursive-copies t)
  15. '(dired-recursive-deletes t)
  16. '(facemenu-add-face-function nil)
  17. '(facemenu-keybindings (quote ((default . "d") (bold . "b") (italic . "i") (bold-italic . "l") (underline . "u"))))
  18. '(facemenu-new-faces-at-end t)
  19. '(facemenu-unlisted-faces (quote (modeline region secondary-selection highlight scratch-face "^font-lock-" "^gnus-" "^message-" "^ediff-" "^term-" "^vc-" "^widget-" "^custom-" "^vm-")))
  20. '(global-font-lock-mode t nil (font-lock))
  21. '(global-hl-line-mode t nil (hl-line))
  22. '(hl-line-face (quote highlight))
  23. '(html-mode-hook (quote (html-autoview-mode)))
  24. '(java-mode-hook nil)
  25. '(mark-holidays-in-calendar t t)
  26. '(nxml-attribute-indent 8)
  27. '(nxml-auto-insert-xml-declaration-flag t)
  28. '(nxml-child-indent 4)
  29. '(nxml-outline-child-indent 4)
  30. '(nxml-prefer-utf-16-to-utf-8-flag nil)
  31. '(nxml-sexp-element-flag t)
  32. '(nxml-slash-auto-complete-flag t)
  33. '(php-mode-force-pear t)
  34. '(php-mode-speedbar-open nil)
  35. '(php-speedbar-config nil)
  36. '(sgml-mode-hook nil)
  37. '(sgml-name-8bit-mode t)
  38. '(sgml-slash-distance 2000)
  39. '(show-paren-mode t nil (paren))
  40. '(standard-indent 8)
  41. '(text-mode-hook (quote (turn-on-auto-fill text-mode-hook-identify)))
  42. '(transient-mark-mode t))
  43. (custom-set-faces
  44.   ;; custom-set-faces was added by Custom -- don't edit or cut/paste it!
  45.   ;; Your init file should contain only one such instance.
  46. '(default ((t (:stipple nil :background "white" :foreground "black" :inverse-video nil :box (:line-width 2 :color "blue75" :style released-button) :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 98 :width normal :family "outline-courier new"))))
  47. '(highlight ((((class color) (background light)) (:background "lightgreen" :foreground "black" :underline t))))
  48. '(nxml-heading-face ((t (:background "lightgreen" :foreground "blue" :weight bold :height unspecified))))
  49. '(rng-error-face ((t (:underline "red")))))
  50. ;;the setnu.el used in the source code viewing the lines
  51. (require 'setnu)
  52. (setnu-mode t)
  53. (setq appt-issue-message t)
  54. (setq display-time-24hr-format t)
  55. (setq display-time-day-and-date t)
  56. (display-time)

  57. ;;the xref tools can be use viewing and compile editing the java source code forlearning the source code
  58. (setq exec-path (cons "d:/apptools/xref" exec-path))
  59. (setq load-path (cons "d:/apptools/xref/emacs" load-path))
  60. (load "xrefactory")

  61. ;;erc-pcomlete mode
  62. (add-hook 'erc-mode-hook
  63.               '(lambda ()
  64.                (require 'erc-pcomplete)
  65.                   (pcomplete-erc-setup)
  66.                  (erc-completion-mode 1)))
  67. (put 'downcase-region 'disabled nil)

  68. ;;php-mode use
  69. (require 'php-mode)
  70. (add-hook 'php-mode-user-hook 'turn-on-font-lock)
  71. (add-hook 'php-mode-user-hook
  72.           '(lambda () (define-abbrev php-mode-abbrev-table "ex" "extends")))


  73. ;; emacs all.el use
  74. (autoload 'all "all" nil t)

  75. ;; emacs flyspell-1.7e.el use
  76. (autoload 'flyspell-mode "flyspell" "On-the-fly spelling checking" t)
  77. (autoload 'global-flyspell-mode "flyspell" "On-the-fly spelling" t)

  78. ;; emacs template use
  79. (setq load-path (cons (expand-file-name "d:/apptools/emacs-21.3/site-lisp")
  80.                       load-path))
  81. (require 'template)
  82. (template-initialize)

  83. ;; emacs wb-line-number.el use:
  84. (set-scroll-bar-mode nil)   ; no scroll bar, even in x-window system
  85. (require 'wb-line-number)

  86. ;; emacs gnuserv.el usage:
  87. (require 'gnuserv)
  88. (gnuserv-start)

  89. ;; emacs psgml setup
  90. (setq load-path (append (list nil "d:/apptools/emacs-21.3/site-lisp/psgml-1.2.5") load-path))
  91. ;; use PSGML for sgml and xml major modes.
  92. (autoload 'sgml-mode "psgml" "Major mode to edit SGML files." t)
  93. (autoload 'xml-mode "psgml" "Major mode to edit XML files." t)

  94. ;; emacs nxml-mode use:
  95. (load "d:/apptools/emacs-21.3/site-lisp/nxml-mode-20041004/rng-auto.el") ;; get things automatically loaded each time when starting emacs
  96. ;; with an extension of xml, xsl, rng or xhtml in all nxml-mode files in automatically uses:
  97. (setq auto-mode-alist
  98.         (cons '("\\.\\(xml\\|xsl\\|rng\\|xhtml\\)\\'" . nxml-mode)
  99.               auto-mode-alist))

  100. ;; emacs html-helper-mode use:
  101. (setq load-path (cons "d:/apptools/emacs-21.3/site-lisp/html-helper-mode.el " load-path))
  102. (autoload 'html-helper-mode "html-helper-mode" "Yay HTML" t)
  103. (setq auto-mode-alist (cons '("\\.html$" . html-helper-mode) auto-mode-alist))
  104. (setq auto-mode-alist (cons '("\\.phtml$" . html-helper-mode) auto-mode-alist))

  105. ;; emacs session use:
  106. (require 'session)
  107. (add-hook 'after-init-hook 'session-initialize)

  108. ;; emacs ispell use:
  109. (setq-default ispell-program-name "aspell")
  110.     (setq-default ispell-local-dictionary "american")
  111.     (global-set-key (kbd "") 'ispell-complete-word)

  112. ;; emacs python-mode use:
  113. (setq auto-mode-alist (cons '("\\.py$" . python-mode) auto-mode-alist))
  114. (setq interpreter-mode-alist (cons '("python" . python-mode)
  115.                                    interpreter-mode-alist))
  116. (autoload 'python-mode "python-mode" "Python editing mode." t)

  117. ;; emads pymacs used in Win32:
  118. (autoload ' pymacs-load "pymacs" nil t)
  119. (autoload ' pymacs-eval "pymacs" nil t)
  120. (autoload ' pymacs-apply "pymacs")
  121. ;;(autoload ' pymacs-call "pymacs")
  122. (eval-after-load "pymacs"
  123. ' (add-to-list ' pymacs-load-path "d:/apptools/emacs-21.3/site-lisp/Pymacs-0.22"))

  124. ;; emacs generic mode use:
  125. (require ' generic)
  126. (require ' generic-x)

  127. ;; emacs dired-signle mode use:
  128. (require 'dired-single)

  129. (defface boxed
  130.   '((t (:box t)))
  131.   "boxed")
复制代码

然后执行M-x customize-variable RET facemenu-keybindings定义的,结果就变成现在这样子了。怎么恢复呀?

论坛徽章:
0
305 [报告]
发表于 2006-02-23 21:40 |只看该作者
谁叫你乱改的,改坏了吧(开个玩笑啦~

图中有个 default 的 list,它保存着你的 Emacs 中要使用的 face 的信息。这里的信息可能并不都是你想要的,例如,:box 就不是你想要的(图中已经加注)。你只要将不需要的去掉就可以了。

再说,我也没看到你设置 facemenu-keybindings 来包含 boxed 这个 face 呀。

face.PNG (17.62 KB, 下载次数: 55)

Emacs Face

Emacs Face

论坛徽章:
0
306 [报告]
发表于 2006-02-23 22:14 |只看该作者
原帖由 herberteuler 于 2006-2-23 21:40 发表
谁叫你乱改的,改坏了吧(开个玩笑啦~

图中有个 default 的 list,它保存着你的 Emacs 中要使用的 face 的信息。这里的信息可能并不都是你想要的,例如,:box 就不是你想要的(图中已经加注)。你只要将不 ...


herberteuler兄, 请问一下,如何定义一个好的face,能让它在该用的地方使用。能举例说明一下吗?我好做个参考。

论坛徽章:
0
307 [报告]
发表于 2006-02-24 20:22 |只看该作者
你可以看一下 C-h i melisp mfaces 中的内容来了解如何定义一个 Face。定义好 Face 以后,选择一个文本区域,就可以为这个区域定义它的 Face。

论坛徽章:
0
308 [报告]
发表于 2006-02-24 22:41 |只看该作者
原帖由 herberteuler 于 2006-2-24 20:22 发表
你可以看一下 C-h i melisp mfaces 中的内容来了解如何定义一个 Face。定义好 Face 以后,选择一个文本区域,就可以为这个区域定义它的 Face。


herberteuler兄,我的NTEMACS中没有这个命令:C-h i melisp mfaces,倒是有C-h i memacs mfaces。内容是一样的吧? 那我看你给我解决boxed问题时为什么会在。emacs文件中加入那段代码,再去定义faces呢?这样做岂不是和你刚才给我的回复互相矛盾吗?我对此感到疑惑,请你解释一下。

论坛徽章:
0
309 [报告]
发表于 2006-02-25 10:04 |只看该作者
defface 只是定义了一个 Face 并不是使用它。我说的“定义 facemenu”是指定义 facemenu-keybindings。

论坛徽章:
0
310 [报告]
发表于 2006-02-25 10:50 |只看该作者
请问如何更改字符集呢
比如有时我想用GB2312显示
有时又想用UTF8显示
用命令可以做到吗
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP