Re: How to get the signature of function and method definitions

2011-11-14 Thread Thorsten
Henrik Sarvell hsarv...@gmail.com writes: Hi Henrik, Does it matter if you can see the definition instead of simply jumping to it? not really. Because with the help of CTags I can jump to any defined function or method in a .l file. I tried it once to set up TAG files, but I didn't really

Re: How to get the signature of function and method definitions

2011-11-14 Thread Alexander Burger
Hi Henrik, Thorsten, Because with the help of CTags I can jump to any defined function or method in a .l file. I tried it once to set up TAG files, but I didn't really succeed. I think I have to read a bit more in the Emacs manual and then try your tutorial again. TAGS seem to be really

Re: How to get the signature of function and method definitions

2011-11-14 Thread Alexander Burger
On Mon, Nov 14, 2011 at 01:38:56PM +0100, Alexander Burger wrote: I think that the necessary tags are already there, or can be easily I'm assuming that emacs can use the 'vi' tag file format. Am I wrong? -- UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe

Re: How to get the signature of function and method definitions

2011-11-14 Thread Henrik Sarvell
It's at the end here: http://www.prodevtips.com/2010/09/29/emacs-color-themes-tags-cedet-ecb-and-other-customizations/ Not much to it, I do things old school ie I put the download in /opt/picolisp and simply cd there in a shell and do: ctags -e -R --languages=-JavaScript,-PHP,-C,-Make,-HTML This

Re: How to get the signature of function and method definitions

2011-11-14 Thread Alexander Burger
Hi Henrik, Not much to it, I do things old school ie I put the download in /opt/picolisp and simply cd there in a shell and do: ctags -e -R --languages=-JavaScript,-PHP,-C,-Make,-HTML This will recursively loop through all the folders and generate tags for everything, for instance all my

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: How to get the signature of function and method definitions

2011-11-14 Thread Henrik Sarvell
1.) Lisp level functions are handled anyway by the jump to documentation script. 2.) It's only a problem when jumping as you then jump to the incorrect file but since I don't do much global functions anyway this is not a problem for me, if I jump to http for instance I end up in the right file.

Re: How to get the signature of function and method definitions

2011-11-14 Thread Thorsten
Alexander Burger a...@software-lab.de writes: Hi Alex, On Mon, Nov 14, 2011 at 01:38:56PM +0100, Alexander Burger wrote: I think that the necessary tags are already there, or can be easily I'm assuming that emacs can use the 'vi' tag file format. Am I wrong? I'm afraid not, I used

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: How to get the signature of function and method definitions

2011-11-14 Thread Alexander Burger
Hi Thorsten, ,- | visit-tags-table-buffer: | File /home/tj1/bin/picoLisp/src64/tags is not a valid tags table `- Is that

Re: How to get the signature of function and method definitions

2011-11-14 Thread Thorsten
Tomas Hlavaty t...@logand.com writes: Hi Henrik, Hi Tomas, thanks for your help so far. I now have slime and sbcl installed and working, and I downloaded swank-picolisp and copied your configuration except the picolisp command ,--- | usr/bin/picolisp/p `--- I