Lisp HUG Maillist Archive

Stupid question

Sorry to bother you guys.

How do I make

	CL-USER 42> (inspect (vector 1 2 3))

pop up the window inspector?

Thanks


--
Marco Antoniotti
NYU Courant Bioinformatics Group		tel. +1 - 212 - 998 3488
715 Broadway 10th FL				fax. +1 - 212 - 998 3484
New York, NY, 10003, U.S.A.


Re: Stupid question

Marco Antoniotti wrote:

> Sorry to bother you guys.
>
> How do I make
>
>     CL-USER 42> (inspect (vector 1 2 3))
>
> pop up the window inspector?
>
> Thanks
>
>
> -- 
> Marco Antoniotti
> NYU Courant Bioinformatics Group        tel. +1 - 212 - 998 3488
> 715 Broadway 10th FL                fax. +1 - 212 - 998 3484
> New York, NY, 10003, U.S.A.
>
>
CL-USER 1 > (capi:display
                    (make-instance 'lispworks-tools:inspector :object 
(vector 1 2 3)))
#<LISPWORKS-TOOLS:INSPECTOR "Inspector 1" 212B565C>

CL-USER 2 >

Wade


Re: Stupid question

Hello,

You can set the *INSPECT-THROUGH-GUI* to T before invoking INSPECT.

By the way you might want to look at the LispWorks utilities of Tim 
Bradshaw at 
http://www.tfeb.org/lisp/implementation-hax.html#LW-COLON-COMMANDS

There are some usefull commands accessible from the listener. With it 
you can write
CL-USER 12 > (vector 1 2 3)
#(1 2 3)
and then
CL-USER 13 > :gi
which will bring the inspector on the result of (vector 1 2 3). 
independent of the current setting in *INSPECT-THROUGH-GUI*

With best regards
Plamen

Marco Antoniotti wrote:

> Sorry to bother you guys.
>
> How do I make
>
>     CL-USER 42> (inspect (vector 1 2 3))
>
> pop up the window inspector?
>
> Thanks
>
>
> -- 
> Marco Antoniotti
> NYU Courant Bioinformatics Group        tel. +1 - 212 - 998 3488
> 715 Broadway 10th FL                fax. +1 - 212 - 998 3484
> New York, NY, 10003, U.S.A.
>
>




Re: Stupid question

Thanks guys.

marco



On Thursday, Oct 9, 2003, at 14:35 America/New_York, softinfo wrote:

> Hello,
>
> You can set the *INSPECT-THROUGH-GUI* to T before invoking INSPECT.
>
> By the way you might want to look at the LispWorks utilities of Tim 
> Bradshaw at 
> http://www.tfeb.org/lisp/implementation-hax.html#LW-COLON-COMMANDS
>
> There are some usefull commands accessible from the listener. With it 
> you can write
> CL-USER 12 > (vector 1 2 3)
> #(1 2 3)
> and then
> CL-USER 13 > :gi
> which will bring the inspector on the result of (vector 1 2 3). 
> independent of the current setting in *INSPECT-THROUGH-GUI*
>
> With best regards
> Plamen
>
> Marco Antoniotti wrote:
>
>> Sorry to bother you guys.
>>
>> How do I make
>>
>>     CL-USER 42> (inspect (vector 1 2 3))
>>
>> pop up the window inspector?
>>
>> Thanks
>>
>>
>> -- 
>> Marco Antoniotti
>> NYU Courant Bioinformatics Group        tel. +1 - 212 - 998 3488
>> 715 Broadway 10th FL                fax. +1 - 212 - 998 3484
>> New York, NY, 10003, U.S.A.
>>
>>
>
>
>
--
Marco Antoniotti
NYU Courant Bioinformatics Group		tel. +1 - 212 - 998 3488
715 Broadway 10th FL				fax. +1 - 212 - 998 3484
New York, NY, 10003, U.S.A.


Re: Stupid question

At 14:19 Uhr -0400 09.10.2003, Marco Antoniotti wrote:
>Sorry to bother you guys.
>
>How do I make
>
>	CL-USER 42> (inspect (vector 1 2 3))
>
>pop up the window inspector?
>
>Thanks
>
>
>--
>Marco Antoniotti
>NYU Courant Bioinformatics Group		tel. +1 - 212 - 998 3488
>715 Broadway 10th FL				fax. +1 - 212 - 998 3484
>New York, NY, 10003, U.S.A.

(setf *inspect-through-gui* t)


Updated at: 2020-12-10 08:59 UTC