(eww-add-bookmark): New command.
(eww-bookmark-mode): New mode and commands.
(eww-add-bookmark): Remove newlines from the title.
+ (eww-bookmark-browse): Don't bug out if it's the only window.
2013-06-26 Glenn Morris <rgm@gnu.org>
(let ((bookmark (get-text-property (line-beginning-position) 'eww-bookmark)))
(unless bookmark
(error "No bookmark on the current line"))
- (delete-window)
+ ;; We wish to leave this window, but if it's the only window here,
+ ;; just let it remain.
+ (ignore-errors
+ (delete-window))
(eww (plist-get bookmark :url))))
(defun eww-next-bookmark ()