emacs-orgmode
[Top][All Lists]
Advanced

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

Re: [O] Bug: org-capture Does not take user to any new buffer


From: Nick Dokos
Subject: Re: [O] Bug: org-capture Does not take user to any new buffer
Date: Tue, 05 Jun 2012 14:04:28 -0400

Nick Dokos <address@hidden> wrote:

> Mike Fitzgerald <address@hidden> wrote:
> 
> > Setup
> > -I performed my org-mode update by downloading org-7.8.11.zip
> 
> from orgmode.org? or somewhere else?
> 

I've now downloaded the zip file from

   http://orgmode.org/org-7.8.11.zip,

unpacked it in ~/.emacs.d and started an emacs with a minimal init file:
     
     emacs -q -l ~/src/minimal.emacs/minimal.org.el

where minimal.org.el contains:

--8<---------------cut here---------------start------------->8---
;;; -*- mode: emacs-lisp -*-
(add-to-list 'load-path (expand-file-name "~/.emacs.d/org-7.8.11/lisp"))
(add-to-list 'load-path (expand-file-name "~/.emacs.d/org-7.8.11/contrib/lisp"))

(add-to-list 'auto-mode-alist '("\\.\\(org\\|org_archive\\|txt\\)$" . org-mode))

(setq org-fontify-emphasized-text nil)
(require 'org-install)

(setq debug-on-error t)
(setq debug-on-quit t)
(setq eval-expression-print-length nil)
(setq eval-expression-print-level nil)

(global-set-key "\C-cl" 'org-store-link)
(global-set-key "\C-ca" 'org-agenda)

(require 'org-capture)

(setq org-capture-templates

      '(("t" "Todo" entry (file+headline "~/org/gtd.org" "Tasks")
             "* TODO %?\n  %i\n  %a")
        ("j" "Journal" entry (file+datetree "~/org/journal.org")
             "* %?\nEntered on %U\n  %i\n  %a")))
--8<---------------cut here---------------end--------------->8---

I did *not* byte-compile anything and capture works with no problems.

Nick







reply via email to

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