From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Eli Zaretskii" Newsgroups: gmane.emacs.help Subject: Re: How can I do these in Emacs? Date: Sat, 19 Apr 2003 10:08:11 +0200 Sender: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: <9003-Sat19Apr2003100810+0300-eliz@elta.co.il> References: Reply-To: Eli Zaretskii NNTP-Posting-Host: main.gmane.org X-Trace: main.gmane.org 1050736281 17170 80.91.224.249 (19 Apr 2003 07:11:21 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sat, 19 Apr 2003 07:11:21 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Sat Apr 19 09:11:20 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 196mVM-0004Sn-00 for ; Sat, 19 Apr 2003 09:11:20 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 196mUv-0007c3-00 for gnu-help-gnu-emacs@m.gmane.org; Sat, 19 Apr 2003 03:10:53 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 196mUX-0007Vj-00 for help-gnu-emacs@gnu.org; Sat, 19 Apr 2003 03:10:29 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 196mUW-0007Qn-00 for help-gnu-emacs@gnu.org; Sat, 19 Apr 2003 03:10:29 -0400 Original-Received: from gandalf.inter.net.il ([192.114.186.22]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 196mUV-0007Mc-00 for help-gnu-emacs@gnu.org; Sat, 19 Apr 2003 03:10:28 -0400 Original-Received: from zaretsky (cable-130-90.inter.net.il [213.8.130.90]) by gandalf.inter.net.il (Mirapoint Messaging Server MOS 3.2.2-GA) with ESMTP id AMF52291; Sat, 19 Apr 2003 10:10:24 +0300 (IDT) Original-To: help-gnu-emacs@gnu.org X-Mailer: emacs 21.3.50 (via feedmail 8 I) and Blat ver 1.8.9 In-reply-to: (message from wang yin on 19 Apr 2003 13:53:56 +0800) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:8612 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:8612 > From: wang yin > Newsgroups: gnu.emacs.help > Date: 19 Apr 2003 13:53:56 +0800 > > 1. How can I do something like a "o" command in vi with Emacs? I > always C-e to the end of the line and press RET. Are there any > faster ways? Is "C-o" what you want (I don't really know what does "o" do in vi)? > 2. How can I go to start or end of the if {...} block when the pointer > is inside the block? "M-C-u" goes to the start of the block; to go to the end, follow "M-C-u" by "M-C-f". This works for _any_ block, not just an `if'.