diff --git a/org-contrib/org-mac-link.org b/org-contrib/org-mac-link.org index 3f58616..1cc0f21 100644 --- a/org-contrib/org-mac-link.org +++ b/org-contrib/org-mac-link.org @@ -1,4 +1,4 @@ -#+TITLE: org-mac-link-grabber.el -- Grab links from open Mac applications +#+TITLE: org-mac-link.el -- Grab links from open Mac applications #+OPTIONS: ^:{} author:nil #+STARTUP: odd @@ -17,7 +17,7 @@ - Mail.app - Address Book.app - Safari.app - - Skim.app [fn:: Supported in the latest version from Git] + - Skim.app [fn:: Supported in the latest version from Git] - Firefox.app - Firefox.app with the Vimperator plugin - Google Chrome.app @@ -26,26 +26,26 @@ * Installation Customize the org group by typing =M-x customize-group RET org RET=, then - expand the /Modules/ section, and enable =mac-link-grabber=. + expand the /Modules/ section, and enable =mac-link=. You may also optionally bind a key to activate the link grabber menu, like this: : (add-hook 'org-mode-hook (lambda () - : (define-key org-mode-map (kbd "C-c g") 'omlg-grab-link))) + : (define-key org-mode-map (kbd "C-c g") 'org-mac-grab-link))) -* Usage +* Usage - Activate the grabber by typing =C-c g= (or whatever key you decided - to bind, as above), or type =M-x omlg-grab-link RET=. This will give - you a menu in the modeline allowing you to select an application. - The current selection in that application will be inserted at point - as a hyperlink in your org-mode document. + Activate the grabber by typing =C-c g= (or whatever key you decided to bind, + as above), or type =M-x org-mac-grab-link RET=. This will give you a menu in + the modeline allowing you to select an application. The current selection in + that application will be inserted at point as a hyperlink in your org-mode + document. * Customizing - You may customize which applications appear in the grab menu by - customizing the group /org-mac-link-grabber/. Changes take effect - immediately. If you are using the latest org-mode from Git, you can - also customize whether the =org-mac-link-grabber= should highlight - the selected text when grabbing the link from Skim.app. + You may customize which applications appear in the grab menu by customizing + the group /org-mac-link/. Changes take effect immediately. If you are using + the latest org-mode from Git, you can also customize whether the + =org-mac-link= should highlight the selected text when grabbing the link from + Skim.app. diff --git a/org-mac.org b/org-mac.org index 074a85e..2015e02 100644 --- a/org-mac.org +++ b/org-mac.org @@ -28,7 +28,7 @@ applications other than Emacs... ** [[file:org-contrib/org-mac-iCal.org][org-mac-iCal]] -- import OS X iCal.app events into Emacs diary Written by /Christopher Suckling/. -** [[file:org-contrib/org-mac-link-grabber.org][org-mac-link-grabber]] -- Hyperlink to items in mac applications +** [[file:org-contrib/org-mac-link.org][org-mac-link]] -- Hyperlink to items in mac applications grab the current link or selection from an open mac application and insert it as a hyperlink at point in an org-mode document. Written by /Anthony Lander/.