From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: Bringing the Neovim package up to date Date: Wed, 12 Sep 2018 19:23:51 +0200 Message-ID: <878t467hp4.fsf@gnu.org> References: <33416237.peXBRamUYO@aleksandar-ixtreme-m5740> <87d0tlh71l.fsf@gnu.org> <3517986.spaqn1PHyG@aleksandar-ixtreme-m5740> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38221) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g08s3-0003BK-Nk for guix-devel@gnu.org; Wed, 12 Sep 2018 13:24:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g08rw-00037v-KB for guix-devel@gnu.org; Wed, 12 Sep 2018 13:24:02 -0400 In-Reply-To: <3517986.spaqn1PHyG@aleksandar-ixtreme-m5740> (HiPhish's message of "Tue, 11 Sep 2018 13:12:13 +0200") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: HiPhish Cc: guix-devel@gnu.org Hello, HiPhish skribis: > Is there a way to get the module from a REPL? I can run a REPL in my edit= or,=20 > that's the crutch I have been using so far. (IMO tying the readability of= the=20 > source code to the development environment is a bad idea, that's what IDE= s=20 > always end up doing) >From the REPL you can use the =E2=80=9Capropos=E2=80=9D command: scheme@(guile-user)> ,apropos mkdir (guile): mkdir # (guix build utils): mkdir-p # But for Guix, you can always run =E2=80=9C./pre-inst-env guile=E2=80=9D to = open a REPL in the context of Guix (or run =E2=80=9Cguix repl=E2=80=9D), and there you = can =E2=80=9Cget into a module=E2=80=9D like this: ,m (gnu packages base) HTH! Ludo=E2=80=99.