Protesilaos Stavrou writes: > Hello again! > > Please find attached the patch which implements a renaming scheme for > EWW buffers. Thanks. > I include Abhiseck, the co-author of this patch, in Cc. > > What do you think? > > We had entertained the notion of a single defcustom with more options, > but ultimately decided against it on the grounds that it was more > complex. > > -- > Protesilaos Stavrou > https://protesilaos.com > @@ -556,6 +580,8 @@ (defun eww-render (status url &optional point buffer encode) > + (and eww-auto-rename-buffer-flag > + (funcall eww-auto-rename-buffer-function)) > (run-hooks 'eww-after-render-hook))) With your patch, the buffer isn't renamed if the user presses "l" or "r" to go backward and forward in history. I suggest calling your rename function from 'eww-update-header-line-format' instead. Best regards.