Lisp HUG Maillist Archive

Is there a way to make REPL or Editor show a signature of a function?

Hi!

Is there a way to make REPL or Editor show a signature of a function I'm currenty entered?

For example, if I entered a:

(capi:contain <cursor>

I want to see all this information somewhere:

 (ELEMENT &REST INTERFACE-ARGS &KEY (SCREEN NIL SCREENP) (PROCESS T PROCESSP) TITLE AS-DIALOG &ALLOW-OTHER-KEYS)

And it will be perfect if it will highlight the current argument I'm entering.

-- 
Alexander Artemenko

_______________________________________________
Lisp Hug - the mailing list for LispWorks users
lisp-hug@lispworks.com
http://www.lispworks.com/support/lisp-hug.html

Re: Is there a way to make REPL or Editor show a signature of a function?

c-sh-a

see for the various tools:

http://www.lispworks.com/documentation/lw71/EDUG-M/html/eduser-m-56.htm#marker-1020496


See also:  (example-edit-file "editor/commands/space-show-arglist")

Am 30.11.2019 um 12:34 schrieb Артеменко Александр <sasha@svetlyak.ru>:

Hi!

Is there a way to make REPL or Editor show a signature of a function I'm currenty entered?

For example, if I entered a:

(capi:contain <cursor>

I want to see all this information somewhere:

(ELEMENT &REST INTERFACE-ARGS &KEY (SCREEN NIL SCREENP) (PROCESS T PROCESSP) TITLE AS-DIALOG &ALLOW-OTHER-KEYS)

And it will be perfect if it will highlight the current argument I'm entering.

--
Alexander Artemenko

_______________________________________________
Lisp Hug - the mailing list for LispWorks users
lisp-hug@lispworks.com
http://www.lispworks.com/support/lisp-hug.html

Re: Is there a way to make REPL or Editor show a signature of a function?

Notice also the Function Arglist Displayer mentioned in the linked documentation: Ctrl+`

Generally:  To get an overview of editor bindings type:  c-h b
This gets us a textual help window with a list of commands, where we also can search for command names... here I would look for everything with 'arglist' in the name...




Am 30.11.2019 um 12:40 schrieb Rainer Joswig <joswig@lisp.de>:

c-sh-a

see for the various tools:

http://www.lispworks.com/documentation/lw71/EDUG-M/html/eduser-m-56.htm#marker-1020496


See also:  (example-edit-file "editor/commands/space-show-arglist")

Am 30.11.2019 um 12:34 schrieb Артеменко Александр <sasha@svetlyak.ru>:

Hi!

Is there a way to make REPL or Editor show a signature of a function I'm currenty entered?

For example, if I entered a:

(capi:contain <cursor>

I want to see all this information somewhere:

(ELEMENT &REST INTERFACE-ARGS &KEY (SCREEN NIL SCREENP) (PROCESS T PROCESSP) TITLE AS-DIALOG &ALLOW-OTHER-KEYS)

And it will be perfect if it will highlight the current argument I'm entering.

--
Alexander Artemenko

_______________________________________________
Lisp Hug - the mailing list for LispWorks users
lisp-hug@lispworks.com
http://www.lispworks.com/support/lisp-hug.html


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