From mboxrd@z Thu Jan 1 00:00:00 1970 From: Giovanni Ridolfi Subject: Re: How to integrate org-mode in a MS Windows-/Office-based environment? Date: Fri, 13 Jul 2012 09:35:01 +0100 (BST) Message-ID: <1342168501.87150.YahooMailNeo@web29804.mail.ird.yahoo.com> References: Reply-To: Giovanni Ridolfi 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]:49423) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SpbLD-0007w8-Ql for emacs-orgmode@gnu.org; Fri, 13 Jul 2012 04:35:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SpbL5-0005kq-Pr for emacs-orgmode@gnu.org; Fri, 13 Jul 2012 04:35:11 -0400 Received: from nm21.bullet.mail.ird.yahoo.com ([212.82.108.136]:45611) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1SpbL5-0005f0-D6 for emacs-orgmode@gnu.org; Fri, 13 Jul 2012 04:35:03 -0400 In-Reply-To: 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: M , "emacs-orgmode@gnu.org" Cc: Mikhail Titov Da: M =0AInviato: Gioved=EC 12 Luglio 2012 23:06=0A=0A> I= 'd like to=0A> know how you integrate org-mode in your work on MS Windows.= =0A=0AHi Martin,=0A=0AI use Org in a Windows 7 environment too.=0A=0ARegard= ing he interaction with collegues, (as Russel have already suggested) =0AI = write my reports in=A0 Org, then export to HTML with the proper stilesheet = and then open in word=0Afor the last editing.=0AIf I had installed LibreOff= ice my life'd have been a lot easier (hint, hint ;)=0A=0AIn Org I can open = dired link to pdf files (clicking o them), but I haven't yet managed =0Ato = open links to word and excel files.=0A=0AIn my home directory I have a .mai= lcap file:=0A---------------------------------=0Aapplication/pdf;=A0 "C:/Pr= ogram Files (x86)/Adobe/Reader 10.0/Reader/AcroRd32.exe" %s=0Aa plic tion/w= rd; "C:/Program Files (x86)/Microsoft Office/Office12/win ord.exe" %s=A0= =A0=A0 <- DOES NOT WORK and certain letters are missing.=0A----------------= ----------=0A=0ALike Mikhail pointed out dired is really useful and=0AI use= Dired extensively; it can also resolve addresses through the Intranet =0Ae= valuating expressions like:=0A=0A(dired-at-point "//Server1/everybody/my-di= r")=0A=0AI also open the files with the appropriate program (excel, word, r= eader..) in the Dired buffer=0Apressing F3, having the following=A0 code in= my .emacs:=0A=0A;; Dired =0A;=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A(setq delete-by= -moving-to-trash t)=0A;;; Open files with i.e.=0A; http://stackoverflow.com= /questions/2284319/opening-files-with-default-windows-application-from-with= in-emacs=0A(defun w32-browser (doc) (w32-shell-execute 1 doc))=0A=0A(eval-a= fter-load "dired" '(define-key dired-mode-map [f3] (lambda () (interactive)= (w32-browser (dired-replace-in-string "/" "\\" (dired-get-filename))))))= =0A=0Acheers,=0AGiovanni=0A