> I see it just translates into Ctrl+B -- where is that key-combo finally 
> handled?

search.htm:
function okp()
{
// ...<snipped>...
  // Search the command history.  Hold down shift with the key to search
  // forward.
  if (window.event.keyCode == 2)
  {
    histsearch( document.deff.q.value, window.event.shiftKey );
    return false;
  }
// ...<snipped>...

> What does Ctrl+B mean?

*I think* it was just an available window.event.keyCode, but I really wanted to 
use F8/Shift-F8 (like DOSKEY) so I mapped it to Ctrl-B.  Again, not 100% sure, 
but that's what I vaguely remember.

-------- Original Message --------
> From: Kim Gräsman <[EMAIL PROTECTED]>
> Sent: Wednesday, July 05, 2006 7:33 AM
> To: DQSD development discussions <[email protected]>
> Subject: Re: [DQSD-Devel] DQSD 3.2 attempt
> 
> Hey Glenn,
> 
> Long time no see!
> 
> Glenn Carr wrote:
> >>> Ho hum... I didn't know F8 had a mapping...
> >>> How is it used? When you hit F8, what's supposed
> >>> to happen?
> >> You have it perfect in your example. It cycles through other entries in
> >> the history that include the text YOU TYPED.
> > 
> > Yup, I added the F8 binding because that's what the Windows DOS shell uses
> > to search back thru the command history (except it only looks at the prefix
> > of the command, where DQSD searches any part of the command).
> > 
> > F8 searches backward thru the history, Shift-F8 searches forward.
> 
> I see it just translates into Ctrl+B -- where is that key-combo finally 
> handled? What does Ctrl+B mean?
> 
> Thanks,
> - Kim
> 
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> _______________________________________________
> Archive: https://lists.sourceforge.net/lists/listinfo/dqsd-devel 





Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Archive: https://lists.sourceforge.net/lists/listinfo/dqsd-devel

Reply via email to