emacs如何实现grep?

时间:2012-03-09 03:07:41

标签: emacs grep

当emacs执行grep时,它可以拆分窗口并显示一个漂亮的缓冲区,而Emacs有这个函数(grep args),我想知道,我怎样才能获得源代码?

1 个答案:

答案 0 :(得分:5)

Emacs执行外部grep进程,并格式化输出。假设你的意思是包装它的代码的来源并显示它,而不是grep本身,这很简单:

M-x find-function <RET> grep <RET>

(find-function FUNCTION)

Find the definition of the FUNCTION near point.

Finds the source file containing the definition of the function
near point (selected by `function-called-at-point') in a buffer and
places point before the definition.
Set mark before moving, if the buffer already existed.

您可能还会发现find-library非常有用。