From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christian Schmidt Subject: Bug: Column view in the agenda does not clean up ITEM [7.7] Date: Sun, 7 Aug 2011 14:08:57 +0200 (CEST) Message-ID: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII Return-path: Received: from eggs.gnu.org ([140.186.70.92]:46747) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qq2AF-0004VB-Ki for emacs-orgmode@gnu.org; Sun, 07 Aug 2011 08:09:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qq2AE-00074r-F8 for emacs-orgmode@gnu.org; Sun, 07 Aug 2011 08:09:07 -0400 Received: from h1648734.stratoserver.net ([81.169.186.100]:51570) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qq2AE-00074n-52 for emacs-orgmode@gnu.org; Sun, 07 Aug 2011 08:09:06 -0400 Received: from sardo (helo=localhost) by h1648734.stratoserver.net with local-esmtp (Exim 4.69) (envelope-from ) id 1Qq2AD-0001Kn-Ln for emacs-orgmode@gnu.org; Sun, 07 Aug 2011 14:09:05 +0200 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 Hi, I have got an issue with the column view in the agenda. In version 7.5 I could clean up the column "ITEM" by setting the variable org-agenda-columns-remove-prefix-from-item. As far as I understood, this variable is depricated since version 7.6 and the functionality is somehow replaced by the function org-columns-cleanup-item in the file org-colview.el. Unfortunately this does not work in the agenda view. I would like to give a minimal example: * NEXTACTION [#B] Test :Tag: SCHEDULED: <2011-08-07 So> Directly using column view in this buffer via "CTRL-c CTRL-x CTRL-c" yields to: NEXTACTION | B | * Test :Tag: | :Tag: | | | 2011-08-07 So | Like expexted the word "NEXTACTION" and the priority "B" are cleaned up from the column ITEM. This is the desired behaviour. When using the agenda view with "CTRL-c CTRL-a L" on this buffer we get in a seperate buffer: Sunday 7 August 2011 Scheduled: NEXTACTION [#B] Test :Tag: Now I use column view on this agenda via "CTRL-c CTRL-x CTRL-c" and end up with in the seperate buffer: NEXTACTION | B | NEXTACTION [#B] Test :Tag: | :Tag: | | | 2011-08-07 So | Thus we still have the unwanted "NEXTACTION [#B]" in the ITEM-column. I would really appreciate your help, because this behaviour inhibits me from using versions 7.6 and later. Thanks in advance! Please find below my org-mode configuration. Best, Christian Emacs : GNU Emacs 23.3.1 (i386-mingw-nt6.1.7600) of 2011-03-10 on 3249CTO Package: Org-mode version 7.7 current state: ============== (setq org-export-latex-after-initial-vars-hook '(org-beamer-after-initial-vars) org-speed-command-hook '(org-speed-command-default-hook org-babel-speed-command-hook) org-metaup-hook '(org-babel-load-in-session-maybe) org-after-todo-state-change-hook '(org-clock-out-if-current) org-export-blocks-postblock-hook '(org-exp-res/src-name-cleanup) org-export-latex-format-toc-function 'org-export-latex-format-toc-default org-tab-first-hook '(org-hide-block-toggle-maybe org-src-native-tab-command-maybe org-babel-hide-result-toggle-maybe) org-src-mode-hook '(org-src-babel-configure-edit-buffer org-src-mode-configure-edit-buffer) org-confirm-shell-link-function 'yes-or-no-p org-export-first-hook '(org-beamer-initialize-open-trackers) org-todo-keywords '("NEXTACTION" "WAITING" "MAYBE" "DONE") org-agenda-before-write-hook '(org-agenda-add-entry-text) org-babel-pre-tangle-hook '(save-buffer) org-cycle-hook '(org-cycle-hide-archived-subtrees org-cycle-hide-drawers org-cycle-show-empty-lines org-optimize-window-after-visibility-change) org-export-preprocess-before-normalizing-links-hook '(org-remove-file-link-modifiers) org-mode-hook '((lambda nil (org-add-hook (quote change-major-mode-hook) (quote org-show-block-all) (quote append) (quote local))) (lambda nil (org-add-hook (quote change-major-mode-hook) (quote org-babel-show-result-all) (quote append) (quote local))) org-babel-result-hide-spec org-babel-hide-all-hashes) org-ctrl-c-ctrl-c-hook '(org-babel-hash-at-point org-babel-execute-safely-maybe) org-confirm-elisp-link-function 'yes-or-no-p org-export-interblocks '((lob org-babel-exp-lob-one-liners) (src org-babel-exp-inline-src-blocks)) org-clock-out-hook '(org-clock-remove-empty-clock-drawer) org-occur-hook '(org-first-headline-recenter) org-from-is-user-regexp nil org-export-preprocess-before-selecting-backend-code-hook '(org-beamer-select-beamer-code) org-columns-default-format "%TODO %PRIORITY %50ITEM %ALLTAGS %6Effort{:} %DEADLINE %SCHEDULED" org-export-latex-final-hook '(org-beamer-amend-header org-beamer-fix-toc org-beamer-auto-fragile-frames org-beamer-place-default-actions-for-lists) org-metadown-hook '(org-babel-pop-to-session-maybe) 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-export-blocks-format-dot nil)) )