From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ross Patterson Subject: Re: POLL: the 40 variables project Date: Thu, 29 Jan 2009 19:32:18 -0800 Message-ID: <87pri5a2pp.fsf@transitory.lefae.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LSk7M-0007sK-D3 for emacs-orgmode@gnu.org; Thu, 29 Jan 2009 22:32:32 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LSk7I-0007s7-MI for emacs-orgmode@gnu.org; Thu, 29 Jan 2009 22:32:31 -0500 Received: from [199.232.76.173] (port=43456 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LSk7I-0007s4-Gu for emacs-orgmode@gnu.org; Thu, 29 Jan 2009 22:32:28 -0500 Received: from main.gmane.org ([80.91.229.2]:40093 helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LSk7I-0008CC-5E for emacs-orgmode@gnu.org; Thu, 29 Jan 2009 22:32:28 -0500 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1LSk7G-0007Kd-EH for emacs-orgmode@gnu.org; Fri, 30 Jan 2009 03:32:26 +0000 Received: from rpatterson.net ([69.12.174.198]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 30 Jan 2009 03:32:26 +0000 Received: from me by rpatterson.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 30 Jan 2009 03:32:26 +0000 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 Carsten Dominik writes: > Hi, > > 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? (add-to-list 'auto-mode-alist '("\\.org$" . org-mode)) (global-set-key "\C-cl" 'org-store-link) (global-set-key "\C-ca" 'org-agenda) (add-hook 'org-mode-hook 'turn-on-auto-fill) (gnus-add-configuration '(group (horizontal 1.0 ("*Org Agenda*" 0.5) (group 1.0 point)))) Done with customize: '(org-agenda-window-setup (quote current-window)) '(org-log-note-headings (quote ((done . "CLOSING NOTE %t") (state . "State %-12s %t") (note . "Note taken on %t") (clock-out . "") (transcribe . "[[file://%f][Recorded]] on %r")))) '(org-agenda-sorting-strategy (quote ((agenda time-up priority-down) (todo category-keep priority-down) (tags category-keep priority-down) (search category-keep)))) '(find-file-hook (quote (maybe-turn-on-org-mode flymake-find-file-hook turn-on-auto-fill c-subword-mode))) '(org-file-apps (quote (("txt" . emacs) ("tex" . emacs) ("ltx" . emacs) ("org" . emacs) ("el" . emacs) ("bib" . emacs) ("qcp" bongo-insert-and-play-file file)))) '(org-startup-folded (quote content)) '(org-clock-out-when-done nil) '(org-time-stamp-rounding-minutes (quote (0 0))) '(org-agenda-start-with-clockreport-mode t) '(org-link-mailto-program (quote (message-mail "%a" "%s"))) '(org-link-frame-setup (quote ((vm . vm-visit-folder-other-window) (gnus . rpatterson/gnus-no-new-news) (file . find-file-other-window)))) '(org-agenda-custom-commands (quote (("x" "Stuck projects (nested)" tags "-INFO-POTENTIAL/-DONE-CANCELED-TODO-HOME-COMPUTER-ONLINE-PHONE-SHOP" ((org-agenda-skip-function (quote org-skip-unless-child-todo))))))) '(org-agenda-window-setup (quote current-window)) '(org-tag-alist (quote (("INFO" . 105) ("POTENTIAL" . 112)))) '(org-fast-tag-selection-single-key t) '(org-use-fast-tag-selection t) '(org-use-fast-todo-selection t) '(org-tags-match-list-sublevels t) '(org-todo-keywords (quote ((type "COMPUTER(c@)" "ONLINE(o@)" "PHONE(p@)" "HOME(h@)" "SHOP(s@)" "TODO(t@)" "|" "DONE(d@)" "CANCELED(x@)")))) '(org-stuck-projects (quote ("-INFO-POTENTIAL/-DONE" ("TODO" "PHONE" "ONLINE" "COMPUTER" "HOME" "SHOP") nil ""))) '(org-agenda-files (quote ("~/org"))) '(org-special-ctrl-k t) '(org-special-ctrl-a/e t) '(before-save-hook (quote (org-update-all-dblocks))) '(org-log-note-clock-out t) Ross