From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3610 invoked by alias); 27 Aug 2015 17:22:32 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 36299 Received: (qmail 7167 invoked from network); 27 Aug 2015 17:22:31 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.0 X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:message-id:date:in-reply-to:comments :references:to:subject:mime-version:content-type; bh=LvPQt7s/27NDgiqlRHCtUQ9sY7ZergdpoNPXUu61Rto=; b=Vt6nlccYZxXi0I3JHsHJFkmL6NHcFTlwVjCAi3oIUMQI6OJ6ofhWEaJ6VR91C2ve+V qR05YYlNxw8rU5ucmvPYE9PncMLhWfManloMU6UleEqLALLVqUGGIn2OZs/xIGy6n4PQ jOk8HqWyREAQRAJN+GqfGLirHZlXe35d4dkJv+1zNmAmUvP01gGL/oZoxc/eJ0Q74ZET EaS9FWrY5foBNTD656IG+g4qujEUjldQhZrcznP5IMMFKskD3XDsP1zv9mOmDDwn/5VV ljfN6BALgFFKaOxUkmalf6Sjtdaix0D/VpzREdhnfG79NAwu0dcKJEXzogkagz/+jJJM Ik9g== X-Gm-Message-State: ALoCoQkCoLnE1IIJX21aTfHvtg2uKpxX3BJtRwTCTOZGaoZnSQ84yzjOLFuT4ri51fsvEmWwJVlQ X-Received: by 10.60.69.2 with SMTP id a2mr879110oeu.3.1440696149792; Thu, 27 Aug 2015 10:22:29 -0700 (PDT) From: Bart Schaefer Message-Id: <150827102226.ZM1236@torch.brasslantern.com> Date: Thu, 27 Aug 2015 10:22:26 -0700 In-Reply-To: <20150827165639.GB9970@sym.noone.org> Comments: In reply to Axel Beckert "Re: Escaping of pasted URLs no more works with 5.0.8-test-3 (compared to 5.0.8)" (Aug 27, 6:56pm) References: <20150827160910.GZ9970@sym.noone.org> <150827092834.ZM558@torch.brasslantern.com> <20150827165639.GB9970@sym.noone.org> X-Mailer: OpenZMail Classic (0.9.2 24April2005) To: zsh-workers@zsh.org Subject: Re: Escaping of pasted URLs no more works with 5.0.8-test-3 (compared to 5.0.8) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii On Aug 27, 6:56pm, Axel Beckert wrote: } } autoload -Uz bracketed-paste-magic } zle -N bracketed-paste bracketed-paste-magic } } Now it seems to work again, thanks! Interestingly zsh 5.0.8 seems to } have no issue with that config either, so I don't have to guard it } with some version test. Neat! There is no bracketed-paste built-in widget in 5.0.8 or before, so there is no binding to invoke it and the autoload will never need to resolve. See zsh-users/20450 for how to add bracketed-paste support to older versions as a user-defined widget, but it'd take some wrangling to combine that with bracketed-paste-magic. I briefly toyed with making bracketed-paste-magic backwards-installable, but decided that was too ugly.