I have found that if I have too many Actions or Ticklers with large
notes (say greater than 20 lines) then any tiddler with the mgtdList
command may get into script running difficulty delaying or locking up
the load of the tiddler. This includes many of the Dashboard type
tiddlers.

I do not always remember to not create large notes in Actions and
Ticklers so I have to periodically check my Action and Tickler
tiddlers for such large notes. I shift the note to a simple tiddler
(not Action or Tickler tiddler or another Subject area Tiddlywiki) and
make a link to that normal tiddler in the Action/Tickler tiddler note.

To list largest tiddlers with Action or Tickler I use the
ForEachTiddlerPlugin  with a tiddler containing code

<<forEachTiddler
    where
        'tiddler.tags.contains("Action")'
    sortBy
        'tiddler.text.length'
        descending
    write
        '(index < 10) ? "* [["+tiddler.title+"]]\n" : ""'
>>

Does anyone find the same happens for them and is there a way to get a
warning message when saving tiddler with too much content if it has a
specified tag.

-- 
You received this message because you are subscribed to the Google Groups "GTD 
TiddlyWiki" group.
To post to this group, send email to gtd-tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
gtd-tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/gtd-tiddlywiki?hl=en.

Reply via email to