From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Martin Newsgroups: gmane.emacs.help Subject: Re: indexing files? Date: Wed, 19 Mar 2014 19:27:58 +0100 Message-ID: <87bnx23uxd.fsf@gmx.at> References: <2539e4e4-66fe-4f04-9330-12b9958da35b@googlegroups.com> <87d2hiy8nh.fsf@gmx.at> <87zjkmmr9k.fsf@web.de> <87d2hi3w6j.fsf@gmx.at> <87y50659s1.fsf@web.de> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1395253703 29885 80.91.229.3 (19 Mar 2014 18:28:23 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 19 Mar 2014 18:28:23 +0000 (UTC) To: "emacs" Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Mar 19 19:28:30 2014 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1WQLE3-0002WM-PL for geh-help-gnu-emacs@m.gmane.org; Wed, 19 Mar 2014 19:28:27 +0100 Original-Received: from localhost ([::1]:43167 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WQLE3-0002hn-D2 for geh-help-gnu-emacs@m.gmane.org; Wed, 19 Mar 2014 14:28:27 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:59771) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WQLDl-0002h9-3Z for help-gnu-emacs@gnu.org; Wed, 19 Mar 2014 14:28:16 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WQLDd-0001ib-95 for help-gnu-emacs@gnu.org; Wed, 19 Mar 2014 14:28:09 -0400 Original-Received: from mout.gmx.net ([212.227.15.15]:52897) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WQLDc-0001gT-R8 for help-gnu-emacs@gnu.org; Wed, 19 Mar 2014 14:28:01 -0400 Original-Received: from martin-desktop ([213.240.107.73]) by mail.gmx.com (mrgmx001) with ESMTPSA (Nemesis) id 0MNZgw-1WT7RN1UyY-007AkS for ; Wed, 19 Mar 2014 19:27:59 +0100 User-agent: mu4e 0.9.9.5; emacs 24.3.1 In-reply-to: <87y50659s1.fsf@web.de> X-Provags-ID: V03:K0:C45K9tjrEy0Qsy8vmpXrVWGMX3MGGC8Er6HJSzlr7ni4WkCgxFx RAqmy3rDk/sJLKbczSutbzUFdxfP9inF35rVkztS696bEuBZ4tE6W72ziNprdkW3PN/b4Vy T48pFkYZdpLulb0CDpvzU4DbM23oeLw3xzCU3Vp1kjNJvkPixYr/Y4x61SG0HMgqrql+RJq hC8C5DtvA7jeaJkExYN9w== X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] X-Received-From: 212.227.15.15 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:96634 Archived-At: Michael Heerdegen writes: > When invoking `helm-recoll', you must at first select a source with RET > (even when there's only one), and after that you can enter a search > pattern. Did you do that? Please give me a recipe with your > settings and what exactly you did. I finally found it: We need to set the sources. Now my config in my init.el is: ;; recoll (require 'helm-recoll) (helm-recoll-create-source "main" "~/.recoll") (helm :sources '(helm-source-recoll-main)) (global-set-key "\C-cs" 'helm-recoll-main) This finally seems to work fine. Before doing the (helm :sources ....) line RET ended up with doing noting after inserting the quere. Thanks for your help. Martin - and I should start to read the comments in the .el files I download via elpa, so I understand more about that. :)