zsh-users
 help / color / mirror / code / Atom feed
From: Peter Stephenson <p.stephenson@samsung.com>
To: zsh-users@zsh.org
Subject: Re: alias -s with background
Date: Wed, 26 Jun 2013 09:49:22 +0100	[thread overview]
Message-ID: <20130626094922.1e98ea2d@pwslap01u.europe.root.pri> (raw)
In-Reply-To: <CALfoNRwGYNc98+-7bv2GrCDvXC0v39hEook_K=Lc1GZ9Nr3bKg@mail.gmail.com>

On Wed, 26 Jun 2013 09:50:20 +0200
Ivan Zanolla <ivan.zanolla@gmail.com> wrote:
> I want start a program with alias -s. But if I wrote
> 
> alias -s pdf = evince &
> 
> don't work. Why?

That's put the alias command into the background; also, you can't have
spaces around the "=" or they are treated as different aliases.  "alias
-s", like other variants of alias, is limited to putting a new command
at the start of the line.  You need to do it something like this:

  evince_bg() { evince "$@" & }
  alias -s pdf=evince_bg

(See also zsh-mime-setup, documented in the zshcontrib manual, if you
already have MIME information for this in mailcap and mime.types files.)

pws


      reply	other threads:[~2013-06-26  8:59 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-06-26  7:50 Ivan Zanolla
2013-06-26  8:49 ` Peter Stephenson [this message]

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=20130626094922.1e98ea2d@pwslap01u.europe.root.pri \
    --to=p.stephenson@samsung.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).