[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] Problems Setting Drawers in .emacs
From: |
Nick Dokos |
Subject: |
Re: [O] Problems Setting Drawers in .emacs |
Date: |
Mon, 27 Aug 2012 01:10:16 -0400 |
Rodolfo Aramayo <address@hidden> wrote:
> Hi,
>
> I am having essentially the same problem described on the following thread:
>
> http://thread.gmane.org/gmane.emacs.orgmode/22263
>
> Which is essentially:
>
> when I define in my .emacs file:
>
> ;; Define some default drawers.
> (setq org-drawers (quote ("PROPERTIES" "SETUP")))
>
> PROPERTIES and SETUP aren't recognised as drawers in my org
> files. They don't close and open using tab and the fontification of them
> indicates that org isn't recognising them as drawers.
> If I however define a drawer in my org file like:
> #+DRAWERS: NOTES
> this works correctly
>
> I am using Org-mode version 7.8.11 and GNU Emacs 24.1.1
> (x86_64-apple-darwin10.8.0)
>
> Are there any known fixes for this issue?
>
I cannot reproduce this. With the appended minimal .emacs,
I get completion on the drawer names and as far as I can tell
everything works.
Nick
Org-mode version 7.8.11 (release_7.8.11-605-g5f273b @
/home/nick/elisp/org-mode/lisp/)
--8<---------------cut here---------------start------------->8---
;;; -*- mode: emacs-lisp -*-
;;; constant part
(add-to-list 'load-path (expand-file-name "~/src/emacs/org/org-mode/lisp"))
(add-to-list 'load-path (expand-file-name
"~/src/emacs/org/org-mode/contrib/lisp"))
(add-to-list 'auto-mode-alist '("\\.\\(org\\|org_archive\\|txt\\)$" . org-mode))
(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)
;; Define some default drawers.
(setq org-drawers (quote ("PROPERTIES" "SETUP" "NOTES")))
--8<---------------cut here---------------end--------------->8---