From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Possible? Date: Mon, 18 May 2009 15:50:20 +0200 Message-ID: <99119532-4F5F-4AD8-BC88-1E20FC30A987@gmail.com> References: Mime-Version: 1.0 (Apple Message framework v930.3) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1M63Ec-0004Vf-Ka for emacs-orgmode@gnu.org; Mon, 18 May 2009 09:50:30 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1M63EW-0004Us-Rq for Emacs-orgmode@gnu.org; Mon, 18 May 2009 09:50:29 -0400 Received: from [199.232.76.173] (port=40608 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1M63EW-0004Up-P4 for Emacs-orgmode@gnu.org; Mon, 18 May 2009 09:50:24 -0400 Received: from mail-ew0-f162.google.com ([209.85.219.162]:53277) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1M63EW-0003Sl-FH for Emacs-orgmode@gnu.org; Mon, 18 May 2009 09:50:24 -0400 Received: by ewy6 with SMTP id 6so4169059ewy.42 for ; Mon, 18 May 2009 06:50:23 -0700 (PDT) In-Reply-To: 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: Tennis Smith Cc: Emacs-orgmode@gnu.org Hi Tennis, On May 17, 2009, at 7:48 PM, Tennis Smith wrote: > Hi, > > I'm a newbie user of org-mode, and it looks very promising. > However, there are several key combinations that I have to change if > I'm going to use it. I use the combinations C-tab for iswitchb, You could free up C-tab by customizing org-disputed-keys and org- replace-disputed-keys. Or, maybe even better in your case, you could overwrite Org's setting of C-tab in a hook, for example (add-hook 'org-mode-hook (define-key 'org-mode-map [(control tab)] nil)) > and I use C-c for CUA "copy". I have no idea how to recover C-c and C-x. How can you use Emacs if these keys are used for something else? I guess CUA does this by only using them when the region is active, but this is also not a solution because many commands working on the region are invoked with C-c or C-x. Incidentally, in my Emacs 23.0.93.1, if I turn on CUA mode, C-c does not do copy, even though cua-enable-cua-keys is set. HTH - Carsten