From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/58174 Path: main.gmane.org!not-for-mail From: Yo Merito Newsgroups: gmane.emacs.gnus.general Subject: Re: browse-url Date: Wed, 28 Jul 2004 18:38:56 -0500 Sender: ding-owner@lists.math.uh.edu Message-ID: References: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1091107334 20602 80.91.224.253 (29 Jul 2004 13:22:14 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 29 Jul 2004 13:22:14 +0000 (UTC) Original-X-From: ding-owner+M6715@lists.math.uh.edu Thu Jul 29 15:22:01 2004 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BqArA-0001sI-00 for ; Thu, 29 Jul 2004 15:22:00 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1BqApg-0008QK-00; Thu, 29 Jul 2004 08:20:28 -0500 Original-Received: from util2.math.uh.edu ([129.7.128.23]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1BpyCh-0007OR-00 for ding@lists.math.uh.edu; Wed, 28 Jul 2004 18:51:23 -0500 Original-Received: from justine.libertine.org ([66.139.78.221] ident=postfix) by util2.math.uh.edu with esmtp (Exim 4.30) id 1BpyCh-00081e-4T for ding@lists.math.uh.edu; Wed, 28 Jul 2004 18:51:23 -0500 Original-Received: from main.gmane.org (main.gmane.org [80.91.224.249]) by justine.libertine.org (Postfix) with ESMTP id CD47E3A003E for ; Wed, 28 Jul 2004 18:51:21 -0500 (CDT) Original-Received: from root by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1BpyCc-0006QG-00 for ; Thu, 29 Jul 2004 01:51:19 +0200 Original-Received: from aluxe.matcuer.unam.mx ([132.248.41.2]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 29 Jul 2004 01:51:18 +0200 Original-Received: from yomerito by aluxe.matcuer.unam.mx with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 29 Jul 2004 01:51:18 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-To: ding@gnus.org Original-Lines: 25 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: aluxe.matcuer.unam.mx User-Agent: Gnus/5.110002 (No Gnus v0.2) Emacs/21.3 (gnu/linux) Cancel-Lock: sha1:G6o7HtWjlmfoQzOMKqFVnwvEl8I= Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:58174 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:58174 Harry Putnam writes: > How can I arrange things so that I get the clicked url in a mozilla > tab? this works for me... ;; From: Jesper Harder (harder@myrealbox.com) ;; Subject: Re: browse-url-mozilla in new tab ;; Newsgroups: gnu.emacs.gnus ;; Date: 2002-09-28 13:14:15 PST (setq browse-url-browser-function 'browse-url-mozilla-new-tab) (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") ))