On Mar 24, 2010, at 9:46 AM, Martin Hewitson <martin.hewit...@aei.mpg.de> wrote:

So, does anyone have any suggestions how one might implement such a feature? This is for a LaTeX editor so I'm interested in folding blocks of code between, for example, \begin{} \end{} tags, collapsing \section, \subsection, etc.

There isn't support for anything like this in NSTextView; you're going to have to mutate the text storage yourself. The upshot of this is that you can no longer keep your text buffer in an NSTextStorage and build your text system around it; you will now need to synchronize the edits made to your text view's text storage with whatever backing store you wind up using for your document (perhaps another NSTextStorage, or a different data structure of your choosing).

--Kyle Sluder
_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to