From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6952 invoked by alias); 22 May 2014 16:16:32 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: X-Seq: 18842 Received: (qmail 6259 invoked from network); 22 May 2014 16:16:28 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.2 X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:content-type; bh=L2baud2eGgCY0AKsxS2Nq5hEPvC7fgfGucmhfyvxgOE=; b=NuzX70rUpbWwv1iTUb9XuGZVWrgMz3R3TXx6nzaGVFtIPF+0YxKdQ7vEFAoTAa0Cix rUFPw7EKG5BJJk3CSYBP2OnS1dgfNqtjt/80Qo8OzLEj+XSuxm6szrEHxIgg14IrkinM FqRR/7kyM7c11JTccqcFT8E60YIHA2KBwl2ZHToYl7LzND/hV3663oEYUPuTZgEM8sL2 yK8UZ5NJoKlnU5z3Y1DDFrQf6Nc5ApCC/Gtcf4+NHGMwv6V8Uue8ZLmUJQDXUjSHvBYD WwyI+Y2yvy4Up/+ZNTFqBCMj1oA0UWbybPwzWA7Fxe2yJ6nYXsxd9+S9o/jXu7Q49/q3 oSGw== X-Gm-Message-State: ALoCoQkK0DUyotmfVm331WMfT+TAFrNX//nNWORqSyRnz6ct8LreaySkCkyrbDC4rw4tS+pkSEa8 X-Received: by 10.224.167.132 with SMTP id q4mr15808065qay.77.1400775383946; Thu, 22 May 2014 09:16:23 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <75CA7BD7-0251-421F-BADB-5A138950CCC8@me.com> References: <20140521214824.19d4feaf@hogwart.bsdlocal.net> <87zjia3mhq.fsf@ft.bewatermyfriend.org> <20140522062530.38b48941@hogwart.bsdlocal.net> <75CA7BD7-0251-421F-BADB-5A138950CCC8@me.com> From: Micah Elliott Date: Thu, 22 May 2014 09:15:43 -0700 Message-ID: Subject: Re: bindkey problem To: Zsh Users Content-Type: text/plain; charset=ISO-8859-1 > why would you want to disable [^s / ^q]? Good question. They're of historic utility (I don't find their default pause/resume useful), and mostly just cause confusion when accidentally pressed. Furthermore, it's great to free up a couple more convenient/comfortable sequences. Traditionally, tools like screen and tmux use ^a and ^b as their hotkeys. But those have terrible collisions with emacs/vi bindings. I bind ^q for my tmux "prefix" and love it. It's also very similar to reaching for vim's ^w window bindings. Highly recommended tmux binding. -- twitter:@MicahElliott | email:mde@MicahElliott.com | http://membean.com Remember your words with Membean! On Thu, May 22, 2014 at 7:00 AM, Akihiko Hohji wrote: > Just curiosity, why would you want to disable these two blndkey ? > > AKi > > > On May 22, 2014, at 12:25 AM, Manfred Lotz wrote: > >> On Wed, 21 May 2014 18:51:57 -0700 >> Micah Elliott wrote: >> >>> You might also need to do this: >>> >>> stty stop '' >>> stty start '' >>> stty -ixon >>> stty -ixoff >>> >>> (from https://coderwall.com/p/ltiqsq) >>> >>> But maybe that's what no_flow_control is effectively doing. >>> >> >> Yes, probably as no_flow_control was sufficient to turn it off. No additional stty >> commands required. >> >> -- >> Thanks, Manfred >