From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-3.5 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,DKIM_VALID_EF,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 Received: from zero.zsh.org (zero.zsh.org [IPv6:2a02:898:31:0:48:4558:7a:7368]) by inbox.vuxu.org (Postfix) with ESMTP id 4248D27F27 for ; Tue, 5 Mar 2024 00:20:53 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=zsh.org; s=rsa-20210803; h=List-Archive:List-Owner:List-Post:List-Unsubscribe: List-Subscribe:List-Help:List-Id:Sender:Message-ID:Date:Content-ID: Content-Type:MIME-Version:Subject:To:References:From:In-reply-to:cc:Reply-To: Content-Transfer-Encoding:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID; bh=SWp0ZSspO4Tb1fSxMQshQz2ChllivY/dQHryCKkOikc=; b=HGRvf9mUBlSXJs/JeSg8ZAySGo FCgaucHCiINWtSoZuhR5cF96KjmENqT6/c9b5Oym0s7PGM8QNReF75bUMVlg5Iw0Qd+JOisy+ezQs Jt3UOTES6mMq1ELPjNVzp2wpFdhnmUZ3DykaAopG9H47rnNLZlkqMsxf+pAlUk+e5W/HQcTyEw/Q2 Ic0XcQI0RXi4Ybg3YBVVo5Cd3pv7FRrxuxe3me2RjBtvWCl/ussZel7F/P92c0AsM+ymOrarIWCXr DPhJA/UTxhvScEY2L/ruozLnc/5aR1vjRDx9gpq6lCSgj17BKTOqxWsFW0sm4BODNnFstCWk8Rdmv Na0vV9ug==; Received: by zero.zsh.org with local id 1rhHc5-0000dm-2a; Mon, 04 Mar 2024 23:20:53 +0000 Received: by zero.zsh.org with esmtpsa (TLS1.3:TLS_AES_256_GCM_SHA384:256) id 1rhHbq-0000K9-4X; Mon, 04 Mar 2024 23:20:38 +0000 Received: from [192.168.178.21] (helo=hydra) by mail.kiddle.eu with esmtp(Exim 4.97.1) (envelope-from ) id 1rhHbp-00000000MGy-1yfO; Tue, 05 Mar 2024 00:20:37 +0100 cc: zsh-workers@zsh.org In-reply-to: From: Oliver Kiddle References: To: midchildan Subject: Re: [PATCH v2] incarg: add a backward variant and make it repeatable MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <85618.1709594437.1@hydra> Date: Tue, 05 Mar 2024 00:20:37 +0100 Message-ID: <85619-1709594437.460908@I4Fj.Iblg.3PPl> X-Seq: 52674 Archived-At: X-Loop: zsh-workers@zsh.org Errors-To: zsh-workers-owner@zsh.org Precedence: list Precedence: bulk Sender: zsh-workers-request@zsh.org X-no-archive: yes List-Id: List-Help: , List-Subscribe: , List-Unsubscribe: , List-Post: List-Owner: List-Archive: On 29 Feb, midchildan wrote: > The previous patch failed to handle negative zeros when the increment > amount was zero or less. So I updated the patch to fix this and added a > couple more test cases. Thanks. I have now applied this. Thanks for sending a fresh patch. > # - vim-sync-incarg / vim-sync-decarg > # > # This combines the behavior of the vim- and sync- variants. It's inspired by > # Vim's g_CTRL-A / g_CTRL-X. vim help for g_Ctrl-A says "print memory usage statistics.". Is this perhaps a feature of some plugin? Or do you mean the visual mode g_Ctrl-A? Oliver