From: zzapper <david@tvis.co.uk>
To: zsh-users@sunsite.dk
Subject: Re: Tip of the day: suspend-shell widget
Date: Fri, 24 Sep 2004 13:04:15 +0100 [thread overview]
Message-ID: <2838l0dbskm6ospea8p708vh0p276i53gq@4ax.com> (raw)
In-Reply-To: <200409231044.i8NAiRFE013339@news01.csr.com>
On Thu, 23 Sep 2004 11:44:26 +0100, wrote:
>I was rather to surprised to find the following zle widget works
>seamlessly (at least with the latest version of zsh), but then I'm a
>cynic. Save it as suspend-shell in your $fpath.
>
>Sample use:
>
>autoload suspend-shell
>zle -N suspend-shell
>bindkey '^z' suspend-shell
>
>^z now suspends the shell in the middle of the line editor. When you
>bring it back to the foreground, you are exactly where you left off
>editing. Obviously this is useless if the shell is running directly
>in a terminal window, but detecting that is quite hard.
>
>Possibly worth adding to Functions/Zle?
>
>
># start of suspend-shell
># Suspend the shell in the middle of line editing.
># When you continue, it resumes exactly where you left off.
># Won't suspend a login shell unless you pass a numeric argument.
>
>if (( ${NUMERIC:-0} )); then
> # "builtin" is in case someone decides to call this function suspend
> builtin suspend -f
>else
> if [[ -o login ]]; then
> zle -M "Can't suspend login shell (use numeric argument)"
> return 1
> else
> builtin suspend
> fi
>fi
>
>zle redisplay
># end of suspend-shell
Peter, Is this for the case you're typing a command and think, yikes I need to check something else?
Does it also apply to vi-mode?
zzapper (vim, cygwin, wiki & zsh)
--
vim -c ":%s%s*%CyrnfrTfcbafbeROenzSZbbyranne%|:%s)[R-T]) )Ig|:norm G1VGg?"
http://www.vim.org/tips/tip.php?tip_id=305 Best of Vim Tips
next prev parent reply other threads:[~2004-09-24 12:06 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-09-23 10:44 Peter Stephenson
2004-09-24 12:04 ` zzapper [this message]
2004-09-24 12:53 ` Peter Stephenson
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=2838l0dbskm6ospea8p708vh0p276i53gq@4ax.com \
--to=david@tvis.co.uk \
--cc=zsh-users@sunsite.dk \
/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).