Author Topic: How to sort the list of the Functions  (Read 4622 times)

Offline dirk_1980

  • Multiple posting newcomer
  • *
  • Posts: 25
How to sort the list of the Functions
« on: March 08, 2013, 03:23:59 pm »
Hi,
in the top of the Main screen there is the List of the Functions from a open File.

How can i sort this list in the order of the occurrences in the File.
I mean:

Line  Function
1     C1
40    B1
200  A1
300  D1

At the moment the list is always: A1 B1 C1 D1

But i need a list like: C1 B1 A1 D1


Is it possible to show this list with maybe  "CRTL + Mouse right" and let me jump to one of this Functions?


Regards, Dirk

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 6035
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Re: How to sort the list of the Functions
« Reply #1 on: March 08, 2013, 04:38:23 pm »
Hi,
in the top of the Main screen there is the List of the Functions from a open File.

How can i sort this list in the order of the occurrences in the File.
I mean:

Line  Function
1     C1
40    B1
200  A1
300  D1

At the moment the list is always: A1 B1 C1 D1

But i need a list like: C1 B1 A1 D1

Do you mean the CodeCompletion plugin's toolbar? If yes, this is a feature request. :)

Quote
Is it possible to show this list with maybe  "CRTL + Mouse right" and let me jump to one of this Functions?
I don't understand this.
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.

Offline dirk_1980

  • Multiple posting newcomer
  • *
  • Posts: 25
Re: How to sort the list of the Functions
« Reply #2 on: March 11, 2013, 09:36:57 am »
Yes i mean the CodeCompletion plugin's toolbar!
Where can i post a future request?


The second point is that i need the "drop down list of functions" very fast.
I still use a second Editor witch can show me a list of the function with a mouse right click.
And i thing it is very useful.

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 6035
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Re: How to sort the list of the Functions
« Reply #3 on: March 13, 2013, 01:17:32 am »
Yes i mean the CodeCompletion plugin's toolbar!
Where can i post a future request?
Read here: Wiki


Quote
The second point is that i need the "drop down list of functions" very fast.
I still use a second Editor witch can show me a list of the function with a mouse right click.
And i thing it is very useful.
Still not understand your idea, so this is another feature request?
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.