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

Re: mark a page as read



I don't think it is necessary to add to official key bind, but you can bind
it like this.

(defun my-w3m-mark-page-as-read (url)
  (interactive
   (list (w3m-input-url)))
  (w3m-arrived-add url)
  (w3m-redisplay-this-page))

(add-hook 'w3m-mode-hook
	  '(lambda ()
	     (define-key w3m-mode-map <any key you like> 'my-w3m-mark-page-as-read)))

jidanni@xxxxxxxxxxx writes:

> Please add a key binding to be able to mark a link in the "already
> read" color, without needing to browse that link. I.e.,
>   face (w3m-anchor) ->face (w3m-arrived-anchor)
> It would use w3m-arrived-add and w3m-redisplay-this-page or something.