From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Emanuel Berg Newsgroups: gmane.emacs.help Subject: Re: one key-press to comment out lines of code? Date: Sat, 03 May 2014 04:43:36 +0200 Organization: Aioe.org NNTP Server Message-ID: <8738grlgyv.fsf@nl106-137-194.student.uu.se> References: <87fvku94ms.fsf@skimble.plus.com> <87y4ymiqfg.fsf@nl106-137-194.student.uu.se> <87a9b1iogu.fsf@nl106-137-194.student.uu.se> <87k3a5ukv4.fsf@nl106-137-194.student.uu.se> <878uqjlix4.fsf@nl106-137-194.student.uu.se> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1399085128 26505 80.91.229.3 (3 May 2014 02:45:28 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 3 May 2014 02:45:28 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat May 03 04:45:22 2014 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1WgPx1-0006p6-QF for geh-help-gnu-emacs@m.gmane.org; Sat, 03 May 2014 04:45:19 +0200 Original-Received: from localhost ([::1]:47085 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WgPx1-0005gD-Ee for geh-help-gnu-emacs@m.gmane.org; Fri, 02 May 2014 22:45:19 -0400 Original-Path: usenet.stanford.edu!news.kjsl.com!feeder.erje.net!eu.feeder.erje.net!newsfeed.datemas.de!rt.uk.eu.org!aioe.org!.POSTED!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 31 Original-NNTP-Posting-Host: VVbyYd/iFZoeWNmD9i++cQ.user.speranza.aioe.org Original-X-Complaints-To: abuse@aioe.org User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) X-Notice: Filtered by postfilter v. 0.8.2 Cancel-Lock: sha1:geBFLvsepAz1Jas/ZW5Hn1OTTlM= Mail-Copies-To: never Original-Xref: usenet.stanford.edu gnu.emacs.help:205283 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:97550 Archived-At: > M-u does work in zsh: it uppercases the following > word. M-- doesn't seem to do the same in bash and > zsh, though, so that doesn't work - but the > functionality is probably just bound to some other > key in zsh. However, M-b (instead of M--) and then > M-u work (M-b as in backward-word, just as in Emacs). Made it work like this: upcase-previous () { zle backward-word zle up-case-word } zle -N upcase-previous bindkey Ē upcase-previous Ē is the key the VT sends on , which puts Emacs in caps-mode - so here, I can use the same key to upcase the last word - it is not as good as in Emacs, because for a split second you see the "incorrect" filename, and you type it, and that might bite you later if you do it too much - but still sort of cool. Wow, I'm certainly happy I had this discussion with you, otherwise I wouldn't have thought of looking this up. -- underground experts united: http://user.it.uu.se/~embe8573