Re: [9fans] acme programming questions

2009-06-18 Thread Tim Newsham
2009/6/18 Tim Newsham : I've been trying my hand at some very simple acme programming tasks and have some questions.  I'm interested in a utility that translate dot into a filename:line-line range I think Edit = is what you want. more or less, except I want a program that I can manipulate the

Re: [9fans] acme programming questions

2009-06-18 Thread yy
2009/6/18 Tim Newsham : > I've been trying my hand at some very simple acme programming > tasks and have some questions.  I'm interested in a utility > that translate dot into a filename:line-line range I think Edit = is what you want. -- - yiyus || JGL .

Re: [9fans] acme programming questions

2009-06-18 Thread Russ Cox
In plan9port there is a libacme and which makes some of this easier. It is basically a wrapping of the routines from acme Mail. Using libacme, your event waiter can do something like this to send the events back: while(winreadevent(w, e) > 0) { switch(e->c1){

[9fans] acme programming questions

2009-06-17 Thread Tim Newsham
I've been trying my hand at some very simple acme programming tasks and have some questions. I'm interested in a utility that translate dot into a filename:line-line range and a utility that waits for an acme window to be closed. If I'm reinventing these, I'd love to hear about existing programs