From mboxrd@z Thu Jan 1 00:00:00 1970 From: Haider Rizvi Subject: Re: Get links from Firefox/Safari into orgmode Date: Fri, 20 Jun 2014 14:05:17 -0400 Message-ID: References: <36ECB38A-86A2-40CB-98A5-D7C3ABEA963D@dfranke.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43901) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wy3C2-00008j-Qd for emacs-orgmode@gnu.org; Fri, 20 Jun 2014 14:05:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wy3Bt-00039z-Nn for emacs-orgmode@gnu.org; Fri, 20 Jun 2014 14:05:42 -0400 Received: from plane.gmane.org ([80.91.229.3]:41962) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wy3Bt-00038t-HL for emacs-orgmode@gnu.org; Fri, 20 Jun 2014 14:05:33 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Wy3Br-0005pM-H4 for emacs-orgmode@gnu.org; Fri, 20 Jun 2014 20:05:31 +0200 Received: from fw54.torolab.ibm.com ([199.246.40.54]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 20 Jun 2014 20:05:31 +0200 Received: from harizvi by fw54.torolab.ibm.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 20 Jun 2014 20:05:31 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Daniel Franke writes: > as the subject says, I would like to get links from any browser (i almost don’t care which > one) into org mode. Since you mention Safari, assume you are running on a Mac. Here is what you are looking for. ;;; setup org-mac-link-grabber (require 'org-mac-link) (add-hook 'org-mode-hook (lambda () (define-key org-mode-map (kbd "C-c g") 'org-mac-grab-link) )) Regards, -- Haider