vote up 1 vote down star

I am hacking up a tagging application for emacs. I have got a tag cloud/weighted list successfully displaying on a buffer, but i am running into a snag. I need to be able to properly word-wrap the buffer, but I haven't a clue where to start.

The font I am using is a variable width font. On top of that, each tag is going to be in a different size, depending on how many times it shows up on the buffer. Finally, the window that displays the tagcloud could be in a window that is 200 pixels wide, or the full screen width.

I really have no idea where to start. I tried longlines mode on the tagcloud buffer, but that didn't work.

Source code is at: http://emacswiki.org/cgi-bin/emacs/free-tagging.el

flag

2 Answers

vote up 3 vote down check

You probably want to track posn-at-point and posn-at-x-y as you put the tags in the buffer.

link|flag
vote up 0 vote down

Can you use (fill-paragraph) or (fill-region) or similar? They wrap at a column, so don't have variable width font smarts, but is the fill column is low they might work lots of the time for next to no effort. At least until you get a pixel-perfect solution sorted out :-) (maybe YAGNI...)

link|flag
That didn't seem to work at all actually. Thanks for the suggestion though. – Jonathan Arkell Nov 1 '08 at 23:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.