zsh-users
 help / color / mirror / code / Atom feed
From: Bart Schaefer <schaefer@brasslantern.com>
To: Zsh Users <zsh-users@zsh.org>
Subject: Re: real time alias?
Date: Sat, 17 Mar 2018 16:17:54 -0700	[thread overview]
Message-ID: <CAH+w=7Y0UiGFiXO+GfAb=tuvanwvnnoPq+6TuVVemXZNSgbwkg@mail.gmail.com> (raw)
In-Reply-To: <20180315214450.sle4bsb3ab6dt56i@prometheus.u-strasbg.fr>

I know this is from a couple of days ago, but:

On Thu, Mar 15, 2018 at 2:44 PM, Marc Chantreux <eiro@phear.org> wrote:
>
>     rip () {
>         print $1 wrote
>         "$@"
>         print then $1 died
>     }
>     alias stephen='print a brief history of time'
>     rip stephen hawkings

This isn't a very good example because "rip" would not use the alias
even if "stephen" had been explicitly mentioned in the function body.
You'd have to define them in the opposite order.

Also this:

> warn_ () { local r=$?; print -u2 "$*"; return $r }
> alias warn='warn_ at $0 line $LINENO, warning:'

Can be done directly like this:

alias warn='() { local r=$?; print -u2 "$*"; return $r } "at $0 line
$LINENO, warning: "'

in any zsh from the past several years that supports anonymous function scopes.


  parent reply	other threads:[~2018-03-17 23:18 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-15 17:51 Ray Andrews
2018-03-15 17:57 ` Jérémie Roquet
2018-03-15 18:13   ` Ray Andrews
2018-03-15 21:44     ` Marc Chantreux
2018-03-15 21:46       ` Marc Chantreux
2018-03-16 17:19         ` Justin M Wozniak
2018-03-16 17:41           ` Ray Andrews
2018-03-17 16:00             ` Marc Chantreux
2018-03-16 17:51           ` Marc Chantreux
2018-03-16 16:47       ` Ray Andrews
2018-03-16 17:41         ` Marc Chantreux
2018-03-16 18:13         ` Bart Schaefer
2018-03-16 18:56           ` Ray Andrews
2018-03-18 23:01             ` Bart Schaefer
2018-03-19  0:05               ` Ray Andrews
2018-03-17 23:17       ` Bart Schaefer [this message]
     [not found] <98aa0638-97ed-dfe0-8dd2-39129d02c084__39937.2481661432$1521136270$gmane$org@eastlink.ca>
2018-03-17 22:47 ` Stephane Chazelas
2018-03-18  3:20   ` Ray Andrews

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='CAH+w=7Y0UiGFiXO+GfAb=tuvanwvnnoPq+6TuVVemXZNSgbwkg@mail.gmail.com' \
    --to=schaefer@brasslantern.com \
    --cc=zsh-users@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).