免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2800 | 回复: 0
打印 上一主题 下一主题

hacking php-mode.el for emacs [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-06-09 00:13 |只看该作者 |倒序浏览
hacking 后的 php-mode.el  
支持 const  __FILE__, __LINE__, __CLASS__,  __FUNCTION__ 高亮
Patch against PHP-mode.el v1.2.0 来自
http://atomized.org/2007/02/hacking-on-php-modeel/

;; 正文: 在 ~/.emacs 中加入下面的内容
;;_+ php-mode
(require 'php-mode)

(define-key php-mode-map
  [menu-bar php php-debug]
  '("PHP Debug" . php-debug))

(defun php-debug ()
  (interactive)
  (shell-command
   (concat "E:/AppServ/php5/php.exe -l \""
           (buffer-file-name)
           "\"")))

(define-key php-mode-map
  [menu-bar php php-run]
  '("Run PHP" . php-run))

(defun php-run ()
  (interactive)
  (shell-command
   (concat "E:/AppServ/php5/php.exe -q \""
           (buffer-file-name)
           "\"")))

(defun my-php-mode()
  ;; 将回车代替C-j的功能,换行的同时对齐
  (define-key php-mode-map [return] 'newline-and-indent)
  (define-key php-mode-map [(control c) (r)] 'php-run)
  (define-key php-mode-map [(control c) (d)] 'php-debug)
  (interactive)
  ;; 设置php程序的对齐风格
  (c-set-style "K&R")
  ;; 自动模式,在此种模式下当你键入{时,会自动根据你设置的对齐风格对齐
  ;;(c-toggle-auto-state)
  ;; 此模式下,当按Backspace时会删除最多的空格
  (c-toggle-hungry-state)
  ;; TAB键的宽度设置为4
  (setq c-basic-offset 4)
  ;; 在菜单中加入当前Buffer的函数索引
  (imenu-add-menubar-index)
  ;; 在状态条上显示当前光标在哪个函数体内部
  (which-function-mode))

(add-hook 'php-mode-hook 'my-php-mode)

emacs-php.jpg (34.34 KB, 下载次数: 82)

emacs-php.jpg

php-mode.rar

41.9 KB, 下载次数: 84

您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP