From mboxrd@z Thu Jan 1 00:00:00 1970 From: Martin Stemplinger Subject: Re: POLL: the 40 variables project Date: Sat, 31 Jan 2009 14:06:08 +0100 Message-ID: <81ocxnpqv3.fsf@gmx.de> References: Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LTFY7-0001r0-GM for emacs-orgmode@gnu.org; Sat, 31 Jan 2009 08:06:15 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LTFY5-0001qo-V3 for Emacs-orgmode@gnu.org; Sat, 31 Jan 2009 08:06:15 -0500 Received: from [199.232.76.173] (port=42418 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LTFY5-0001ql-Rr for Emacs-orgmode@gnu.org; Sat, 31 Jan 2009 08:06:13 -0500 Received: from mail.gmx.net ([213.165.64.20]:38294) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1LTFY5-0003v3-6C for Emacs-orgmode@gnu.org; Sat, 31 Jan 2009 08:06:13 -0500 In-Reply-To: (Carsten Dominik's message of "Thu, 29 Jan 2009 09:49:21 +0100") 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: Emacs-orgmode@gnu.org Hallo Carsten Dominik, am 29.01.2009 schriebst Du in gmane.emacs.orgmode: > So here is my question to all of you. Could you, in reply to this > message, list all the Org-related variables that you have customized, > along with the values you used? > In customize: '(org-agenda-files (quote ("~/Org/GTDAssesment-Daheim.org" "~/Org/gtd.org"= ))) '(org-agenda-include-all-todo nil) '(org-agenda-include-diary t) '(org-export-author-info nil) '(org-export-html-style "") '(org-export-html-with-timestamp t) '(org-export-latex-classes (quote (("article" "\\documentclass[12pt,a4pape= r]{article} \\usepackage[latin1]{inputenc} \\usepackage[T1]{fontenc} \\usepackage{t1enc,hyperref}" ("\\section{%s}" . "\\section*{%s}") ("\\subs= ection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsectio= n*{%s}") ("\\paragraph{%s}" . "\\paragraph*{%s}") ("\\subparagraph{%s}" . "= \\subparagraph*{%s}")) ("report" "\\documentclass[12pt,a4paper]{report} \\usepackage[latin1]{inputenc} \\usepackage[T1]{fontenc} \\usepackage{hyperref,t1enc}" ("\\part{%s}" . "\\part*{%s}") ("\\chapter{%s= }" . "\\chapter*{%s}") ("\\section{%s}" . "\\section*{%s}") ("\\subsection{= %s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}"= )) ("book" "\\documentclass[11pt,a4paper]{book} \\usepackage[utf8]{inputenc} \\usepackage[T1]{fontenc} \\usepackage{hyperref}" ("\\part{%s}" . "\\part*{%s}") ("\\chapter{%s}" . "= \\chapter*{%s}") ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" .= "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}"))))) '(org-export-latex-date-format "%d. %B %Y") '(org-export-latex-remove-from-headlines (quote (:todo nil :priority t :ta= gs t))) '(org-fast-tag-selection-single-key t) '(org-hide-leading-stars t) '(org-modules (quote (org-bbdb org-info org-jsinfo))) '(org-odd-levels-only t) '(org-stuck-projects (quote ("+PROJEKT" ("ANRUFE" "BESORGEN" "B=DCRO" "COM= PUTER" "DAHEIM" "LESEN" "MITNEHMEN" "WARTET") nil ""))) (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) (setq org-log-done t org-agenda-start-on-weekday nil org-fast-todo-selection t org-remember-templates '((?j "* %U %?\n\n %i\n %a" "~/Org/JOURNAL.org") (?i "* %^{Title}\n %i\n %a" "~/Org/gtd.org" "New Ideas")) org-agenda-custom-commands '(("h" "Agenda and tasks" ((agenda) (todo "ANRUFE") (todo "BESORGEN") (todo "B=DCRO") (todo "COMPUTER") (todo "DAHEIM") (todo "ILSE") (todo "LESEN") (todo "MITNEHMEN") (todo "GTD"))))) (defun gtd () (interactive) (find-file "~/Org/gtd.org")) (defun org-my-archive-done-tasks () (interactive) (save-excursion (goto-char (point-min)) (while (re-search-forward (concat "\\* " (regexp-opt org-done-keywords) " ") nil t) (goto-char (line-beginning-position)) (org-archive-subtree)))) > If you want to do more, I'd also love to see comments on > > - why you set the variable like this > - if you feel that the default value of that variable > should be different > - Any other comments you might what to give. > > Of course, if there is a volunteer who would like to organize > this info into a Worg page, I would even be more happy ... > > Thanks! > > - Carsten > > > _______________________________________________ > 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 > --=20 Gru=DF Martin