From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Drew Adams" Newsgroups: gmane.emacs.help Subject: RE: icicles doc question Date: Sat, 31 Oct 2009 23:24:14 -0700 Message-ID: <64E3B670BC4F41C9A4F1ACD031B806C3@us.oracle.com> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1257056748 612 80.91.229.12 (1 Nov 2009 06:25:48 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 1 Nov 2009 06:25:48 +0000 (UTC) To: "'Rustom Mody'" , Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Nov 01 07:25:41 2009 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 1N4Tsh-0006ZP-8w for geh-help-gnu-emacs@m.gmane.org; Sun, 01 Nov 2009 07:25:39 +0100 Original-Received: from localhost ([127.0.0.1]:51165 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N4Tsg-0002GZ-Ai for geh-help-gnu-emacs@m.gmane.org; Sun, 01 Nov 2009 01:25:38 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N4TsF-0002Fz-KP for help-gnu-emacs@gnu.org; Sun, 01 Nov 2009 01:25:11 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N4TsA-0002DX-Iu for help-gnu-emacs@gnu.org; Sun, 01 Nov 2009 01:25:10 -0500 Original-Received: from [199.232.76.173] (port=40691 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N4TsA-0002DO-Cx for help-gnu-emacs@gnu.org; Sun, 01 Nov 2009 01:25:06 -0500 Original-Received: from acsinet12.oracle.com ([141.146.126.234]:38728) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1N4TsA-0007Av-0Y for help-gnu-emacs@gnu.org; Sun, 01 Nov 2009 01:25:06 -0500 Original-Received: from acsinet15.oracle.com (acsinet15.oracle.com [141.146.126.227]) by acsinet12.oracle.com (Switch-3.3.1/Switch-3.3.1) with ESMTP id nA16OlsZ015966 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Sun, 1 Nov 2009 06:24:48 GMT Original-Received: from acsmt355.oracle.com (acsmt355.oracle.com [141.146.40.155]) by acsinet15.oracle.com (Switch-3.3.1/Switch-3.3.1) with ESMTP id nA14MYDv030476; Sun, 1 Nov 2009 06:26:19 GMT Original-Received: from abhmt004.oracle.com by acsmt357.oracle.com with ESMTP id 20745273141257056657; Sun, 01 Nov 2009 01:24:17 -0500 Original-Received: from dradamslap1 (/24.5.185.59) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Sat, 31 Oct 2009 23:24:17 -0700 X-Mailer: Microsoft Office Outlook 11 Thread-Index: Acpaq19nIa0NNg5DSh2mc3uiab0w+wADwrsg In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5579 X-Source-IP: acsmt355.oracle.com [141.146.40.155] X-Auth-Type: Internal IP X-CT-RefId: str=0001.0A0B0207.4AED29BA.00A0:SCFMA4539814,ss=1,fgs=0 X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 1) 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:69373 Archived-At: > Ive been looking around the icicles doc keybindings and find things > like C-next and C-prior > > What is next and prior? Right and left dont seem to be it. > [I am on a laptop which has only one set of arrow keys] `next' and `prior' are what Emacs calls the logical keys that correspond to the physical keys that are often labeled "Page Down" and "Page Up". `C-next' and `C-prior' are the same, with the "Control" key held down. This is mentioned in the Icicles doc, here: http://www.emacswiki.org/emacs/Icicles_-_Nutshell_View#toc7 and here: http://www.emacswiki.org/emacs/Icicles_-_Help_on_Candidates It is also discussed in the Emacs manual, nodes `Moving Point', `Minibuffer Edit', `Completion Commands', and `Scrolling'. See the Index, under `PageDown', `PageUp', `next' and `prior'. The keypad versions, `kp-next' and `kp-prior' are discussed in the Elisp manual, node `Function Keys'. HTH.