What is the best software development platform to use when working with Erlang?

View: New views
8 Messages — Rating Filter:   Alert me  
< Prev | 1 - 2 | Next >

Re: What is the best software development platform to use when working with Erlang?

by kamiseq :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

hehe if erlang is a way to get to coders haven then maybe emacs is it's
purgatory :)

pozdrawiam
Paweł Kamiński

kamiseq@...
pkaminski.prv@...
______________________

Re: What is the best software development platform to use when working with Erlang?

by Thomas Lindgren :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message






----- Original Message ----
> From: paweł kamiński <kamiseq@...>
>
> hehe if erlang is a way to get to coders haven then maybe emacs is it's
> purgatory :)


Emacs is the gnostic secret of programming ...

Best,
Thomas

PS. Devoted emacs user since 1984 (pre-gnu emacs! :-)





________________________________________________________________
erlang-questions mailing list. See http://www.erlang.org/faq.html
erlang-questions (at) erlang.org


Re: What is the best software development platform to use when working with Erlang?

by Yves S. Garret :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Usually I use gEdit.  It's simple to use and prolific.  I like the
tabs at the top (yes, I know that emacs has 'buffers', but I'm stuck
on gEdit :) ).  If you're going to start modifying someone else's
code, I'd suggest Eclipse.  It seems like a nice way of standardizing
your development environment.  Users can potentially change things
behind the scenes which could affect the manner in which code is run.
Outside your development machine.  I hope that you're using CVS/SVN/
git :) .  The last thing that you want is to do is to start doing
diffs manually ;) .

On Jun 17, 6:34 pm, "G.S." <corticalcompu...@...> wrote:

> Hello everyone,
>
> Is Eclipse the best SDE to use? I usually don't bother using anything other
> than a simple text editor with a highlighter since I can keep my code in my
> head, and even when debugging I can just work my way through the logic to
> find the errors I'm seeing even with 10k+ lines of code systems. But I'll
> have to begin working with someone else's code in a while, and it will most
> likely be over 25k lines of code, so I'll need something more robust. Anyone
> suggest anything other than Eclipse with the Erlang plug-in?
>
> Regards,
> -Gene

________________________________________________________________
erlang-questions mailing list. See http://www.erlang.org/faq.html
erlang-questions (at) erlang.org


Re: What is the best software development platform to use when working with Erlang?

by Praveen Ray-5 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Maybe some Emacs gurus can help me out with my annoying Emacs string issue.
I use stock erlang-mode on Ubuntu. Whenever I type a string  with double
slashes, emacs goes crazy and refuses to recognize the ending double quote
as the end of the string and all following lines are now colored as if I'm
still inside that string! Tab completions, indentations don't work and it
looks ugly!

re:run(MyString, "(\\d+)"),
All lines here and after are thought to be inside that regex(by emacs)!

I'm sure others have solved this problem!

Thanks
-Praveen

On Thu, Jul 2, 2009 at 11:11 AM, Thomas Lindgren
<thomasl_erlang@...>wrote:

>
>
>
>
>
> ----- Original Message ----
> > From: paweł kamiński <kamiseq@...>
> >
> > hehe if erlang is a way to get to coders haven then maybe emacs is it's
> > purgatory :)
>
>
> Emacs is the gnostic secret of programming ...
>
> Best,
> Thomas
>
> PS. Devoted emacs user since 1984 (pre-gnu emacs! :-)
>
>
>
>
>
> ________________________________________________________________
> erlang-questions mailing list. See http://www.erlang.org/faq.html
> erlang-questions (at) erlang.org
>
>


--
Yellowfish Technologies Inc
http://www.yellowfish.biz
praveen.ray@...
(888) 817 2969 x 233
gtalk/skype: praveenray

Re: What is the best software development platform to use when working with Erlang?

by harveyd :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I believe thats been fixed in the erlware-mode
which is erlang mode but often a bit more up to
date

http://code.google.com/p/erlware-mode/

the other way is to put a comment after the
line that terminates the escape, its usually
for when people use $' though, I cant see
how yours goes funny, but some combination
of " and \ after the comment will probably fix it

re:run(MyString, "(\\d+)"), % "

2009/7/2 Praveen Ray <praveen.ray@...>

> Maybe some Emacs gurus can help me out with my annoying Emacs string issue.
> I use stock erlang-mode on Ubuntu. Whenever I type a string  with double
> slashes, emacs goes crazy and refuses to recognize the ending double quote
> as the end of the string and all following lines are now colored as if I'm
> still inside that string! Tab completions, indentations don't work and it
> looks ugly!
>
> re:run(MyString, "(\\d+)"),
> All lines here and after are thought to be inside that regex(by emacs)!
>
> I'm sure others have solved this problem!
>
> Thanks
> -Praveen
>
> On Thu, Jul 2, 2009 at 11:11 AM, Thomas Lindgren
> <thomasl_erlang@...>wrote:
>
> >
> >
> >
> >
> >
> > ----- Original Message ----
> > > From: paweł kamiński <kamiseq@...>
> > >
> > > hehe if erlang is a way to get to coders haven then maybe emacs is it's
> > > purgatory :)
> >
> >
> > Emacs is the gnostic secret of programming ...
> >
> > Best,
> > Thomas
> >
> > PS. Devoted emacs user since 1984 (pre-gnu emacs! :-)
> >
> >
> >
> >
> >
> > ________________________________________________________________
> > erlang-questions mailing list. See http://www.erlang.org/faq.html
> > erlang-questions (at) erlang.org
> >
> >
>
>
> --
> Yellowfish Technologies Inc
> http://www.yellowfish.biz
> praveen.ray@...
> (888) 817 2969 x 233
> gtalk/skype: praveenray
>

Re: What is the best software development platform to use when working with Erlang?

by kamiseq :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

recently I ve played with erlybird plugin for netbeans and it works fine but
it is not project oriented plugin and it lacks templates to generate code
like in erlang..anyway it is working :)

pozdrawiam
Paweł Kamiński

kamiseq@...
pkaminski.prv@...
______________________

Re: What is the best software development platform to use when working with Erlang?

by MAthuvathanan Mou. :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I am using UltraEdit with erlang syntax highlighting for years. have to give
a try with emacs.

Thanks,
Mathu Mou.

2009/7/26 paweł kamiński <kamiseq@...>

> recently I ve played with erlybird plugin for netbeans and it works fine
> but
> it is not project oriented plugin and it lacks templates to generate code
> like in erlang..anyway it is working :)
>
> pozdrawiam
> Paweł Kamiński
>
> kamiseq@...
> pkaminski.prv@...
> ______________________
>



--
Mathuvathanan Mou.

Re: Re: What is the best software development platform to use when working with E

by Michael Richter-5 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I use jEdit with some templating plug-ins that let me get a lot of  
boilerplate code out of the way quickly. When I get less lazy I'll add some  
scripts to generate a project from scratch.
< Prev | 1 - 2 | Next >