Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!news.stack.nl!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'assignment': 0.07; 'modify': 0.07; 'suppose': 0.07; 'executed': 0.09; 'executes': 0.09; 'cc:addr:python-list': 0.11; 'python': 0.11; 'assume': 0.14; "(i'm": 0.16; 'cool.': 0.16; 'fetches': 0.16; 'from:addr:pobox.com': 0.16; 'from:addr:skip': 0.16; 'pressing': 0.16; 'sequence:': 0.16; 'statement.': 0.16; 'pushed': 0.16; ':-)': 0.16; 'sender:addr:gmail.com': 0.17; 'wrote:': 0.18; 'basically': 0.19; 'not,': 0.20; '>>>': 0.22; 'input': 0.22; 'aug': 0.22; 'cc:addr:python.org': 0.22; 'print': 0.22; 'skip': 0.24; 'regardless': 0.24; 'question': 0.24; 'cc:2**0': 0.24; 'first,': 0.26; 'second': 0.26; 'gets': 0.27; 'header:In-Reply- To:1': 0.27; 'am,': 0.29; 'statement': 0.30; 'message- id:@mail.gmail.com': 0.30; 'lines': 0.31; 'subject:next': 0.31; 'guess': 0.33; 'could': 0.34; 'received:google.com': 0.35; 'next': 0.36; 'changing': 0.37; 'skip:o 20': 0.38; 'does': 0.39; 'sure': 0.39; 'even': 0.60; 'above,': 0.60; 'you.': 0.62; 'back': 0.62; "you've": 0.63; '(that': 0.65; 'line,': 0.68; 'press': 0.70; 'subject:get': 0.81; 'disappear': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=BZF1VDwIKSoy09gViCVAPFVVTMKjDvFtroqdFjySyCw=; b=YTer6y1rWQxZ2ENI+i1HS4rUskq9pFYmp6m8RSvPiyPECic7TDZN5SlnLL0p/7+S29 RfNrpqukz9PykaHonp2YVZEBpJeab0O6tuJS1NW1vBmadasbEA2RrD+/j4coLiIlSDix oeiKt8HYaeWz+P7sGb+vWffr3cpx8ArmT2vR4eHsPgSADoWqBuK5S9Z9zkwRqYlDXoyR 4BGScRvsNwI3iajF6G+HRMpCqOblRIORsRNBYHthawJSqZmqnIquFotmV7QzsO+D2OQ0 uU5vNpepeAA8fVb3b6qwTGjWfhw/p3GnX/u0SUu0luKAelTmMa7eqhbXKE6DPHcKLilR 4FEQ== MIME-Version: 1.0 X-Received: by 10.50.164.202 with SMTP id ys10mr5466409igb.6.1408452345964; Tue, 19 Aug 2014 05:45:45 -0700 (PDT) Sender: skip.montanaro@gmail.com In-Reply-To: <87bnrgooli.fsf@nautilus.nautilus> References: <232acf45-096d-466a-aa75-06d8c378b128@googlegroups.com> <53cc376e$0$2898$e4fe514c@news.xs4all.nl> <53926733-5e65-482f-96bc-0171c6a93d59@googlegroups.com> <4882fd4d-b772-4ebb-8aaa-0c20be6051b6@googlegroups.com> <53cd47fc$0$6574$c3e8da3$5496439d@news.astraweb.com> <87egwdiqfq.fsf_-_@nautilus.nautilus> <87bnrgooli.fsf@nautilus.nautilus> Date: Tue, 19 Aug 2014 07:45:45 -0500 X-Google-Sender-Auth: ytRJBR2KgDPtBTaI-nsK6h1XSQk Subject: Re: Adapt bash readline operate-and-get-next From: Skip Montanaro To: Lele Gaifax Content-Type: text/plain; charset=UTF-8 Cc: Python X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 43 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1408452671 news.xs4all.nl 2922 [2001:888:2000:d::a6]:46192 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:76560 On Tue, Aug 19, 2014 at 3:44 AM, Lele Gaifax wrote: >> Does your position in the history disappear if you >> operate_and_get_next(), then modify the next recalled input line? > > Not sure what you mean with "disappear": basically o-a-g-n "accepts" the > current line (that is, "executes" it, and this means it gets pushed at > the top of history), regardless you edited or not, then fetches the > following input line from the history and presents it to you. > > Given these lines in the history: > > >>> a=10 > >>> a-=1 > >>> print(a) > 9 Suppose you have the above, as you indicated. Ctl-P your way back to the a=10 line. Press Ctl-O. It executes that assignment and fills the input buffer with "a-=1". Instead of just pressing Ctl-O, type a "1" first, changing the input buffer to "a-=11". *Now* press Ctl-O. I assume it executes that statement. You've edited the line, however. Does it present you with the print statement or not? I guess I could have answered my own question using bash: firefly% a=10 firefly% a='a' firefly% echo $a a firefly% a=10 firefly% a='b' firefly% echo $a b The second batch of three lines were executed from history with this key sequence: Ctl-P Ctl-P Ctl-P Ctl-O DEL DEL b ' Ctl-O RET That's pretty cool. Even if I never live to see it in Python (I'm still using 2.7), I will definitely start using it in bash. :-) Skip