Re: [9fans] question re acme and plumber

2019-07-10 Thread Martin Kühl
On Wed, 10 Jul 2019 at 18:48, James A. Robinson wrote: > in acme using button 3 and open up Cpio.java:151. Is there any way > for me to just button 3 click within the text of the filename to get > the same behavior? I believe when you 3 a single position acme selects the "word" around that posit

Re: [9fans] Building Inferno on Mac OS X

2010-12-01 Thread Martin Kühl
On Wed, Dec 1, 2010 at 17:24, Aram Hăvărneanu wrote: > OBJTYPE=386                     # target system object type (eg, 386, arm, > mips, power, > s800, sparc) > OBJTYPE=$objtype With these lines you correctly set OBJTYPE to 386, then immediately reset it to $objtype, which is empty. Comment out

Re: [9fans] Summary of acme chords

2012-04-26 Thread Martin Kühl
On Thu, Apr 26, 2012 at 00:15, david jeannot wrote: > A bit off topic, but if some OS X users need a > mouse only for Acme, here is a patch to use Acme > without a mouse: > >           http://codereview.appspot.com/6115053 Or you could just use the trackpad and p9p mouse emulation: - select text,

Re: [9fans] com: comments toggle in acme

2012-11-16 Thread Martin Kühl
On Fri, Nov 16, 2012 at 5:16 AM, <6o205z...@sneakemail.com> wrote: > BTW, I know what fmt is, but what do a- and a+ do? indentation and un-indentation. http://9fans.net/archive/2008/09/71

Re: [9fans] Acme script request (was: Acme Edit scriptlets)

2013-04-05 Thread Martin Kühl
or using 9p(1): for (num in `{9p ls acme | grep '^[0-9]'}) { if (9p read acme/$num/tag | grep -s '^'$pattern) echo delete | 9p write acme/$num/ctl }

Re: [9fans] problem with a here document in rc

2013-05-07 Thread Martin Kühl
On Mon, May 6, 2013 at 9:27 AM, Rudolf Sykora wrote: > Can the rc example be modified --- still using a here document --- so > that it works? I guess I must be missing something, but this seems equivalent to your bash script: for(i in 1 2 3) { cat <

Re: [9fans] problem with a here document in rc

2013-05-07 Thread Martin Kühl
On Wed, May 8, 2013 at 12:08 AM, erik quanstrom wrote: >> I guess I must be missing something, but this seems equivalent to your >> bash script: >> >> for(i in 1 2 3) { >> cat <> $i >> ! >> } > > clearly you did not run this script. this doesn't > work for the same reason that here docs i