Which editor do you use for Lisp?
1–10 of 24 posts
Re: Which editor do you use for Lisp?
#2The editor is particularly important when it comes to being productive. I'm inexperienced with Lisp, and I've found a few things inside Visual Studio that I feel particularly reluctant to part with. "Go to Implementation" is one. I just move the mouse over a function call, press alt-G, and it takes me right to where that function is defined. Another is a complete list of defined procedures for the current file.
Does Lisp have an environment that has similar features?
Shawn
Re: Which editor do you use for Lisp?
#3Programming consists of a few things. An editor, a compiler, source control, and so on. The editor is particularly important when it comes to being productive. I'm inexperienced with Lisp, and I've found a few things inside Visual Studio that I feel particularly reluctant to part with. "Go to Implementation" is one. I just move the mouse over a function call, press alt-G, and it takes me right to where that function…
Re: Which editor do you use for Lisp?
#4Programming consists of a few things. An editor, a compiler, source control, and so on. The editor is particularly important when it comes to being productive. I'm inexperienced with Lisp, and I've found a few things inside Visual Studio that I feel particularly reluctant to part with. "Go to Implementation" is one. I just move the mouse over a function call, press alt-G, and it takes me right to where that function…
You haven't heard of emacs?
Is that the only one?
Re: Which editor do you use for Lisp?
#5Earlier quoted context omitted.
You haven't heard of emacs?
I've heard the name. I didn't know you could specifically write Lisp in it. Thanks. Is that the only one?
That's for Common Lisp (CL), which you may or may not want to develop in; I personally frequently choose to write in CL because it has a very large library, and because it has SLIME.
For Scheme, Emacs is also good, but there isn't something analogous to SLIME.
SLIME has go-to-definition of a function as one of its more basic features, along with auto-completion, convenient listings of arguments when you first write down a call to a particular function, and much more.
Re: Which editor do you use for Lisp?
#6Earlier quoted context omitted.
I've heard the name. I didn't know you could specifically write Lisp in it. Thanks. Is that the only one?
Emacs is the best. It's written in an old dialect of Lisp itself, and you can customize it and script sequences of actions in it with Lisp. It also has SLIME, which is the Superior Lisp Interaction Mode for Emacs, (see http://common-lisp.net/project/slime/), which is the most amazing IDE I have ever seen for any language, and I've used VS.NET and Eclipse and all the rest. That's for Common Lisp (CL), which you may or…
I have a quick question that I can't justify creating a new thread about. Since you brought up Lisp implementations though...
I was about to choose to write my programs with SBCL, but it looks like the Win32 port isn't yet complete. Since I'm aiming towards using Lisp in games, speed is an issue, and so is running on Windows. Would you or anyone reccomend a dialect of Lisp which is fast and runs under Windows? Even just 1/4th the speed of C would be excellent.
Re: Which editor do you use for Lisp?
#7Earlier quoted context omitted.
Emacs is the best. It's written in an old dialect of Lisp itself, and you can customize it and script sequences of actions in it with Lisp. It also has SLIME, which is the Superior Lisp Interaction Mode for Emacs, (see http://common-lisp.net/project/slime/), which is the most amazing IDE I have ever seen for any language, and I've used VS.NET and Eclipse and all the rest. That's for Common Lisp (CL), which you may or…
Sounds like just the thing, thank you! I have a quick question that I can't justify creating a new thread about. Since you brought up Lisp implementations though... I was about to choose to write my programs with SBCL, but it looks like the Win32 port isn't yet complete. Since I'm aiming towards using Lisp in games, speed is an issue, and so is running on Windows. Would you or anyone reccomend a dialect of Lisp which…
I believe CLISP runs on Windows. I have no idea whether this is at all practical, since I don't use Windows, but maybe you could use a Unix emulator like Cygwin and run SBCL (and your game) in that, invisibly to the user?
Re: Which editor do you use for Lisp?
#8Earlier quoted context omitted.
Sounds like just the thing, thank you! I have a quick question that I can't justify creating a new thread about. Since you brought up Lisp implementations though... I was about to choose to write my programs with SBCL, but it looks like the Win32 port isn't yet complete. Since I'm aiming towards using Lisp in games, speed is an issue, and so is running on Windows. Would you or anyone reccomend a dialect of Lisp which…
Ask on the #lisp IRC channel on freenode about whether the SBCL win32 port is complete enough for your purposes. It's coming along. Remember to ask your question and then leave the chat idling, so that if your question isn't answered right away, people who have left it idling and then come back to it can see your question and then answer it. I believe CLISP runs on Windows. I have no idea whether this is at all pract…
Re: Which editor do you use for Lisp?
#9Earlier quoted context omitted.
Emacs is the best. It's written in an old dialect of Lisp itself, and you can customize it and script sequences of actions in it with Lisp. It also has SLIME, which is the Superior Lisp Interaction Mode for Emacs, (see http://common-lisp.net/project/slime/), which is the most amazing IDE I have ever seen for any language, and I've used VS.NET and Eclipse and all the rest. That's for Common Lisp (CL), which you may or…
Sounds like just the thing, thank you! I have a quick question that I can't justify creating a new thread about. Since you brought up Lisp implementations though... I was about to choose to write my programs with SBCL, but it looks like the Win32 port isn't yet complete. Since I'm aiming towards using Lisp in games, speed is an issue, and so is running on Windows. Would you or anyone reccomend a dialect of Lisp which…
Re: Which editor do you use for Lisp?
#10Programming consists of a few things. An editor, a compiler, source control, and so on. The editor is particularly important when it comes to being productive. I'm inexperienced with Lisp, and I've found a few things inside Visual Studio that I feel particularly reluctant to part with. "Go to Implementation" is one. I just move the mouse over a function call, press alt-G, and it takes me right to where that function…
You haven't heard of emacs?