Author Topic: Remember folding  (Read 3247 times)

Offline Newbie0815

  • Multiple posting newcomer
  • *
  • Posts: 61
Remember folding
« on: March 17, 2009, 07:12:35 pm »
Not sure if there is such a function already, if not, this might belong into feature requests.

How can I set the editor to remember folded parts of code upon close, so it will reappear the same way upon next open?
All I could find about folding is either fold all or fold nothing.

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 5913
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Re: Remember folding
« Reply #1 on: March 18, 2009, 03:14:15 am »
You should write a feature request. :D
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.