From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: PATCH: isearch-yank-until-char Date: Wed, 14 Aug 2019 18:26:23 -0400 Message-ID: References: <87tvakfnv4.fsf@red-bean.com> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="238941"; mail-complaints-to="usenet@blaine.gmane.org" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) Cc: Emacs developers To: Karl Fogel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Aug 15 00:27:31 2019 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([209.51.188.17]) by blaine.gmane.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1hy1ju-001048-Pl for ged-emacs-devel@m.gmane.org; Thu, 15 Aug 2019 00:27:31 +0200 Original-Received: from localhost ([::1]:36398 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1hy1jt-0003nZ-Mr for ged-emacs-devel@m.gmane.org; Wed, 14 Aug 2019 18:27:29 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:49541) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1hy1j0-0003mk-LL for emacs-devel@gnu.org; Wed, 14 Aug 2019 18:26:35 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hy1iz-0005HX-Al for emacs-devel@gnu.org; Wed, 14 Aug 2019 18:26:34 -0400 Original-Received: from mailscanner.iro.umontreal.ca ([132.204.25.50]:52673) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hy1iz-0005ET-4R for emacs-devel@gnu.org; Wed, 14 Aug 2019 18:26:33 -0400 Original-Received: from pmg2.iro.umontreal.ca (localhost.localdomain [127.0.0.1]) by pmg2.iro.umontreal.ca (Proxmox) with ESMTP id DB57085AF5; Wed, 14 Aug 2019 18:26:30 -0400 (EDT) Original-Received: from mail01.iro.umontreal.ca (unknown [172.31.2.1]) by pmg2.iro.umontreal.ca (Proxmox) with ESMTP id 5AB9D85AF1; Wed, 14 Aug 2019 18:26:29 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=iro.umontreal.ca; s=mail; t=1565821589; bh=h70fPOuR6JX3ENU3U7HbgwcAXizjgiaco6NMJWPwdfs=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From; b=Cea7GeFMBx/SwbJUks0eZfqKwFWbD7kLjnEqgtZFOQjMWXHNeAv9OgCXIMqvFrDYq BEoeL6RPoVRzXl3qLTtsM7X5dH8cJMjhtRiic2cd9aWtT9HWVFxz9BXPnaG+iCqyuL aDQBCt+i7GZQvQm4bCOgnnr/7ljekfR0xROEYvm2wABk/WJPlrXfT+CMW195myCiTM MpnLpdq3vvvkudtVi2x3ZNINbtknjMzxzQUnUM3x2PlbbYoXGhVCsSUhfrGLOsP0Cs QmGRDfy+Yljq5WCyZ4G8lh8zqBewmhRngTx2ofbH3JkVQONTB/BdJ5la0seeJIqnDJ rmJeiTFrx2lPg== Original-Received: from alfajor (dyn.83-228-179-131.dsl.vtx.ch [83.228.179.131]) by mail01.iro.umontreal.ca (Postfix) with ESMTPSA id 0953E12055F; Wed, 14 Aug 2019 18:26:27 -0400 (EDT) In-Reply-To: <87tvakfnv4.fsf@red-bean.com> (Karl Fogel's message of "Tue, 13 Aug 2019 22:05:19 -0500") X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 132.204.25.50 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:239370 Archived-At: > This patch implements 'isearch-yank-until-char', a new yank command in isearch. I like the idea, but would welcome even more warmly an isearch which yanks "whatever text is skipped by the next command" so it can be used to yank the next word, sexp, char, ... Stefan