[Date Prev] [Date Index] [Date Next]
[Thread Prev] [Thread Index] [Thread Next]

[xyzzy:08995] Re: xgrepでサブディレクトリ検索



山本さん。こんばんは。
西口と申します。
もう解決したようですが、参考までに私のxgrepはこんな感じです。

(defun xgrep (pattern directory files subdirp)
  "subdirpが'nil'以外ならサブディレクトリも"
  (interactive "sgrep: \nDdirectory: \nsfiles: \nssubdir? " :history0  'search :default2 "*.*" :default3 "nil")
  (require "grepd")
  (let ((ed::*grep-case-fold-search* nil)
	(ed::*grep-regexp-search* t)
	(ed::*grep-subdir* (not (string= subdirp "nil")))
	(ed::*grep-name-only* nil))
    (ed::scan-files pattern (split-string files #\; t " ") directory)))



On Sun, 18 Apr 2004 16:08:50 +0200
Naruo Yamamoto <naruoy@xxxxxxx> wrote:

> 皆さんこんばんは。山本と申します。
> 
> 亀井さんが [ML843] で作ってくださった xgrep について質問いたします。この
> 機能はドイツ語の発音記号など特殊文字の検索に重宝しておるのですが、grep-
> dialog のようにサブディレクトリの検索もできるのでしょうか? 
> 
> 亀井さん、またはご存知の方で教えていただければ多幸に存じます。
> 
> 山本成生 (naruoy@xxxxxxx)
> 
> 
> 

*-------------------------------------*
Yoshitaka Nishiguti 
mail: pocari@xxxxxxxxxxxxxxx
*-------------------------------------*

Index Home