From mboxrd@z Thu Jan 1 00:00:00 1970 From: Memnon Anon Subject: columnview and emacsclient (again) Date: Mon, 12 Oct 2009 22:12:26 +0000 (UTC) Message-ID: <87zl7wi7nj.fsf@mean.albasani.net> 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 1MxT8Z-00076f-32 for emacs-orgmode@gnu.org; Mon, 12 Oct 2009 18:13:03 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MxT8U-00073c-LY for emacs-orgmode@gnu.org; Mon, 12 Oct 2009 18:13:02 -0400 Received: from [199.232.76.173] (port=35914 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MxT8U-00073Z-DV for emacs-orgmode@gnu.org; Mon, 12 Oct 2009 18:12:58 -0400 Received: from lo.gmane.org ([80.91.229.12]:34400) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MxT8U-0006a5-1J for emacs-orgmode@gnu.org; Mon, 12 Oct 2009 18:12:58 -0400 Received: from list by lo.gmane.org with local (Exim 4.50) id 1MxT8Q-000738-9c for emacs-orgmode@gnu.org; Tue, 13 Oct 2009 00:12:54 +0200 Received: from e178199105.adsl.alicedsl.de ([85.178.199.105]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 13 Oct 2009 00:12:54 +0200 Received: from gegendosenfleisch by e178199105.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 13 Oct 2009 00:12:54 +0200 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 Hi! I still see this problem with emacsclient and columnview (cf. http://article.gmane.org/gmane.emacs.orgmode/17568/match= , especially the links to the pictures). I cut down my .emacs to a minimum, could someone please again test it with emacs 23? 0.) change path-to-org-directory to your setup. 1.) Start emacs in server-mode with this .emacs. 2.) Start emacsclient in X, open test.org in emacsclient. 3.) Columnmode should work. 4.) Uncomment one of the commented lines, save .emacs. 5.) Restart Emacs, start emacsclient session in X 6.) Columnmode fails in the emacsclient session. (Setup still works in a non emacsclient session) Problem here in: Emacs 23.1.1 (debian testing) and Emacs 23.1.50 (debian-snapshot) Thanks ;) =========== .emacs (setq load-path (cons "~/elisp/org-6.31a/lisp" load-path)) ; change! (setq load-path (cons "~/elisp/org-6.31a/contrib/lisp" load-path)) ; change! (require 'org-install) (add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode)) (global-set-key "\C-cl" 'org-store-link) (global-set-key "\C-ca" 'org-agenda) (global-set-key "\C-cb" 'org-iswitchb) (global-font-lock-mode 1) (add-hook 'org-mode-hook 'turn-on-font-lock) (setq org-log-into-drawer "LOGBOOK") (setq org-clock-persist t) ;(org-clock-persistence-insinuate) ;;;!!!! Breaks columnview ;;;;;;;;;;;;;;;; Settings remember ;(org-remember-insinuate) ;;;!!!! Breaks columnview (setq org-directory "~/orgdirectory/") (setq org-default-notes-file (concat org-directory "/organizer.org")) (define-key global-map "\C-cr" 'org-remember) (server-mode) =================================== ============= test.org ================== #+PROPERTY: COOKIE_DATA ESTIMATE_ALL 0 0:05 0:10 0:20 0:30 1:00 2:00 3:00 #+COLUMNS: %35ITEM %4TODO %19SCHEDULED %10TAGS %5ESTIMATE{:} %5CLOCKSUM * Example :PROPERTIES: :CATEGORY: example :END: ** TODO [#B] Fix org columns for emacs client :PROPERTIES: :ESTIMATE: 2:00 :END: ===============================================