zsh-users
 help / color / mirror / code / Atom feed
From: Bart Schaefer <schaefer@brasslantern.com>
To: "zsh-users@zsh.org" <zsh-users@zsh.org>, John <da_audiophile@yahoo.com>
Subject: Re: Errors with my youtube-dl function in ~/.zshrc but I am unsure why
Date: Sun, 16 Aug 2015 09:37:22 -0700	[thread overview]
Message-ID: <150816093722.ZM12415@torch.brasslantern.com> (raw)
In-Reply-To: <1212377169.5264610.1439708089255.JavaMail.yahoo@mail.yahoo.com>

} In the past (month ago), this function worked as-is calling the
} command prefixed by noglob as you recommended. Is there any way I can
} roll it into the function?

Do you mean it previously worked WITHOUT prefixing by noglob?

Has the version of zsh you are using changed during that time?

The easiest thing to do is this:

    yt() { [[ -z "$1" ]] || noglob youtube-dl -q "$1" &; }
    alias yt='noglob yt'

Note you want the alias declaration after the function definition.

There's no way to include it inside the function itself because the
glob is attempted before the function is called.


  reply	other threads:[~2015-08-16 16:37 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-16  6:32 John
2015-08-16  6:44 ` Eric Cook
2015-08-16  6:54   ` John
2015-08-16 16:37     ` Bart Schaefer [this message]
2015-08-16 16:43       ` John
2015-08-16 17:23         ` Bart Schaefer
2015-08-17 21:58       ` zzapper
2015-08-16 16:43     ` Gowtham M
2015-08-16 21:54       ` Mikael Magnusson

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=150816093722.ZM12415@torch.brasslantern.com \
    --to=schaefer@brasslantern.com \
    --cc=da_audiophile@yahoo.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).