re: tags

2011-11-14 Thread Doug Snead
FWIW ... here's something I use instead of ctags for picolisp. $ cat /usr/local/bin/lisptags #!/bin/sh # make a tags file for pico lisp source files. # use: # lisptags foo.l bar.l baz.l ... bof.l # generate the file 'tags' # [based on lisptags csh script by John Foderaro, c.1982] awk

Re: tags

2011-11-14 Thread Thorsten
Doug Snead semaphore_2...@yahoo.com writes: Hi Doug, FWIW ... here's something I use instead of ctags for picolisp. $ cat /usr/local/bin/lisptags #!/bin/sh # make a tags file for pico lisp source files. # use: # lisptags foo.l bar.l baz.l ... bof.l # generate the file 'tags

Re: script for generating tags for picolisp

2010-08-18 Thread Alexander Burger
Hi Doug, On Tue, Aug 17, 2010 at 09:19:23PM -0700, Doug Snead wrote: ... # make a tags file for pico lisp source files. ... As I understand it, this is not exactly what Edwin intended. I think he wanted a tags file for the main interpreter functions written in C. Also, the tags for Lisp

Re: script for generating tags for picolisp

2010-08-18 Thread Edwin Eyan Moragas
Hi Alex, On Wed, Aug 18, 2010 at 3:41 PM, Alexander Burger a...@software-lab.de wro= te: Hi Doug, On Tue, Aug 17, 2010 at 09:19:23PM -0700, Doug Snead wrote: ... # make a tags file for pico lisp source files. ... As I understand it, this is not exactly what Edwin intended. I think he

Re: script for generating tags for picolisp

2010-08-18 Thread Edwin Eyan Moragas
Hi Doug, thanks for this. this would come in handy. On Wed, Aug 18, 2010 at 12:19 PM, Doug Snead semaphore_2...@yahoo.com wro= te: Here's one shell script I used to use for that (I called it lisptags) ...= hopefully it still works :-) #!/bin/sh # make a tags file for pico lisp source files

Re: script for generating tags for picolisp

2010-08-17 Thread Doug Snead
Here's one shell script I used to use for that (I called it lisptags) ... hopefully it still works :-) #!/bin/sh # make a tags file for pico lisp source files. # use: # lisptags foo.l bar.l baz.l ... bof.l # generate the file 'tags' # [based on lisptags csh script by John Foderaro, c.1982