Hi Maxim, On Sat, 14 Oct 2023 at 12:11, Maxim Cournoyer <maxim.courno...@gmail.com> wrote:
> Not to preach, but I've spent some time looking at 'info info' once and > I'm sold to it now. I basically use these keys: 'g' to navigate to > nodes, 'm' to select a menu, 'space' to page down and 'backspace' to > page up. Yeah the tutorial is really good! Well, I did it several times over the past 10 years and, as I said, my muscle memory has hard time with keybindings. Hum, let try once again. :-) Well, I added this to my configuration: --8<---------------cut here---------------start------------->8--- (define-key Info-mode-map (kbd "W") #'(lambda () "Stash the current node name as URL for online manual." (interactive) (Info-copy-current-node-name) (let* ((node (pop kill-ring)) (that (if (string-match "(\\([[:alnum:]]+\\)) \\(.*\\)" node) (if (string= "guix" (match-string 1 node)) (concat "https://guix.gnu.org/manual/devel/en/guix.html#" (replace-regexp-in-string " " "-" (match-string 2 node))) node) node))) (kill-new that) (message "%s" that)))) --8<---------------cut here---------------end--------------->8--- Let see if I use it. ;-) Cheers, simon