nrw.social ist einer von vielen unabhängigen Mastodon-Servern, mit dem du dich im Fediverse beteiligen kannst.
Wir sind eine freundliche Mastodon Instanz aus Nordrhein-Westfalen. Ob NRW'ler oder NRW-Sympathifanten, jeder ist hier willkommen.

Serverstatistik:

2,8 Tsd.
aktive Profile

#emacs doesn't ship a goto-line function. M-x apropos goto-line shows several implementations. But I was surprised to see avy's implementation github.com/abo-abo/avy/blob/93

@PuercoPop
I'm not sure about the rest, but in case of avy I feel it is justified. With goto-line you need to know the exact line number which may be problematic if line numbering is turned off.

That being said I only use avy-goto-char-timer for jumping.

@HaraldKi

@PuercoPop Correct, because using goto-line in a Lisp program is not the right thing. goto-char/forward-line is the preferred method there.

All the implementations you cited are exactly that .. for use in Lisp code (and not interactive usage).

@HaraldKi