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

Re: FEATURE WISH: optionally put URL into bookmarks



Hi,

>> On 1 Mar 2003 18:31:44 +0100
>> ino-qc@spotteswoode.de.eu.org ("Clemens Fischer") said as follows:

>this isn't about a bug, but i find myself regularly looking for
>sitenames instead of page titles, because the majority of page titles
>is meaningless (like "cgi" or "index.php" or "this fabulous
>frobnicative inspeculum"), but the URL contains a recognizable spot.
>also, there are times when i want to go to a certain mirror, but with
>bookmarks to identical sites beeing identical, i sometimes go about
>deleting one of the bookmarks i think to be duplicates.
>differentiating URLs would clear this up.

Could you try the following expression?

(defadvice w3m-bookmark-add (before add-url-to-title activate compile)
  "Add URL to TITLE."
  (setq title (if title
                  (concat title " (" url ")")
                url)))

-- 
TSUCHIYA Masatoshi