From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Holst Subject: Re: Open PDF under Windows on specific page using PDF-XChange Viewer Date: Tue, 19 Mar 2013 11:32:26 +0100 Message-ID: References: <2047181.TCzP6MzcPz@linux-ik7b.site> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:50327) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UHtw7-0007tn-Ag for emacs-orgmode@gnu.org; Tue, 19 Mar 2013 06:38:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UHtw6-00071E-6R for emacs-orgmode@gnu.org; Tue, 19 Mar 2013 06:38:31 -0400 Received: from imta21.fe.bosch.de ([139.15.243.226]:50648) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UHtw6-000710-0t for emacs-orgmode@gnu.org; Tue, 19 Mar 2013 06:38:30 -0400 Received: from smtp6-v.fe.bosch.de (imta24.fe.bosch.de [139.15.243.27]) by imta21.fe.bosch.de (Postfix) with ESMTP id DDE82C05AB for ; Tue, 19 Mar 2013 11:32:43 +0100 (CET) In-Reply-To: <2047181.TCzP6MzcPz@linux-ik7b.site> (alexander.willand@t-online.de's message of "Tue, 19 Mar 2013 11:11:22 +0100") 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: AW Cc: OrgMode ML Hello Alexander, =B7 AW wrote: > [... snip ...] > #+begin_source lisp > (delete '("\\.pdf\\'" . default) org-file-apps) > (add-to-list 'org-file-apps '("\\.pdf::\\([0-9]+\\)\\'" > . "PDFXCview /A 'page'=3D%1 \"%s\" ")) > #+end_source for me the following works under Win7: #+begin_src emacs-lisp (add-to-list 'org-file-apps '("\\.pdf::\\([0-9]+\\)\\'" . "\"C:/Program Files (x86)/Adobe/Acrobat 10.0/Acrobat/Acrobat.exe\" /A page=3D%1 %s")=20 #+end_src (Without line break in the string) I think Win7 chokes on single quotes. HTH --=20 Bis neulich ... Thomas