免费注册 查看新帖 |

Chinaunix

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

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

论坛徽章:
0
271 [报告]
发表于 2006-01-25 22:55 |只看该作者

My .emacs file



  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. '(facemenu-add-face-function nil)
  16. '(facemenu-keybindings (quote ((default . "d") (bold . "b") (italic . "i") (bold-italic . "l") (underline . "u") (Overline . "v") (Box . "x"))))
  17. '(facemenu-new-faces-at-end t)
  18. '(facemenu-unlisted-faces (quote (modeline region secondary-selection highlight scratch-face "^font-lock-" "^gnus-" "^message-" "^ediff-" "^term-" "^vc-" "^widget-" "^custom-" "^vm-")))
  19. '(global-font-lock-mode t nil (font-lock))
  20. '(global-hl-line-mode t nil (hl-line))
  21. '(hl-line-face (quote highlight))
  22. '(html-mode-hook (quote (html-autoview-mode)))
  23. '(java-mode-hook nil)
  24. '(mark-holidays-in-calendar t)
  25. '(nxml-attribute-indent 8)
  26. '(nxml-auto-insert-xml-declaration-flag t)
  27. '(nxml-child-indent 4)
  28. '(nxml-outline-child-indent 4)
  29. '(nxml-prefer-utf-16-to-utf-8-flag nil)
  30. '(nxml-sexp-element-flag t)
  31. '(nxml-slash-auto-complete-flag t)
  32. '(php-mode-force-pear t)
  33. '(php-mode-speedbar-open nil)
  34. '(php-speedbar-config nil)
  35. '(sgml-mode-hook nil)
  36. '(sgml-name-8bit-mode t)
  37. '(sgml-slash-distance 2000)
  38. '(show-paren-mode t nil (paren))
  39. '(standard-indent 8)
  40. '(text-mode-hook (quote (turn-on-auto-fill text-mode-hook-identify)))
  41. '(transient-mark-mode t))
  42. (custom-set-faces
  43.   ;; custom-set-faces was added by Custom -- don't edit or cut/paste it!
  44.   ;; Your init file should contain only one such instance.
  45. '(highlight ((((class color) (background light)) (:background "lightgreen" :foreground "black" :underline t))))
  46. '(nxml-heading-face ((t (:background "lightgreen" :foreground "blue" :weight bold :height unspecified))))
  47. '(rng-error-face ((t (:underline "red")))))
  48. ;;the setnu.el used in the source code viewing the lines
  49. (require 'setnu)
  50. (setnu-mode t)
  51. (setq appt-issue-message t)
  52. (setq display-time-24hr-format t)
  53. (setq display-time-day-and-date t)
  54. (display-time)

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

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

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


  71. ;; emacs all.el use
  72. (autoload 'all "all" nil t)

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

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

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

  84. ;; emacs gnuserv.el usage:
  85. (require 'gnuserv)
  86. (gnuserv-start)

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

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

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

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

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

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

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

  122. ;; emacs generic mode use:
  123. (require ' generic)
  124. (require ' generic-x)

  125. ;; emacs dired-signle mode use:
  126. (require 'dired-single)
复制代码

论坛徽章:
0
272 [报告]
发表于 2006-02-05 10:43 |只看该作者

请问谁有tab-display.el共享一下,网上的下不了

如题,谢谢

论坛徽章:
0
273 [报告]
发表于 2006-02-08 18:13 |只看该作者
原帖由 jerryfleming 于 2006-2-5 10:43 发表
如题,谢谢


http://www.damtp.cam.ac.uk/user/sje30/emacs/ell.html#t

论坛徽章:
12
辰龙
日期:2013-10-23 11:06:312015年迎新春徽章
日期:2015-03-04 09:50:28拜羊年徽章
日期:2015-03-03 16:15:43戌狗
日期:2014-12-22 14:49:17申猴
日期:2014-05-14 17:25:17狮子座
日期:2014-04-26 18:50:20双子座
日期:2014-04-04 12:32:31巨蟹座
日期:2014-03-13 00:04:36技术图书徽章
日期:2014-03-12 17:50:42白羊座
日期:2014-02-28 23:46:54丑牛
日期:2013-11-15 05:36:11CU十四周年纪念徽章
日期:2016-01-18 04:54:01
274 [报告]
发表于 2006-02-10 12:27 |只看该作者
原帖由 dozec 于 2005-8-24 20:26 发表
问一个憋脚问题:Emacs英文怎么读,是读/i'meks/嘛?
呵呵,问这种问题有点丢人~~~


不丢人,大家都是有这个过程


  1. /'i:m ae  ks/
  2.        ---            
  3.         ^
  4.          |
  5.       元音   单词“胖的”-fat, 那个字母a的发音
复制代码

[ 本帖最后由 kunson 于 2006-2-10 12:30 编辑 ]

论坛徽章:
0
275 [报告]
发表于 2006-02-14 20:02 |只看该作者
我在xp下面下载了 Emacs for Windows 的版本

问:怎样在windows下编译hello world啊。

怎样gcc 怎样make啊

上火

论坛徽章:
0
276 [报告]
发表于 2006-02-14 20:52 |只看该作者
我想在XP下学emacs,一点emacs知识都没有,有哪位好心人给我点资料,
给最白痴的看的那种,还点是中文的,谢谢
一下午了,连个hello world的编译都没调出来。

上火啊!

论坛徽章:
0
277 [报告]
发表于 2006-02-17 08:08 |只看该作者
原帖由 satan212 于 2006-2-14 04:52 发表
我想在XP下学emacs,一点emacs知识都没有,有哪位好心人给我点资料,
给最白痴的看的那种,还点是中文的,谢谢
一下午了,连个hello world的编译都没调出来。

上火啊!


emacs是文本编辑器,不是编译器。我们能够在emacs里面方便的调用外部编译器,但是你装了吗?

论坛徽章:
0
278 [报告]
发表于 2006-02-17 10:35 |只看该作者
不如改学 Lisp

论坛徽章:
0
279 [报告]
发表于 2006-02-18 21:35 |只看该作者

有哪位在emacs中设置过emacs face呀?


RT。 我在我自己的NTEMACS中根据说明设置了一个emacs face,但在重新启动时,无法正常使用。有什么方法能让它正常使用呢?

论坛徽章:
0
280 [报告]
发表于 2006-02-19 10:35 |只看该作者
原帖由 unixer2i 于 2006-2-18 21:35 发表

RT。 我在我自己的NTEMACS中根据说明设置了一个emacs face,但在重新启动时,无法正常使用。有什么方法能让它正常使用呢?


先看看你定义的 Face 是否被应用到文本上:

1. 把光标移到你认为是那个 Face 的文本上。
2. 按 M-: ,MiniBuffer 里会有 Eval: 的字样。
3. 输入 (text-properties-at (point)) RET 来检查文本属性是否是你需要的。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP