作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用 helm
作为 display-completion-list
的直接替代品。唯一的问题是它在顶部显示这一行,这是我不想要的:
C-z:我不想在此处添加此行(保持 session )
。
下面是用于说明的代码:
(helm :sources `((name . "Do you have?")
(candidates . ("Red Leicester"
"Tilsit"
"Caerphilly"
"Bel Paese"
"Red Windsor"
"Stilton"))
(action . identity)
(persistent-help . "I don't want this line here"))
:buffer "*cheese shop*")
我尝试将persistent-help
设置为nil,或者根本不设置它,但它仍然出现。我怎样才能将其关闭?
最佳答案
属性 helm-persistent-help-string
随库 helm-plugin
一起提供。如果不加载它,您将得不到帮助字符串。如果您出于某种原因需要加载 helm-plugin
,您可以通过以下方式禁用 helm-persistent-help-string
功能:
(defadvice helm-persistent-help-string (around avoid-help-message activate)
"Avoid help message"
)
如果你想完全删除灰色标题行,你可以这样做:
(defadvice helm-display-mode-line (after undisplay-header activate)
(setq header-line-format nil))
使用 defadvice
,您可以全局更改 helm
的行为。如果您想暂时更改 helm-display-mode-line
来执行 helm
命令,您可以使用:
(defmacro save-function (func &rest body)
"Save the definition of func in symbol ad-func and execute body like `progn'
Afterwards the old definition of func is restored."
`(let ((ad-func (if (autoloadp (symbol-function ',func)) (autoload-do-load (symbol-function ',func)) (symbol-function ',func))))
(unwind-protect
(progn
,@body
)
(fset ',func ad-func)
)))
(save-function helm-display-mode-line
(fset 'helm-display-mode-line '(lambda (source)
(apply ad-func (list source))
(setq header-line-format nil)))
(helm :sources `((name . "Do you have?")
(candidates . ("Red Leicester"
"Tilsit"
"Caerphilly"
"Bel Paese"
"Red Windsor"
"Stilton"))
(action . identity)
(persistent-help . "I don't want this line here"))
:buffer "*cheese shop*"))
(请注意,像 cl-flet
这样的东西不能以这种方式工作。)
关于Emacs Helm 完成 : how to turn off persistent-help_line?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19949212/
我想使用 helm 作为 display-completion-list 的直接替代品。唯一的问题是它在顶部显示这一行,这是我不想要的: C-z:我不想在此处添加此行(保持 session )。 下面
我是一名优秀的程序员,十分优秀!