From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Eddward DeVilla" Subject: Re: Installation on windows Date: Sun, 3 Feb 2008 10:12:10 -0600 Message-ID: References: <511f47f50802022115v75a478c5m27505fa2e82ef184@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JLhS5-0004T4-0W for emacs-orgmode@gnu.org; Sun, 03 Feb 2008 11:12:17 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JLhS3-0004Sg-JE for emacs-orgmode@gnu.org; Sun, 03 Feb 2008 11:12:15 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JLhS3-0004Sd-DK for emacs-orgmode@gnu.org; Sun, 03 Feb 2008 11:12:15 -0500 Received: from hs-out-0708.google.com ([64.233.178.250] helo=hs-out-2122.google.com) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JLhS3-00029w-GW for emacs-orgmode@gnu.org; Sun, 03 Feb 2008 11:12:15 -0500 Received: by hs-out-2122.google.com with SMTP id j58so1309560hsj.10 for ; Sun, 03 Feb 2008 08:12:10 -0800 (PST) In-Reply-To: <511f47f50802022115v75a478c5m27505fa2e82ef184@mail.gmail.com> Content-Disposition: inline List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: shirish Cc: emacs-orgmode@gnu.org I don't know of any install wizard for org-mode or any other emacs add on. What I did was create a directory to put emacs plugins. I added it to emacs's load-path by putting the following in my .emacs file. (I don't know where that file is in windows if you don't use cygwin.) ;; set up my own package directory (setq load-path (append (list nil "~/.emacs_packages") ;; make this any path you choose load-path)) I then download the latest org-mode zip file and unpack it in a temporary directory. I then copy the elisp files (*.el) in the top level into my package directory. It tend to be about 4 files. I don't copy the files out of the sub directories (like the xemacs stuff) because I haven't needed them. Lastly I added the follow once to the .emacs: ;; setup Org mode (add-to-list 'auto-mode-alist '("\\.org$" . org-mode)) ; to make emacs recognize org files (define-key global-map "\C-cl" 'org-store-link) ; (optional) to store links in non-org-mode buffers/files (define-key global-map "\C-ca" 'org-agenda) ; (optional) to open an agenda buffer from anywhere (add-hook 'org-mode-hook 'turn-on-font-lock) ; org-mode requires font-lock (require 'org-install) When you upgrade, just copy in the new .el files into you package directory. I generally don't compile. I've only needed to compile when I was using huge tables that I needed to manipulate. Edd On Feb 2, 2008 11:15 PM, shirish wrote: > Hi all, > Isn't there a simple executable or someway I can install orgmode > in Emacs 22.1 on windows? Why do I need to do all that as given in the > org.pdf file? And how do I do the compiling in Windows? I'm sure I'm > not the first one to ask around so if there have been any discussions > before please point me to them. > -- > Regards, > Shirish Agarwal > This email is licensed under http://creativecommons.org/licenses/by-nc/3.0/ > > 065C 6D79 A68C E7EA 52B3 8D70 950D 53FB 729A 8B17 > > > _______________________________________________ > Emacs-orgmode mailing list > Remember: use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode >