From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Bob Proulx Newsgroups: gmane.emacs.help Subject: Re: GNU emacs on Ubuntu 14.04 LTS Date: Thu, 1 Oct 2015 14:07:45 -0600 Message-ID: <20151001140613683603116@bob.proulx.com> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1443730085 27231 80.91.229.3 (1 Oct 2015 20:08:05 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 1 Oct 2015 20:08:05 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Oct 01 22:08:03 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 1Zhk93-0007zN-Jm for geh-help-gnu-emacs@m.gmane.org; Thu, 01 Oct 2015 22:08:01 +0200 Original-Received: from localhost ([::1]:56060 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zhk93-0002Mh-60 for geh-help-gnu-emacs@m.gmane.org; Thu, 01 Oct 2015 16:08:01 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:37394) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zhk8s-0002Lr-9M for help-gnu-emacs@gnu.org; Thu, 01 Oct 2015 16:07:51 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zhk8p-0000Ee-3Q for help-gnu-emacs@gnu.org; Thu, 01 Oct 2015 16:07:50 -0400 Original-Received: from joseki.proulx.com ([216.17.153.58]:50842) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zhk8o-0000E7-SF for help-gnu-emacs@gnu.org; Thu, 01 Oct 2015 16:07:47 -0400 Original-Received: from hysteria.proulx.com (hysteria.proulx.com [192.168.230.119]) by joseki.proulx.com (Postfix) with ESMTP id 73C8521207 for ; Thu, 1 Oct 2015 14:07:45 -0600 (MDT) Original-Received: by hysteria.proulx.com (Postfix, from userid 1000) id 45FAB2DC48; Thu, 1 Oct 2015 14:07:45 -0600 (MDT) Mail-Followup-To: help-gnu-emacs@gnu.org Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.24 (2015-08-30) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 216.17.153.58 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:107438 Archived-At: Alexandre Oberlin wrote: > I cannot manage to bind ctrl+home/ctrl+end to beginning/end-of-buffer in > Ubuntu 14.04 LTS. > Event doing it interactively does not work. Instead of "ctrl+home", I get > "home" in command-history: > (global-set-key (quote [home]) (quote beginning-of-buffer)) I know you said you already solved this but let me comment for the archive. I have these bindings and they work in the terminal. (global-set-key [home] 'beginning-of-buffer) (global-set-key [S-home] 'end-of-buffer) (global-set-key [end] 'end-of-buffer) (global-set-key [S-end] 'beginning-of-buffer) Bob