From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dave Abrahams Subject: Bug: org-insert-heading-respect-content is insufficient [7.7 (release_7.7.548.g9a442.dirty)] Date: Sun, 08 Jan 2012 22:56:27 -0500 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([140.186.70.92]:40059) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rk6LW-0000LF-G1 for emacs-orgmode@gnu.org; Sun, 08 Jan 2012 22:56:32 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rk6LU-0002nX-9f for emacs-orgmode@gnu.org; Sun, 08 Jan 2012 22:56:30 -0500 Received: from mail-qw0-f48.google.com ([209.85.216.48]:39126) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rk6LU-0002nL-5H for emacs-orgmode@gnu.org; Sun, 08 Jan 2012 22:56:28 -0500 Received: by qadc16 with SMTP id c16so2174741qad.0 for ; Sun, 08 Jan 2012 19:56:26 -0800 (PST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org-mode mailing list. ------------------------------------------------------------------------ This is a feature request, but it might be considered a usability bug report. Consider this org file: --8<---------------cut here---------------start------------->8--- * A A's immediate content ** B * C --8<---------------cut here---------------end--------------->8--- When I put point after `A' and hit `M-RET', I want it to insert a new heading just before the next *visible* heading. That is, it should go before `B' if that's visible, but if it's collapsed, it should go before `C'. But there's no setting of org-insert-heading-respect-content that will do that for me. If it's nil, `A' gets separated from its immediate content (which is maddening=E2=80=94who ever wants that?) and if it's t, th= e new heading goes before `C' unconditionally. I can think of two ways to address this: 1. Change the behavior and potentially break things for existing users 2. Allow org-insert-heading-respect-content to be `visible', in which case I get the behavior I want. Your consideration of this request is much appreciated. Emacs : GNU Emacs 24.0.92.1 (x86_64-apple-darwin, NS apple-appkit-1038.36) of 2011-12-23 on bob.porkrind.org Package: Org-mode version 7.7 (release_7.7.548.g9a442.dirty) current state: =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D (setq org-hide-leading-stars t org-export-babel-evaluate nil org-export-preprocess-before-selecting-backend-code-hook '(org-beamer-sele= ct-beamer-code) org-tab-first-hook '(yas/org-very-safe-expand org-hide-block-toggle-maybe = org-src-native-tab-command-maybe org-babel-hide-result-toggle-maybe) org-adapt-indentation nil org-footnote-section nil org-time-clocksum-use-fractional t org-log-buffer-setup-hook '((lambda nil (setq fill-column (- fill-column 5= )))) org-habit-preceding-days 42 org-speed-command-hook '(org-speed-command-default-hook org-babel-speed-co= mmand-hook) org-agenda-fontify-priorities t org-reverse-note-order t org-agenda-auto-exclude-function 'org-my-auto-exclude-function org-occur-hook '(org-first-headline-recenter) org-metaup-hook '(org-babel-load-in-session-maybe) org-agenda-scheduled-leaders '("" "S%d: ") org-agenda-start-on-weekday nil org-clock-into-drawer "LOGBOOK" org-export-preprocess-before-normalizing-links-hook '(org-remove-file-link= -modifiers) org-confirm-shell-link-function nil org-x-backends '(ox-org ox-redmine) org-finalize-agenda-hook '(org-agenda-add-overlays) org-speed-commands-user '(("+" . org-priority-up) ("-" . org-priority-down= )) org-clock-idle-time 10 org-export-latex-final-hook '(org-beamer-amend-header org-beamer-fix-toc o= rg-beamer-auto-fragile-frames org-beamer-place-default-actions-for-lists) org-habit-completed-glyph 10004 org-agenda-restore-windows-after-quit t org-agenda-deadline-leaders '("D: " "D%d: ") org-pretty-entities t org-special-ctrl-a/e '(nil . t) org-export-latex-after-initial-vars-hook '(org-beamer-after-initial-vars) org-x-redmine-title-prefix-function 'org-x-redmine-title-prefix org-agenda-prefix-format '((agenda . " %-11:c%?-12t% s") (timeline . " %= s") (todo . " %-11:c") (tags . " %-11:c")) org-agenda-skip-scheduled-if-done t org-agenda-custom-commands '(("E" "Errands (next 3 days)" tags "Errand&TODO<>\"DONE\"&TODO<>\"CANCELED\"&ST= YLE<>\"habit\"&SCHEDULED<\"<+3d>\"" ((org-agenda-overriding-header "Errands (nex= t 3 days)"))) ("A" "Priority #A tasks" agenda "" ((org-agenda-ndays 1) (org-agenda-overriding= -header "Today's priority #A tasks: ") (org-agenda-skip-function (quote (org-agenda-skip-entry-if (quote no= tregexp) "\\=3D.*\\[#A\\]"))) ) ) ("b" "Priority #A and #B tasks" agenda "" ((org-agenda-ndays 1) (org-agenda-overriding-header "Today's prio= rity #A and #B tasks: ") (org-agenda-skip-function (quote (org-agenda-skip-entry-if (quote re= gexp) "\\=3D.*\\[#C\\]"))) ) ) ("w" "Waiting/delegated tasks" tags "TODO=3D\= "WAITING\"|TODO=3D\"DELEGATED\"" ((org-agenda-overriding-header "Waiting/dele= gated tasks:") (org-agenda-sorting-strategy (quote (todo-s= tate-up priority-down category-up)))) ) ("p" "Unprioritized tasks" tags "AREA<>\"Work\"&TODO<>\"\"&TODO<>{DONE\\|CAN= CELED\\|NOTE\\|PROJECT\\|DEFERRED\\|SOMEDAY}" ((org-agenda-files =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20 = (quote =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 = ("~/Docum= ents/Tasks/todo.txt") =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 = ) =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20 = ) =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20 = (org-agenda-overriding-heade= r "Unprioritized tasks: ") =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20 = (org-agenda-skip-function =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 = (quote =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 = (= org-agenda-skip-entry-if =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 = = (quote regexp) =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 = = "\\=3D.*\\[#[A-Z]\\]") =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 = ) =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 = ) =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20 = ) ) ("u" "Unscheduled tasks" tags "AREA<>\"Work\"&TODO<>\"\"&TODO<>{DONE\\|CAN= CELED\\|NOTE\\|PROJECT}" ((org-agenda-files (quote ("~/Documents/Task= s/todo.txt"))) (org-agenda-overriding-header "Unscheduled = tasks: ") (org-agenda-skip-function (quote (org-agenda-skip-entry-if (quote schedule= d) (quote deadline) (quote timestamp) (quote regexp) "\\* \\(DEFERRED\\|SOMEDA= Y\\)") ) ) (org-agenda-sorting-strategy (quote (priori= ty-down)))) ) ("U" "Deferred tasks" tags "TODO=3D\"DEFERRED= \"" ((org-agenda-files (quote ("~/Documents/Task= s/todo.txt"))) (org-agenda-overriding-header "Deferred tas= ks:")) ) ("Y" "Someday tasks" tags "TODO=3D\"SOMEDAY\"" ((org-agenda-overriding-header "Someday task= s:"))) ("G" "Ledger tasks (all)" alltodo "" ((org-agenda-files (quote ("~/src/ledger/pla= n/TODO"))) (org-agenda-overriding-header "Ledger tasks= :") (org-agenda-sorting-strategy (quote (todo-s= tate-up priority-down category-up)))) ) ("N" "Ledger tasks (all, alphabetical)" allto= do "" ((org-agenda-files (quote ("~/src/ledger/pla= n/TODO"))) (org-agenda-overriding-header "Ledger tasks= , alphabetical:") (org-agenda-sorting-strategy (quote (alpha-= up)))) ) ("l" "Ledger tasks" tags-todo "TODO<>{SOMEDAY= \\|DEFERRED}" ((org-agenda-files (quote ("~/src/ledger/pla= n/TODO"))) (org-agenda-overriding-header "Ledger tasks= :") (org-agenda-sorting-strategy (quote (todo-s= tate-up priority-down category-up))) (org-agenda-skip-function (quote (org-agenda-skip-entry-if (quote re= gexp) "\\=3D.*\\[#C\\]"))) ) ) ("L" "Ledger tasks not in Bugzilla" tags "TODO<>{DONE\\|TESTED\\|CLOSED\\|NOTE}&LEVEL= =3D2" ((org-agenda-files (quote ("~/src/ledger/pla= n/TODO"))) (org-agenda-overriding-header "Ledger tasks= :") (org-agenda-sorting-strategy (quote (todo-s= tate-up priority-down category-up))) (org-agenda-skip-function (quote (org-agend= a-skip-entry-if (quote regexp) "#")))) ) ("r" "Uncategorized items" tags "CATEGORY=3D\= "Inbox\"&LEVEL=3D2" ((org-agenda-overriding-header "Uncategorize= d items"))) ("V" "Unscheduled work-related tasks" tags "AREA=3D\"Work\"&TODO<>\"\"&TODO<>{DONE\\|CA= NCELED\\|NOTE\\|PROJECT}" ((org-agenda-overriding-header "Unscheduled = work-related tasks") (org-agenda-files (quote ("~/Documents/Task= s/todo.txt"))) (org-agenda-sorting-strategy (quote (catego= ry-up))) (org-agenda-skip-function (quote (org-agenda-skip-entry-if (quote schedule= d) (quote deadline) (quote timestamp) (quote regexp) "\\* \\(DEFERRED\\|SOMEDA= Y\\)") ) ) ) ) ("W" "Work-related tasks" tags "AREA=3D\"Work\"&TODO<>\"\"&TODO<>{DONE\\|CA= NCELED\\|NOTE\\|PROJECT}" ((org-agenda-overriding-header "Work-related= tasks") (org-agenda-files (quote ("~/Documents/Task= s/todo.txt"))) (org-agenda-sorting-strategy (quote (category-up priority-down todo-sta= te-up alpha-up))) (org-agenda-skip-function (quote (org-agenda-skip-entry-if (quote re= gexp) "\\* \\(DEFERRED\\|SOMEDAY\\)"))) ) ) ) org-return-follows-link t org-default-notes-file "~/Documents/Tasks/todo.txt" org-clock-in-resume t org-agenda-include-diary t org-drawers '("PROPERTIES" "CLOCK" "LOGBOOK" "OUT") org-after-todo-state-change-hook '(org-clock-out-if-current org-checklist) org-todo-repeat-to-state "TODO" org-src-mode-hook '(org-src-babel-configure-edit-buffer org-src-mode-confi= gure-edit-buffer) org-tags-column -97 org-agenda-before-write-hook '(org-agenda-add-entry-text) org-babel-pre-tangle-hook '(save-buffer) org-export-blocks-postblock-hook '(org-exp-res/src-name-cleanup) org-mode-hook '((lambda nil (set (make-local-variable (quote yas/trigger-k= ey)) [tab]) (add-to-list (quote org-tab-first-hook) (quote yas/org-ve= ry-safe-expand)) (define-key yas/keymap [tab] (quote yas/next-field))) (lambda nil (local-unset-key (kbd ".,"))) #[nil "\300\301\302\303\304$\207" [org-add-hook change-major-mode-hook org-show-block-all = append local] 5] #[nil "\300\301\302\303\304$\207" [org-add-hook change-major-mode-hook org-babel-show-resu= lt-all append local] 5] org-babel-result-hide-spec org-babel-hide-all-hashes) org-agenda-follow-indirect t org-refile-targets '((nil :todo . "PROJECT") (nil :maxlevel . 2)) org-extend-today-until 6 org-attach-method 'mv org-mobile-pre-pull-hook '(my-org-convert-incoming-items) org-use-speed-commands t org-agenda-sorting-strategy '((agenda habit-down time-up todo-state-up pri= ority-down category-keep) (todo priority-down category-keep) (tags pri= ority-down category-keep) (search category-keep)) org-clock-persist 'history org-ctrl-c-ctrl-c-hook '(org-babel-hash-at-point org-babel-execute-safely-= maybe) org-agenda-persistent-filter t org-clock-in-switch-to-state "STARTED" org-directory "~/Documents/Tasks/" org-enforce-todo-dependencies t org-cycle-hook '(org-cycle-hide-archived-subtrees org-cycle-hide-drawers o= rg-cycle-show-empty-lines org-optimize-window-after-visibility-change) org-habit-show-habits-only-for-today nil org-export-latex-format-toc-function 'org-export-latex-format-toc-default org-export-blocks '((src org-babel-exp-src-block nil) (comment org-export-= blocks-format-comment t) (ditaa org-export-blocks-format-ditaa nil) (dot org-ex= port-blocks-format-dot nil)) org-archive-location "TODO-archive::" org-export-first-hook '(org-beamer-initialize-open-trackers) org-agenda-text-search-extra-files '(agenda-archives) org-habit-today-glyph 9483 org-x-redmine-title-prefix-match-function 'org-x-redmine-title-prefix-match org-agenda-default-appointment-duration 60 org-export-interblocks '((lob org-babel-exp-lob-one-liners) (src org-babel= -exp-inline-src-blocks)) org-use-property-inheritance '("AREA") org-blank-before-new-entry nil org-modules '(org-id org-info org-habit) org-agenda-ndays 1 org-checkbox-statistics-hook '(dwa/checkbox-list-complete) org-fast-tag-selection-single-key 'expert org-agenda-window-setup 'current-window org-babel-tangle-lang-exts '(("python" . "py") ("emacs-lisp" . "el")) org-confirm-elisp-link-function nil org-edit-src-content-indentation 0 org-metadown-hook '(org-babel-pop-to-session-maybe) org-log-into-drawer t org-mobile-post-push-hook '((lambda nil (shell-command "/bin/rm -f ~/Dropb= ox/MobileOrg/agendas.org") (shell-command (concat "perl -i -ne 'print unless /agendas\= \.org/;'" "~/Dropbox/MobileOrg/checksums.dat") ) (shell-command (concat "perl -i -ne 'print unless /agendas\= \.org/;'" "~/Dropbox/MobileOrg/index.org") ) ) ) org-insert-heading-respect-content t org-agenda-skip-unavailable-files t org-checklist-export-function 'org-export-as-ascii org-default-priority 67 org-clock-modeline-total 'current org-blocker-hook '(org-block-todo-from-children-or-siblings-or-parent) org-agenda-skip-deadline-if-done t org-completion-use-ido t org-cycle-global-at-bob t org-agenda-start-with-follow-mode t org-agenda-mode-hook '((lambda nil (local-unset-key (kbd ".,")))) org-agenda-files '("~/Documents/Tasks/todo.txt") org-clock-out-hook '(org-clock-remove-empty-clock-drawer) org-archive-save-context-info '(time category itags) org-src-fontify-natively t org-clock-out-remove-zero-time-clocks t org-refile-target-verify-function 'dwa/org-verify-refile-target org-agenda-skip-scheduled-if-deadline-is-shown t org-after-todo-statistics-hook '(dwa/org-summary-todo) ) --=20 Dave Abrahams BoostPro Computing http://www.boostpro.com