From frido at q-software-solutions.com Wed Feb 4 14:55:42 2004 From: frido at q-software-solutions.com (Friedrich Dominicus) Date: Wed, 04 Feb 2004 15:55:42 +0100 Subject: [eclipse-devel] How to access the running eclipse WM? Message-ID: <87n07ylwr5.fsf@fbigm.here> Well this might be easy to answer for you, but how to I access eclipse from within cmucl? Let's say I want to get in contact with eclipse to modify things like moving windows away, generatring new windows adding extra functions etc. Regard Friedrich From hatchond at labri.fr Wed Feb 4 16:35:46 2004 From: hatchond at labri.fr (Iban Hatchondo) Date: Wed, 04 Feb 2004 17:35:46 +0100 Subject: [eclipse-devel] How to access the running eclipse WM? In-Reply-To: <87n07ylwr5.fsf@fbigm.here> References: <87n07ylwr5.fsf@fbigm.here> Message-ID: <40211F62.20800@labri.fr> Friedrich Dominicus wrote: > Well this might be easy to answer for you, but how to I access eclipse > from within cmucl? Let's say I want to get in contact with eclipse to > modify things like moving windows away, generatring new windows adding > extra functions etc. If you mean when eclipse is running on a display, then just do in a shell or in emacs: telnet localhost 6789 (with the double quotes) and you will be dropped in a lisp session that shared its environment with the one where eclipse runs. Then you can modify what you want to inside. (note that eclipse is defined in a package named "ECLIPSE-INTERNAL") Hope that helps. Regards, Iban. From christian.lynbech at ericsson.com Thu Feb 5 09:07:56 2004 From: christian.lynbech at ericsson.com (Christian Lynbech) Date: Thu, 05 Feb 2004 10:07:56 +0100 Subject: [eclipse-devel] How to access the running eclipse WM? In-Reply-To: <40211F62.20800@labri.fr> (Iban Hatchondo's message of "Wed, 04 Feb 2004 17:35:46 +0100") References: <87n07ylwr5.fsf@fbigm.here> <40211F62.20800@labri.fr> Message-ID: >>>>> "Iban" == Iban Hatchondo writes: Iban> Friedrich Dominicus wrote: >> Well this might be easy to answer for you, but how to I access >> eclipse from within cmucl? Let's say I want to get in contact with >> eclipse to modify things like moving windows away, generatring new >> windows adding extra functions etc. Iban> If you mean when eclipse is running on a display, then just do in a Iban> shell or in emacs: Iban> telnet localhost 6789 Remember that you can can use the "C-u" prefix to ILISP or SLIME to run the session from within either interface (just type the above telnet command instead of the normal lisp command). Also note that testing stuff from a telnet session can/will have a rather infuriating 1 second delay on all CLX communication. There are countermeasures I think, but I haven't got the expression at hand. -- Christian