微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

从Windows上的Emacs中的“grep-find”运行时,ack不起作用

我正在尝试使用 ack-grep作为Windows上Emacs中grep查找的替代品,但是ack-grep立即(成功)退出而不打印任何匹配项.我已经尝试了几乎所有可能的命令行参数组合到ack-grep,但似乎没有任何效果.

M-x grep-find

输入“ack html”以搜索包含“html”的文件. Ack立刻退出,什么都不打印:

-*- mode: grep; default-directory: "c:/" -*-
Grep started at Tue Feb 23 23:50:52

ack html

Grep finished (matches found) at Tue Feb 23 23:50:52

在cmd.exe中执行相同的命令“ack html”工作正常(显示包含字符串“html”的许多各种文件).

有任何想法吗?

解决方法

当在Windows下的Emacs下运行ack时,我发现它有时会混淆它是应该搜索文件还是从STDIN读取.这是我用来调用ack的函数(使用M-x ack).你可以把它放在.emacs中.

(defvar ack-command "ack --nogroup --nocolor ")
(defvar ack-history nil)
(defvar ack-host-defaults-alist nil)
(defun ack ()
  "Like grep,but using ack-command as the default"
  (interactive)
  ; Make sure grep has been initialized
  (if (>= emacs-major-version 22)
      (require 'grep)
    (require 'compile))
  ; Close STDIN to keep ack from going into filter mode
  (let ((null-device (format "< %s" null-device))
        (grep-command ack-command)
        (grep-history ack-history)
        (grep-host-defaults-alist ack-host-defaults-alist))
    (call-interactively 'grep)
    (setq ack-history             grep-history
          ack-host-defaults-alist grep-host-defaults-alist)))

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐