From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Andrea Crotti Newsgroups: gmane.emacs.help Subject: finding files not visited Date: Wed, 14 Sep 2011 12:10:29 +0100 Message-ID: <4E708BA5.7060206@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1315998890 21021 80.91.229.12 (14 Sep 2011 11:14:50 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 14 Sep 2011 11:14:50 +0000 (UTC) To: GNU Emacs List Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Sep 14 13:14:45 2011 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1R3nQS-0004Jp-Ug for geh-help-gnu-emacs@m.gmane.org; Wed, 14 Sep 2011 13:14:45 +0200 Original-Received: from localhost ([::1]:58188 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R3nQS-0003pH-BM for geh-help-gnu-emacs@m.gmane.org; Wed, 14 Sep 2011 07:14:44 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:48882) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R3nQN-0003ny-Un for help-gnu-emacs@gnu.org; Wed, 14 Sep 2011 07:14:40 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R3nQM-0001os-Qa for help-gnu-emacs@gnu.org; Wed, 14 Sep 2011 07:14:39 -0400 Original-Received: from mail-wy0-f169.google.com ([74.125.82.169]:37879) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R3nQM-0001oF-MG for help-gnu-emacs@gnu.org; Wed, 14 Sep 2011 07:14:38 -0400 Original-Received: by wyi11 with SMTP id 11so1652388wyi.0 for ; Wed, 14 Sep 2011 04:14:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; bh=cpSkZNkf/ZbADFqAnkwqXxPw+5S3cIgg7Vori2uKs3Y=; b=Ip5SsfThYaIjxls0skquQLsMn/8ph9vNv1NBrHpKBWYlxadbvW3n1JUIarnfXbK8r+ hDKq5VVTtsbVilx55CXp5aKNOE90hGziTLyw4Kw7oKAJpvZsTpCaKGQoX5qiR/IumBRt 24n0lcLF9oiOqKP6quljS42g5uqjPxNhLQ7+k= Original-Received: by 10.216.221.162 with SMTP id r34mr2070116wep.24.1315998877249; Wed, 14 Sep 2011 04:14:37 -0700 (PDT) Original-Received: from [10.0.0.149] (mail2.xype.com. [87.194.167.167]) by mx.google.com with ESMTPS id z18sm3667169wbm.22.2011.09.14.04.14.35 (version=SSLv3 cipher=OTHER); Wed, 14 Sep 2011 04:14:36 -0700 (PDT) User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:6.0.2) Gecko/20110906 Thunderbird/6.0.2 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 74.125.82.169 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:82221 Archived-At: I'm working on a code-base (python) which is very nested, in a Java-like style, and there are really thousands of files. I would like to access easily to files even if they are not visited yet. My idea is that if I am on path X on disk pressing C-x C-f would show me first the current files, then writing something which is not found could look for (with find for example) in the subdirectories to find the file that I wanted. Is it possible to achieve something like this? Thanks, Andrea