From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Craig Muth Newsgroups: gmane.emacs.devel Subject: control-lock.el - give your pinky a rest Date: Sat, 24 Nov 2007 16:40:29 -0800 (PST) Message-ID: <818082.25218.qm@web60025.mail.yahoo.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1983132666==" X-Trace: ger.gmane.org 1195961312 8826 80.91.229.12 (25 Nov 2007 03:28:32 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 25 Nov 2007 03:28:32 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Nov 25 04:28:38 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1Iw8Af-0000fO-KQ for ged-emacs-devel@m.gmane.org; Sun, 25 Nov 2007 04:28:37 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Iw8AQ-0005xG-Uv for ged-emacs-devel@m.gmane.org; Sat, 24 Nov 2007 22:28:22 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Iw5Y1-0002nH-3B for emacs-devel@gnu.org; Sat, 24 Nov 2007 19:40:33 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Iw5Xz-0002lU-9U for emacs-devel@gnu.org; Sat, 24 Nov 2007 19:40:32 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Iw5Xz-0002lJ-31 for emacs-devel@gnu.org; Sat, 24 Nov 2007 19:40:31 -0500 Original-Received: from web60025.mail.yahoo.com ([209.73.178.73]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1Iw5Xy-0008Io-I0 for emacs-devel@gnu.org; Sat, 24 Nov 2007 19:40:30 -0500 Original-Received: (qmail 27054 invoked by uid 60001); 25 Nov 2007 00:40:29 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Message-ID; b=nFLjkfvCQreBckTFovYs4A/NVvO4NLItb83eK/7gFfaOLeidQNHCjtdqfTCodLmQmR84nIa00vz/2KkIawaJGJ8HGv1gTbH0AFI6ufRVfNbiMVS0h6hyHYPEre/CbDYm6enNgeTqeNXagf7xIllPgYTYUxR4b9R6g9RM3mVrx+o=; X-YMail-OSG: 0i9CTTwVM1lE8b4Yq9OXGnN.DOPP6mryDf3TJ3af4jO_TKI1jd1FqrYVqTz.3U5T.OQPecOaJpJFeU8qGM0kFCJGnQ.lSyst1f.N78j61E.JfjgHz54h Original-Received: from [64.158.141.77] by web60025.mail.yahoo.com via HTTP; Sat, 24 Nov 2007 16:40:29 PST X-Mailer: YahooMailRC/818.27 YahooMailWebService/0.7.157 X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. X-Mailman-Approved-At: Sat, 24 Nov 2007 22:28:18 -0500 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:84097 Archived-At: --===============1983132666== Content-Type: multipart/alternative; boundary="0-312424017-1195951229=:25218" --0-312424017-1195951229=:25218 Content-Type: text/plain; charset=us-ascii I've posted control-lock.el to the emacswiki: http://www.emacswiki.org/cgi-bin/emacs-en/ControlLock It is sort of like caps-lock but for the control key. You type a sequence to enable it and it behaves as though you're holding control down until you type ' to exit. I'm interested in getting some feedback. I've wanted to implement this for a long time and am finding it very useful so far. Two problems I've noticed: The default key to enable it (C-,) doesn't work in a console. I'm thinking M-l might be a decent alternative key. And the way I currently show it as being enabled (changing the cursor to an underscore) I'm guessing doesn't work in terminal mode either. Any suggestions about a better way to show that it's enabled? --Craig ____________________________________________________________________________________ Never miss a thing. Make Yahoo your home page. http://www.yahoo.com/r/hs --0-312424017-1195951229=:25218 Content-Type: text/html; charset=us-ascii
I've posted control-lock.el to the emacswiki:

  http://www.emacswiki.org/cgi-bin/emacs-en/ControlLock

It is sort of like caps-lock but for the control key.  You type a sequence to enable it and it behaves as though you're holding control down until you type ' to exit.

I'm interested in getting some feedback.  I've wanted to implement this for a long time and am finding it very useful so far.

Two problems I've noticed: The default key to enable it (C-,) doesn't work in a console.  I'm thinking M-l might be a decent alternative key.  And the way I currently show it as being enabled (changing the cursor to an underscore) I'm guessing doesn't work in terminal mode either.  Any suggestions about a better way to show that it's enabled?

--Craig



Be a better sports nut! Let your teams follow you with Yahoo Mobile. Try it now. --0-312424017-1195951229=:25218-- --===============1983132666== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-devel mailing list Emacs-devel@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-devel --===============1983132666==--