zsh-workers
 help / color / mirror / code / Atom feed
From: Daniel Shahaf <d.s@daniel.shahaf.name>
To: Zsh hackers list <zsh-workers@zsh.org>
Subject: Re: PATCH: Allow using STTY= to save terminal state
Date: Wed, 19 Jan 2022 14:06:17 +0000	[thread overview]
Message-ID: <20220119140617.GC4371@tarpaulin.shahaf.local2> (raw)
In-Reply-To: <CAHYJk3ThwU2VmRgySUBH3YxAi-cOjAXrhNVXZJxox70vRF7eXA@mail.gmail.com>

Mikael Magnusson wrote on Wed, Jan 19, 2022 at 00:17:10 +0100:
> That said, running ttyctl -f and ttyctl -u around a command is a bit
> more work than simply prepending STTY=

So perhaps we need some syntactic sugar for "wrap a command with
a well-known pair of before/after modifiers".  I'm thinking of something
similar to Python context managers, where
.
    with open("foo.txt") as fd:
        ...
.
is syntactic sugar for
.
    try:
        fd = open("foo.txt")
        ...
    finally: # equivalent to «always» in zsh
        close(fd)
.
.


  parent reply	other threads:[~2022-01-19 14:07 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-18 22:24 Mikael Magnusson
2022-01-18 22:27 ` Bart Schaefer
2022-01-18 23:17   ` Mikael Magnusson
2022-01-19  1:10     ` Bart Schaefer
2022-01-19 14:06     ` Daniel Shahaf [this message]
2022-01-19 17:29       ` Bart Schaefer
2022-01-19 20:08         ` Peter Stephenson
2022-01-21  7:11           ` Daniel Shahaf
2022-01-22 22:44             ` Bart Schaefer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220119140617.GC4371@tarpaulin.shahaf.local2 \
    --to=d.s@daniel.shahaf.name \
    --cc=zsh-workers@zsh.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).