zsh-workers
 help / color / mirror / code / Atom feed
* PATCH: pws-24: Stop the unbearable beeping of magic-space
@ 1999-06-27  8:42 Bart Schaefer
  1999-06-27 13:25 ` Peter Stephenson
  0 siblings, 1 reply; 4+ messages in thread
From: Bart Schaefer @ 1999-06-27  8:42 UTC (permalink / raw)
  To: zsh-workers

I should have noticed this when 6814 was posted, but I was preoccupied with
testing job control in 3.0.6 ...

If you have

	bindkey " " magic-space

then every time you press the spacebar you get a beep, unless there happens
to be an expandable history item in the word.

Now, the really good thing would be for doexpandhist() to return failure
only if there is a history reference but it can't be expanded, rather than
failing whenever no expansion took place.  It's beyond my comprehension of
the interaction between zle and the history mechanism to pull that off, so
I settled for making magic-space fail only if selfinsert() does [the old
code didn't make sense anyway -- why store the return from selfinsert and
then do nothing with it?].

Line numbers below may be off a bit, because I also got annoyed by Oliver
Kiddle's patch from 6772.  Gosh, I actually went one whole revision of zsh
without having to either put in or maintain a local change ...

Index: Src/Zle/zle_tricky.c
@@ -8249,8 +8243,9 @@
 {
     int ret;
     c = ' ';
-    ret = selfinsert(args);
-    return !doexpandhist();
+    if (!(ret = selfinsert(args)))
+	doexpandhist();
+    return ret;
 }
 
 /**/

-- 
Bart Schaefer                                 Brass Lantern Enterprises
http://www.well.com/user/barts              http://www.brasslantern.com


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

* Re: PATCH: pws-24: Stop the unbearable beeping of magic-space
  1999-06-27  8:42 PATCH: pws-24: Stop the unbearable beeping of magic-space Bart Schaefer
@ 1999-06-27 13:25 ` Peter Stephenson
  1999-06-27 16:32   ` Bart Schaefer
  1999-06-28  9:03   ` job completion (was Re: PATCH: pws-24: Stop the unbearable beeping of magic-space) Oliver Kiddle
  0 siblings, 2 replies; 4+ messages in thread
From: Peter Stephenson @ 1999-06-27 13:25 UTC (permalink / raw)
  To: zsh-workers

"Bart Schaefer" wrote:
> Line numbers below may be off a bit, because I also got annoyed by Oliver
> Kiddle's patch from 6772.  Gosh, I actually went one whole revision of zsh
> without having to either put in or maintain a local change ...

Is there a suggestion for resolving this?  I put it in because there were
no complaints.  I use a different job completion function anyway.  That's
the solution for somebody, but what should be the default?  Anyone want to
write a patch to return the shortest unique string of complete words?

-- 
Peter Stephenson <pws@ibmth.df.unipi.it>       Tel: +39 050 844536
WWW:  http://www.ifh.de/~pws/
Dipartimento di Fisica, Via Buonarroti 2, 56127 Pisa, Italy


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

* Re: PATCH: pws-24: Stop the unbearable beeping of magic-space
  1999-06-27 13:25 ` Peter Stephenson
@ 1999-06-27 16:32   ` Bart Schaefer
  1999-06-28  9:03   ` job completion (was Re: PATCH: pws-24: Stop the unbearable beeping of magic-space) Oliver Kiddle
  1 sibling, 0 replies; 4+ messages in thread
From: Bart Schaefer @ 1999-06-27 16:32 UTC (permalink / raw)
  To: Peter Stephenson, zsh-workers

On Jun 27,  3:25pm, Peter Stephenson wrote:
} Subject: Re: PATCH: pws-24: Stop the unbearable beeping of magic-space
}
} "Bart Schaefer" wrote:
} > I also got annoyed by Oliver Kiddle's patch from 6772.
} 
} Is there a suggestion for resolving this?

Oh, just do what Zefram and Zoltan always did and ignore me.  I'm probably
being excessively picky; and I probably wouldn't even have noticed if I
hadn't been debugging job control stuff, because most of the time I don't
have more than one stopped job anyway (it's just too easy to open and
close another xterm).

-- 
Bart Schaefer                                 Brass Lantern Enterprises
http://www.well.com/user/barts              http://www.brasslantern.com


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

* job completion (was Re: PATCH: pws-24: Stop the unbearable beeping of  magic-space)
  1999-06-27 13:25 ` Peter Stephenson
  1999-06-27 16:32   ` Bart Schaefer
@ 1999-06-28  9:03   ` Oliver Kiddle
  1 sibling, 0 replies; 4+ messages in thread
From: Oliver Kiddle @ 1999-06-28  9:03 UTC (permalink / raw)
  To: Peter Stephenson, zsh-workers

Peter Stephenson wrote:
> 
> "Bart Schaefer" wrote:
> > Line numbers below may be off a bit, because I also got annoyed by Oliver
> > Kiddle's patch from 6772.  Gosh, I actually went one whole revision of zsh
> > without having to either put in or maintain a local change ...

I'm guessing that you don't like it because the full command is long and
looks messy when quoted and listed?

> Is there a suggestion for resolving this?  I put it in because there were
> no complaints.  I use a different job completion function anyway.  That's
> the solution for somebody, but what should be the default?  Anyone want to
> write a patch to return the shortest unique string of complete words?

I used it all last week and it was really useful to me so I'd prefer if
it stays. I'm not convinced that using the shortest unique string would
be the best approach. What might be better would be to treat completion
of the first word (i.e. the command name) as separate to completion of
the remaining arguments so initially only the commands are listed but
they are completed without a suffix and you get the full arguments if
you press tab again.

I can probably implement this for the new style completion and this
would be helped by 6772 remaining so I wouldn't have to use $(jobs). I
don't have much time at the moment so I'll wait for any comments or
alternative suggestions. If many people don't like 6772 then we probably
want a solution that isn't dependant on new style completion.

Oliver Kiddle


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

end of thread, other threads:[~1999-06-28  9:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-06-27  8:42 PATCH: pws-24: Stop the unbearable beeping of magic-space Bart Schaefer
1999-06-27 13:25 ` Peter Stephenson
1999-06-27 16:32   ` Bart Schaefer
1999-06-28  9:03   ` job completion (was Re: PATCH: pws-24: Stop the unbearable beeping of magic-space) Oliver Kiddle

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