emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Orgmode] Upgrading org-mode--Windows


From: Eddward DeVilla
Subject: Re: [Orgmode] Upgrading org-mode--Windows
Date: Tue, 23 Oct 2007 10:02:23 -0500

You will need to install your own copy.  I'm not sure the way I do it
is the best, but it's easy.  First you will need to download the
latest org-mode and unpack it in some temp directory.

    Next you will have to determine when you want you're copy to go.
On windows, I run emacs under cygwin, and I put a .emacs_packages
directory in my home directory where I put my addons.  You can use any
directory so pick something that works for how you organize things.

    Once you have you directory, copy all the .el files from the
unpacked org archive into it.  This will probably be org-install.el,
org-mouse.el,  org-publish.el  & org.el.

    Now you need to tell emacs to load files from you directory.  I
have the following in my .emacs.  Modify as needed.
    ;; set up my own package directory
    (setq load-path
          (append (list nil "~/.emacs_packages")
                  load-path))

The rest of what I have may not be needed by you.
    (add-to-list 'auto-mode-alist '("\\.org$" . org-mode))
    (define-key global-map "\C-cl" 'org-store-link)
    (define-key global-map "\C-ca" 'org-agenda)
    (add-hook 'org-mode-hook 'turn-on-font-lock)  ; org-mode buffers only
    (require 'org-install)

After this is in place you can start emacs, open on org-buffer and do
M-x org-version to verify what you are running.  I just noticed that I
append to the load-path.  You may need to put you directory on the
front of the list.

Edd

On 10/22/07, Michael Dixon <address@hidden> wrote:
> I apologize in advance if this question is off-topic/inappropriate, but
> the version of org-mode packaged with emacs 22.1 for Windows is 4.67,
> while the latest current version is 5.13. I can't seem to figure out how
> to update the org-mode package in Windows. Any help?
>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Remember: use `Reply All' to send replies to the list.
> address@hidden
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]