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

2011-11-14 Thread Thorsten
Henrik Sarvell 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 succeed. I thi

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

2011-11-14 Thread Thorsten
Tomas Hlavaty writes: Hi Tomas, >> Thats quite impressive, thanks. I thought slime/swank is only for >> communication with compiled lisps, but well ... > > slime/swank is a client/server protocol. There are backends e.g. for > Common Lisp, Scheme, Clojure, R, Picolisp and probably more. It is

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

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 Thorsten
Alexander Burger 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 must admit I'm a bit overwhelmed by all the new

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 Thi

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 a

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 Tomas Hlavaty
Hi Thorsten, > So you use the same commands/keybindings for all those different lisp > dialects? I do, but you can customize that if you wish. > Didn't know that there is a R backend for slime/swank. http://common-lisp.net/~crhodes/swankr/ Cheers, Tomas -- UNSUBSCRIBE: mailto:picolisp@softwa

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. 3.)

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

2011-11-14 Thread Thorsten
Alexander Burger 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 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' > # [based on lispt

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 t

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

2011-11-14 Thread Thorsten
Tomas Hlavaty 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 have a problem t