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: Thu, 27 Mar 2008 02:42:51 +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 1206589242 24649 80.91.229.12 (27 Mar 2008 03:40:42 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 27 Mar 2008 03:40:42 +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 Mar 27 04:41:13 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 1JeizJ-0000r8-1o for geh-help-gnu-emacs@m.gmane.org; Thu, 27 Mar 2008 04:41:13 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Jeiyh-0003qB-Ld for geh-help-gnu-emacs@m.gmane.org; Wed, 26 Mar 2008 23:40:35 -0400 Original-Path: shelby.stanford.edu!headwall.stanford.edu!newshub.sdsu.edu!feeder.news-service.com!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!news.stack.nl!feeds.news.ox.ac.uk!news.ox.ac.uk!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 39 Original-NNTP-Posting-Host: clpc78.comlab.ox.ac.uk Original-X-Trace: frank-exchange-of-views.oucs.ox.ac.uk 1206585772 2340 129.67.148.212 (27 Mar 2008 02:42:52 GMT) Original-X-Complaints-To: newsmaster@ox.ac.uk Original-NNTP-Posting-Date: Thu, 27 Mar 2008 02:42:52 +0000 (UTC) User-Agent: Emacs Gnus Cancel-Lock: sha1:9My0JKNH6y/2wD1+q1X0tSFxXwQ= Original-Xref: shelby.stanford.edu gnu.emacs.help:157359 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:52729 Archived-At: Xavier Maillard writes: > > 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. > > Very intelligent. Why can't you have M-right and friends working > with this method ? I believe that it is because Meta_less and Meta_greater are predefined in the keymap, while Meta_up, Meta-right etc are not. I just google up the string like Meta_up is "\033\003[A" but obvious it is not working in my case. so I think if you can figure out the correct string, it should work. cheers, poppyer > > 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--- > > Really good. How did you find the keys to modify ? > > Regrds > > Xavier --