From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephan Schmitt Subject: Re: Org-mode version 6.31a; "conflicting packages" section lacks some (tiny) viper info Date: Thu, 29 Oct 2009 18:37:33 +0100 Message-ID: <4AE9D2DD.4080301@cs.tu-berlin.de> References: <87zl7agmv1.fsf@usha.takhisis.invalid> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N3Z4D-0003Ov-4l for emacs-orgmode@gnu.org; Thu, 29 Oct 2009 13:45:45 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N3Z48-0003NF-Bq for emacs-orgmode@gnu.org; Thu, 29 Oct 2009 13:45:44 -0400 Received: from [199.232.76.173] (port=34524 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N3Z48-0003NA-4R for emacs-orgmode@gnu.org; Thu, 29 Oct 2009 13:45:40 -0400 Received: from mail.cs.tu-berlin.de ([130.149.17.13]:54994) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1N3Z47-00073h-Gy for emacs-orgmode@gnu.org; Thu, 29 Oct 2009 13:45:39 -0400 Received: from localhost (localhost [127.0.0.1]) by localhost-12225.cs.tu-berlin.de (Postfix) with ESMTP id AA51C33191 for ; Thu, 29 Oct 2009 18:45:36 +0100 (MET) In-Reply-To: <87zl7agmv1.fsf@usha.takhisis.invalid> 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: Stefano Zacchiroli Cc: emacs-orgmode@gnu.org Hi Stefano, I don't know if this helps, but did you try (global-unset-key (kbd "C-c /")) in your init file (before org-mode is loaded)? Greetings, Stephan Stefano Zacchiroli wrote: > > 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. > ------------------------------------------------------------------------ > > Heya, > I'm using Org mode (beware: I'm an Org newbie!) and Viper mode. I've > noticed that there is a small incompatibility between the two, as Viper > (at least in export mode) has "C-c /" set to a command related to search > settings, whereas Org uses that for the sparse tree menu. To me it is > not a big deal as Viper's C-c / is, IMO, a completely useless setting > command, but it is still worth to be mentioned in manual section > 14.7.2. Can you please do that? > > Given my premise, my "solution" for that is simply to override Viper's > C-c / as follows: > > (define-key viper-vi-global-user-map (kbd "C-c /") 'org-sparse-tree) > > It is suboptimal since it sets "C-c /" as org-sparse-tree everywhere, > while it would be better to do that only in Org mode buffers. I've tried > with hooks and local maps, but I failed to obtain a more-local > solution. If you find it, you might want to specify that rather than > mine. > > Thanks for Org! > Cheers. > > > Emacs : GNU Emacs 23.1.50.1 (x86_64-pc-linux-gnu, GTK+ Version 2.18.3) > of 2009-10-23 on elegiac, modified by Debian > Package: Org-mode version 6.31a > > current state: > ============== > (setq > org-special-ctrl-a/e t > org-agenda-files '("~/example.org") > org-after-todo-state-change-hook '(org-clock-out-if-current) > org-agenda-skip-scheduled-if-done t > org-export-preprocess-hook '(org-export-blocks-preprocess) > org-tab-first-hook '(org-hide-block-toggle-maybe) > org-src-mode-hook '(org-src-mode-configure-edit-buffer) > org-confirm-shell-link-function 'yes-or-no-p > org-agenda-before-write-hook '(org-agenda-add-entry-text) > org-default-notes-file "~/dati/org/notes.org" > org-directory "~/dati/org" > org-cycle-hook '(org-cycle-hide-archived-subtrees org-cycle-hide-drawers org-cycle-show-empty-lines > org-optimize-window-after-visibility-change) > org-mode-hook '(#[nil "\300\301\302\303\304$\207" [org-add-hook change-major-mode-hook org-show-block-all append local] 5]) > org-confirm-elisp-link-function 'yes-or-no-p > org-agenda-start-on-weekday nil > org-reverse-note-order t > org-insert-mode-line-in-empty-file t > org-occur-hook '(org-first-headline-recenter) > org-from-is-user-regexp "\\" > org-remember-templates '(("Web" 119 "* %?\n\n Source: %U, %c\n\n %i" nil "Note (Web)") > ("Mail" 109 "* %?\n\n Source: %u, %c\n %i" nil "Note (Mail)") > ("Note" 110 "* %?\n\n Source: %U, %c\n\n %i" nil "Note")) > org-link-abbrev-alist '(("debbug" . "http://bugs.debian.org/")) > ) >