ftnk.jp -> ~fumi -> ChangeLog -> 2003-05 -> 2003-05-15

前の日 / 次の日 / 最新 / 2003-05

2003-05 / 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

2003-05-15 Thu

[別の年の同じ日: 2004 2006 2007 2008 2009 2010

Momonga 再インストール [Momonga] はてぶ

Momonga のインストールは,
http://www.momonga-linux.org/test/INSTALL 通りに.

URL を Mozilla のタブで開く [Emacs] はてぶ

http://www.emacswiki.org/cgi-bin/wiki.pl より.

(defun browse-url-mozilla-new-tab (url &optional new-window)
  ;; new-window ignored
  "Open URL in a new tab in Mozilla."
  (interactive (browse-url-interactive-arg "URL: "))
  (unless
      (string= "" 
               (shell-command-to-string 
                (concat "mozilla -remote 'openURL(" url ",new-tab)'")))
    (message "Starting Mozilla...")
    (start-process (concat "mozilla " url) nil "mozilla" url)
    (message "Starting Mozilla...done")))

(setq browse-url-browser-function 'browse-url-mozilla-new-tab)