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: How to bind meta+shift in linux Date: Sun, 03 Aug 2008 20:47:22 +0900 Organization: Bentium Ltd. (CN99) Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1217771655 10526 80.91.229.12 (3 Aug 2008 13:54:15 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 3 Aug 2008 13:54:15 +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:55:05 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 1KPe37-0005G3-DM for geh-help-gnu-emacs@m.gmane.org; Sun, 03 Aug 2008 15:55:05 +0200 Original-Received: from localhost ([127.0.0.1]:52552 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KPe2C-0001aW-Ju for geh-help-gnu-emacs@m.gmane.org; Sun, 03 Aug 2008 09:54:08 -0400 Original-Path: news.stanford.edu!headwall.stanford.edu!newshub.sdsu.edu!newsgate.cuhk.edu.hk!news.cn99.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 18 Original-NNTP-Posting-Host: softbank218118058050.bbtec.net Original-X-Trace: news.cn99.com 1217764042 17128 218.118.58.50 (3 Aug 2008 11:47:22 GMT) Original-X-Complaints-To: usenet@news.cn99.com Original-NNTP-Posting-Date: Sun, 3 Aug 2008 11:47:22 +0000 (UTC) User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.2 (gnu/linux) Cancel-Lock: sha1:0WE5Nm8R9alys9ZT1BBxDJh+MgU= Original-Xref: news.stanford.edu gnu.emacs.help:160834 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:56182 Archived-At: Hi I see a ergonomic keybinding from http://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.