Author Topic: [SOLVED] Cycle through auto-function list  (Read 4623 times)

colonel_coder

  • Community Member
  • Posts: 49
  • Hero Points: 1
[SOLVED] Cycle through auto-function list
« on: April 20, 2010, 06:37:41 PM »
Is there a key binding to cycle through the "auto-function" list that appears when I type the opening parenthesis of a function?  I hate having to move my hand from the keyboard to the mouse.  However, neither slogging through the Slickedit options, nor searching the internet, provided the answer.

To summarize, when I press "Shift"-"(", I would like to be able to cycle through the various functions using something like "Ctrl"-"L" or "Ctrl"-"Right Arrow".

I use the CUA key bindings.
« Last Edit: May 20, 2010, 06:12:34 PM by colonel_coder »

ehab

  • Senior Community Member
  • Posts: 285
  • Hero Points: 15
  • coding with SE is like playing music
Re: Cycle through auto-function list
« Reply #1 on: April 20, 2010, 07:01:10 PM »
i had something written maybe the below helps

Code: [Select]

eg:

TInt r=file.Open(_

Alt . = listmembers or info on var
Alt "left arrow" = gives all defs"
Alt ,

when you wanna see parameter info in open( ctrl+shift+space )
ctrl+space = lists all functions and vars in unit

Shift+Up : commnets
Shift+Dn

memebers listing:
Shift+Up : move list above cursor
Shift+Down : move list below cursor

If a method is overloaded,
Ctrl+PgUp
Ctrl+PgDn

If a member has comments
Shift+PgUp
Shift+PgDn



regards
ehab
« Last Edit: April 20, 2010, 08:50:02 PM by ehab »

evanratt

  • Senior Community Member
  • Posts: 300
  • Hero Points: 23
Re: Cycle through auto-function list
« Reply #2 on: April 20, 2010, 08:32:25 PM »
I've found that the "function-argument-help" command (I have it bound to Alt-comma) cycles through the functions displayed in the argument help popup... Is that the one that you're asking about?

colonel_coder

  • Community Member
  • Posts: 49
  • Hero Points: 1
Re: Cycle through auto-function list
« Reply #3 on: April 20, 2010, 10:54:08 PM »
I've found that the "function-argument-help" command (I have it bound to Alt-comma) cycles through the functions displayed in the argument help popup... Is that the one that you're asking about?
Yes!  Thank you!  I should have asked this question years ago!

Sleep well, tonight evanratt.  You have helped a fellow human being.

evanratt

  • Senior Community Member
  • Posts: 300
  • Hero Points: 23
Re: Cycle through auto-function list
« Reply #4 on: April 20, 2010, 10:58:07 PM »
Ha ha! Glad to help; I remember being very happily surprised when I found that worked... Maybe @Slickteam wants to add that tip to the documentation?