From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: poppyer Newsgroups: gmane.emacs.help Subject: Re: M-<, M->, M-% ... Date: Wed, 26 Mar 2008 06:08:07 +0000 Organization: University Of Oxford, England Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1206513731 13617 80.91.229.12 (26 Mar 2008 06:42:11 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 26 Mar 2008 06:42:11 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Mar 26 07:42:42 2008 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1JePL4-00054y-LH for geh-help-gnu-emacs@m.gmane.org; Wed, 26 Mar 2008 07:42:22 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JePKT-0003CH-Dx for geh-help-gnu-emacs@m.gmane.org; Wed, 26 Mar 2008 02:41:45 -0400 Original-Path: shelby.stanford.edu!headwall.stanford.edu!newsfeed.esat.net!news.clara.net!mephistopheles.news.clara.net!feed2.jnfs.ja.net!jnfs.ja.net!feeds.news.ox.ac.uk!news.ox.ac.uk!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 31 Original-NNTP-Posting-Host: clpc78.comlab.ox.ac.uk Original-X-Trace: frank-exchange-of-views.oucs.ox.ac.uk 1206511687 22906 129.67.148.212 (26 Mar 2008 06:08:07 GMT) Original-X-Complaints-To: newsmaster@ox.ac.uk Original-NNTP-Posting-Date: Wed, 26 Mar 2008 06:08:07 +0000 (UTC) User-Agent: Emacs Gnus Cancel-Lock: sha1:sFffMVGaZbWjn6UuyznFbG8XtmA= Original-Xref: shelby.stanford.edu gnu.emacs.help:157329 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:52698 Archived-At: Xavier Maillard writes: > Hi, > > What is the best way to invoke the above mentionned keys in the > linux console (I really mean the console, not a xterm) ? I managed to get M-< and M-> works, but M-arrow keys still not working. 1). make a mykeymap plain txt file: --8<---------------cut here---------------start------------->8--- alt shift keycode 51 = Meta_less alt shift keycode 52 = Meta_greater alt keycode 103 = F98 alt keycode 108 = F99 string F98 = "\033\033[A" # Meta_up string F99 = "\033\033[B" # Meta_down --8<---------------cut here---------------end--------------->8--- 2) sudo loadkeys mykeymap cheers, poppyer > > Regards > > Xavier --