zsh-users
 help / color / mirror / code / Atom feed
* Re: Job Table
@ 2001-02-20 10:04 Sven Wischnowsky
  0 siblings, 0 replies; 2+ messages in thread
From: Sven Wischnowsky @ 2001-02-20 10:04 UTC (permalink / raw)
  To: zsh-users


Nick Cross wrote:

> I'm running 3.1.9 and keep getting job table full messages - how do I
> increase the limit?

Change the setting of MAXJOB in config.h or re-configure using
--enable-max-jobtable-size=<number> (and then re-build the shell).

Hm, do you really need more than 48 jobs? (The default for MAXJOB is
50, two of them are used internally.)

Bye
 Sven


--
Sven Wischnowsky                         wischnow@informatik.hu-berlin.de


^ permalink raw reply	[flat|nested] 2+ messages in thread
* completion with globbing, take 2
@ 2000-09-17 17:50 E. Jay Berkenbilt
  2000-09-17 18:43 ` Bart Schaefer
  0 siblings, 1 reply; 2+ messages in thread
From: E. Jay Berkenbilt @ 2000-09-17 17:50 UTC (permalink / raw)
  To: zsh-users


Several days ago, I wanted to know how I could get zsh to respond to 

something *TAB

by replacing the * with the list everything that the completion system
would return instead of everything * would match in the current
directory.  I was told to do this:

zstyle ':completion:*' completer _oldlist _complete _match
bindkey "^I" complete-word

I've spent a lot of time trying to figure this out, but this still
doesn't work and I don't know how to make it work.  This gives a
behavior like menu-complete.  I never want menu-complete-like
functionality.  I want behavior more like what expand-or-complete does
except that I want only what the completion system would return to be
substituted.

I will be very explicit to reduce the chance of my question being
misunderstood.

zsh -f

> zsh% autoload -U compinit
> zsh% compinit
> zsh% mkdir /tmp/z
> zsh% cd /tmp/z
> zsh% mkdir 1 2 3
> zsh% touch a b c

Type:

> zsh% rmdir TAB

You see:

> zsh% rmdir 
> 1/  2/  3/

Type:

> zsh% rmdir *TAB

You see:

> zsh% rmdir 1 2 3 a b c 

Now configure as above:

> zsh% zstyle ':completion:*' completer _oldlist _complete _match
> zsh% bindkey "^I" complete-word

Type:

> zsh% rmdir *TAB

You see:

> zsh% rmdir 1/
1/  2/  3/

Each subsequent TAB rotates between 1/, 2/, and 3/.

What I want:

> zsh% rmdir *TAB

should yield

> zsh% rmdir 1 2 3 

Is there a way to do this?

--
E. Jay Berkenbilt (ejb@ql.org)  |  http://www.ql.org/q/


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

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

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-02-20 10:04 Job Table Sven Wischnowsky
  -- strict thread matches above, loose matches on Subject: below --
2000-09-17 17:50 completion with globbing, take 2 E. Jay Berkenbilt
2000-09-17 18:43 ` Bart Schaefer
2000-09-17 23:03   ` E. Jay Berkenbilt
2000-09-18  0:17     ` completion and globbing, part 2 E. Jay Berkenbilt
2000-09-18  6:07       ` completion with globbing, take 2 Andrej Borsenkow
2000-09-18  6:53         ` completion and globbing, part 2 Andrej Borsenkow
2000-09-18  9:59           ` insert-all-matches example " Andrej Borsenkow
2000-09-18 17:28             ` completion with globbing, take 2 Bart Schaefer
2000-09-18 22:07               ` E. Jay Berkenbilt
2000-09-19  2:14                 ` Bart Schaefer
2001-02-20  9:55                   ` Job Table Nick Cross

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