zsh-users
 help / color / mirror / code / Atom feed
* Expanding interactively aliases
@ 2001-02-20 13:47 Michal Maru¹ka
  2001-02-20 15:45 ` Peter Stephenson
  0 siblings, 1 reply; 2+ messages in thread
From: Michal Maru¹ka @ 2001-02-20 13:47 UTC (permalink / raw)
  To: zsh-users


Is it possible (as in Bash 2.03) to expand an alias 
and edit it after ?


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Expanding interactively aliases
  2001-02-20 13:47 Expanding interactively aliases Michal Maru¹ka
@ 2001-02-20 15:45 ` Peter Stephenson
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Stephenson @ 2001-02-20 15:45 UTC (permalink / raw)
  To: Zsh users list

Michal Maru ka wrote:
> Is it possible (as in Bash 2.03) to expand an alias 
> and edit it after ?

You could use this function (e.g. `edit-alias myalias'), if what you want
is to change the definition of the alias.

edit-alias() {             
  local al
  al="$(alias $1)"  ||  return 1 
  print -z alias $al
}

Otherwise, if you just want the alias inlined in the code, and have a
recent zsh 3.1, try

expand-alias() {
  # for safety, in case there's an = which will mess things up...
  local alias=${LBUFFER#*=}

  if ! alias=$(alias $LBUFFER); then
    zle beep
    return 1
  fi

  LBUFFER=${(Q)${alias#*=}}
}
zle -N expand-alias
bindkey '^xa' expand-alias

and hit ^xa just after the alias (I'm assuming it's at the beginning of the
line, else there's more work to be done).

Quite possibly Sven has already added an option to the _expand completer by
now, otherwise I'll try and remember to look at that.

-- 
Peter Stephenson <pws@csr.com>                  Software Engineer
Cambridge Silicon Radio, Unit 300, Science Park, Milton Road,
Cambridge, CB4 0XL, UK                          Tel: +44 (0)1223 392070


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2001-02-20 15:46 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-02-20 13:47 Expanding interactively aliases Michal Maru¹ka
2001-02-20 15:45 ` Peter Stephenson

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).