From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26737 invoked by alias); 13 Feb 2008 10:02:24 -0000 Received: (qmail 26727 invoked by uid 22791); 13 Feb 2008 10:02:24 -0000 X-Spam-Check-By: sourceware.org Received: from s200aog17.obsmtp.com (HELO s200aog17.obsmtp.com) (207.126.144.131) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 13 Feb 2008 10:01:56 +0000 Received: from source ([164.129.1.35]) (using TLSv1) by eu1sys200aob017.postini.com ([207.126.147.11]) with SMTP; Wed, 13 Feb 2008 10:01:45 UTC Received: from zeta.dmz-eu.st.com (ns2.st.com [164.129.230.9]) by beta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 56779DAFD; Wed, 13 Feb 2008 09:59:31 +0000 (GMT) Received: from mail1.cro.st.com (mail1.cro.st.com [164.129.40.131]) by zeta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 114304C085; Wed, 13 Feb 2008 09:45:09 +0000 (GMT) Received: from crx595.cro.st.com (crx595.cro.st.com [164.129.44.95]) by mail1.cro.st.com (MOS 3.7.5a-GA) with ESMTP id CNG84242 (AUTH "denis pilat"); Wed, 13 Feb 2008 10:45:47 +0100 (CET) Message-ID: <47B2BC23.10102@st.com> Date: Wed, 13 Feb 2008 10:02:00 -0000 From: Denis PILAT User-Agent: Thunderbird 2.0.0.9 (X11/20071031) MIME-Version: 1.0 To: =?UTF-8?B?QW5kcsOpIFDDtm5pdHo=?= Cc: gdb@sourceware.org Subject: Re: Binding F10 key to 'next' References: <47B11209.9090803@toyon.com> <1202845518.19253.99.camel@localhost.localdomain> <200802131012.38311.apoenitz@trolltech.com> In-Reply-To: <200802131012.38311.apoenitz@trolltech.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-IsSubscribed: yes Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2008-02/txt/msg00087.txt.bz2 If you're lazy like I am, you can also define some user commands: You can even put them in a .gdbinit script like: define d set confirm off del b set confirm on end document d delete all breakpoints end Denis André Pönitz wrote: > On Tuesday 12 February 2008 20:45:18 Michael Snyder wrote: > >> On Mon, 2008-02-11 at 19:27 -0800, Chris Stankevitz wrote: >> >>> Is it possible to bind the F10 key to the "next" operation? >>> [...] >>> >> If it is possible (which is likely), it would have to be >> supported by your terminal or window manager, not by gdb. >> > > Indeed. > > If the environment you live in uses readline you can try putting > the following line (including all quotes) in your ~/.inputrc : > > "\e[21~": "next\n" > > Regards, > Andre' > >