From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Ke Lu Newsgroups: gmane.emacs.help Subject: Re: How to bind meta+shift in linux Date: Sun, 03 Aug 2008 22:04:32 +0900 Organization: Bentium Ltd. (CN99) Message-ID: References: <8c06b983-fd26-4506-a6be-ba65d6fd1fae@59g2000hsb.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1217771765 10903 80.91.229.12 (3 Aug 2008 13:56:05 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 3 Aug 2008 13:56: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 Sun Aug 03 15:56:55 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 1KPe4s-0005n2-OX for geh-help-gnu-emacs@m.gmane.org; Sun, 03 Aug 2008 15:56:54 +0200 Original-Received: from localhost ([127.0.0.1]:53371 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KPe3x-0003mC-Sa for geh-help-gnu-emacs@m.gmane.org; Sun, 03 Aug 2008 09:55:57 -0400 Original-Path: news.stanford.edu!newsfeed.stanford.edu!newsfeed.berkeley.edu!ucberkeley!newsgate.cuhk.edu.hk!news.cn99.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 31 Original-NNTP-Posting-Host: softbank218118058050.bbtec.net Original-X-Trace: news.cn99.com 1217768672 8022 218.118.58.50 (3 Aug 2008 13:04:32 GMT) Original-X-Complaints-To: usenet@news.cn99.com Original-NNTP-Posting-Date: Sun, 3 Aug 2008 13:04:32 +0000 (UTC) User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.2 (gnu/linux) Cancel-Lock: sha1:U4mWIKrzEILPFlU/dSy4tKSkmyA= Original-Xref: news.stanford.edu gnu.emacs.help:160837 X-Mailman-Approved-At: Sun, 03 Aug 2008 09:52:58 -0400 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:56184 Archived-At: X window. ubuntu 8.04. When I press alt-shift-j, it works as alt-j When I press shift-alt-j, it works as J weber writes: > On Aug 3, 8:47 am, Ke Lu wrote: >> Hi >> >> I see a ergonomic keybinding fromhttp://xahlee.org/emacs/ergonomic_emacs_keybinding.html >> >> But meta+shift+somekey takes no effect in linux. >> >> ie >> ;; Move to beginning/ending of file >> (global-set-key (kbd "M-J") 'beginning-of-buffer)  ; was nil >> (global-set-key (kbd "M-L") 'end-of-buffer)  ; was nil >> >> (global-set-key (kbd "M-S-j") 'beginning-of-buffer)  ; was nil >> (global-set-key (kbd "M-S-l") 'end-of-buffer)  ; was nil >> >> Both of them takes no effect. >> >> Thanks. > > X or console? > What you pasted works on my linux,,, perhaps try global-set-key > interactively to find out more? > > -weber