help-guix
[Top][All Lists]
Advanced

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

Re: invoking info guix


From: Oleg Pykhalov
Subject: Re: invoking info guix
Date: Sat, 17 Mar 2018 11:57:00 +0300
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux)

Hello Catonano,

Catonano <address@hidden> writes:

[…]

> In Emacs I can do
>
> M-x info
>
> but then I find myself in a general page, a sort of index and I have to
> search through it in order to find the guix "link"
>
> How can I end up in the Guix manual front page directly even when using
> Emacs ?

Personally I press ‘m’ then type ‘guix’ and ‘RET’.  But if it not enough
you could bind e.g. to ‘<f6>’ with:

    (global-set-key (kbd "<f6>") (lambda ()
                                   (interactive)
                                   (Info-goto-node "(guix)")))

or with ability to call ‘M-x Info-goto-node-guix’ and ‘<f6>’:

    (defun Info-goto-node-guix ()
      (interactive)
      (Info-goto-node "(guix)"))

    (global-set-key (kbd "<f6>") 'Info-goto-node-guix)

Both last variants don't require ‘M-x info’.

Oleg.

Attachment: signature.asc
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]