From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Alexis Newsgroups: gmane.emacs.help Subject: Re: unassigning cntl-Z in cua mode Date: Mon, 23 Mar 2015 15:44:47 +1100 Message-ID: <87oankz5j4.fsf@gmail.com> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; format=flowed X-Trace: ger.gmane.org 1427085913 11595 80.91.229.3 (23 Mar 2015 04:45:13 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 23 Mar 2015 04:45:13 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Mar 23 05:45:12 2015 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1YZuEg-0004FF-9C for geh-help-gnu-emacs@m.gmane.org; Mon, 23 Mar 2015 05:45:10 +0100 Original-Received: from localhost ([::1]:53602 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YZuEf-0005uP-8Y for geh-help-gnu-emacs@m.gmane.org; Mon, 23 Mar 2015 00:45:09 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:33647) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YZuEU-0005uK-By for help-gnu-emacs@gnu.org; Mon, 23 Mar 2015 00:44:59 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YZuER-0001MI-1e for help-gnu-emacs@gnu.org; Mon, 23 Mar 2015 00:44:58 -0400 Original-Received: from mail-pa0-x22e.google.com ([2607:f8b0:400e:c03::22e]:33390) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YZuEQ-0001KY-Qi for help-gnu-emacs@gnu.org; Mon, 23 Mar 2015 00:44:54 -0400 Original-Received: by pabxg6 with SMTP id xg6so166420392pab.0 for ; Sun, 22 Mar 2015 21:44:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=references:from:to:subject:in-reply-to:date:message-id:mime-version :content-type; bh=MEbU+L1hr+hxoYlVzLWLPz2lRaIaXmh9aM0iNuKAD8A=; b=VXLlzfORCbG38fjGQQaS+yQHmmAPbBX5h2NBPQ9C3JW248Z92YM/gxBwCYRlzOPMOR N1dpUVyIPKz33LucBdK04K/fL725MLco1+evjxRS8VWLUX30u2AYOqyEMI21vFzcC1AH zQutOEAhttXInYIqP0knjUOWurZ/PXWMDNdhmNl+2kl+BkHS0azjPtDJX1BPOY/6t5mG TAC3rFuJ4iNMvdEP4gFKmjSuJuRVBkIiZvUey9baLhprzD0+n+WC3HB1uPVl7C8PzzHi aZ3S0cq2w+q9hCqiKefuK00yeIvLIPM+mFALOcjKMfj81RsLRbgAvgwQKxdMVtjlaPnX CLNg== X-Received: by 10.70.51.197 with SMTP id m5mr209700267pdo.90.1427085893235; Sun, 22 Mar 2015 21:44:53 -0700 (PDT) Original-Received: from localhost (ppp118-209-89-112.lns20.mel4.internode.on.net. [118.209.89.112]) by mx.google.com with ESMTPSA id hr5sm5762871pbb.44.2015.03.22.21.44.50 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Sun, 22 Mar 2015 21:44:52 -0700 (PDT) In-reply-to: X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400e:c03::22e X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:103259 Archived-At: On 2015-03-23T15:21:51+1100, Stuart McGraw said: SM> Hello all, SM> I have recently started using CUA mode and it is ok except for SM> one thing... I don't like having cntl-z mapped to undo. I run SM> emacs in a terminal window (emacs -nw) a lot and routinely need SM> to suspend emacs with cntl-z, do something in the shell, then SM> resume emacs. SM> How can I undo the mapping the CUA mode applies to the cntl-z SM> key? I am elisp-illiterate so a cut and paste solution would be SM> greatly appreciated. (global-unset-key (kbd "C-z")) might do the trick .... Alexis.