gpt4 book ai didi

php - php 文件标题行中的 Emacs php-mode : Removing duplicate
转载 作者:太空宇宙 更新时间:2023-11-03 18:48:50 25 4
gpt4 key购买 nike

我使用 emacs php-mode.el 和 php-electric.el。我想摆脱重复的 <?php覆盖显示在任何 php 文件的顶部。

额外的<?php实际上不在文件中,而是 emacs 添加的半透明视觉覆盖。我做了一些研究,我认为改变它可能涉及 emacs lisp header-line-format多变的。但是我在 php-mode 的任何地方都找不到。

也找不到任何关于人们删除额外 <?php 的帖子.感谢您的帮助!

最佳答案

想通了。将 (header-line-format 0) 添加到我的 .emacs 中的 php-mode Hook 中就可以了。所以总的来说它看起来像:

(autoload 'php-mode "php-mode" "Major mode for editing php scripts." t)
(setq auto-mode-alist (cons '(".php$" . php-mode) auto-mode-alist))
(require 'php-mode)
(load-file "~/.emacs.d/emacs_includes/plugins/php-mode/php-electric.el")
(add-hook 'php-mode-hook
'(lambda ()
(define-abbrev php-mode-abbrev-table "ex" "extends")
(define-key php-mode-map '[M-S-up] 'flymake-goto-prev-error)
(define-key php-mode-map '[M-S-down] 'flymake-goto-next-error)
(require 'php-electric)
(php-electric-mode t)
(tabbar-local-mode 1)
(header-line-format 0)
(semantic-show-unmatched-syntax-mode 0)
))

关于php - php 文件标题行中的 Emacs php-mode : Removing duplicate <? php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2057141/

25 4 0

Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com