Ide help for the confused
Re: Ide help for the confused
i am now using this one:
http://www.daansystems.com/lispide/
what do you god-like lispers think about it?
http://www.daansystems.com/lispide/
what do you god-like lispers think about it?
-
- Posts: 59
- Joined: Sun May 29, 2011 8:52 pm
- Location: NY
- Contact:
Re: Ide help for the confused
I've used it. Doesn't do anything special but it is a IDE so you don't have to use the REPL at all times (though you should learn to use the REPL), and it does match parens. Should be a good starting IDE.
Re: Ide help for the confused
i would like to use the repl but unfortionatly i cant strg+v text into it. so when i have to reset it, i have to write everything again from the beginning.
-
- Posts: 59
- Joined: Sun May 29, 2011 8:52 pm
- Location: NY
- Contact:
Re: Ide help for the confused
Well you could always write them to files. But even easier with LisdIDE you can try functions out at the REPL and when you think you've got it working the way you want it, write it into the top part. You can then save the top part the same way you'd save any file in any program and can open it the next time you come back.
Re: Ide help for the confused
This is why SLIME existsHubertus wrote:i would like to use the repl but unfortionatly i cant strg+v text into it. so when i have to reset it, i have to write everything again from the beginning.

Code: Select all
(in-package :my-code-that-uses-cxml)
(defun print-attributes (node)
(loop with attributes = (dom:attributes node)
for i from 0 upto (dom:length attributes)
do (format t "attribute: ~a~&" (dom:name (dom:item attributes i)))))
(print-attributes (dom:first-child (cxml:parse "<foo a=\"a\" b=\"b\"/>")))
Working w/o REPL is like writing in Java but never debugging...
Re: Ide help for the confused
lispide works the same way
-
- Posts: 47
- Joined: Fri Jun 03, 2011 5:30 am
- Location: Behind you.
- Contact:
Re: Ide help for the confused
In LispIDE, when you go to settings=>lisp path, you navigate to your implementation and it will load it in the bottom window every time you start it.
Don't take the FUN out of DEFUN !