Re: [Cooker] About a good editor for java .......

2000-10-07 Thread Guillaume Rousse

Also sprach david jenkins :
 
 I've found that Borland JBuilder Foundation works very well for this,
 and it's also free... you just have to register on their site
It is not Free ! It is just downloadable without any cost !
Moreover, their "foundation version" has just very basic function
available, while everything else is listed but unusable : you have to
buy the commercial vision.
And lastly, is is not just an editor, but a full IDE, so maybe not
adapted to initial demand.
If it is not the cas, NetBeans is now opensourced and fully
Unix-compliant (cvs-compatible, another external ediotr can be used,
etc...). See http://www.netbeans.org

 --- Meir Faraj [EMAIL PROTECTED] wrote:
  Hi
I  wana know if there is any  of thee editor that have color for
  java  and
  could write end of line by default as CR/LF .
  it will be simpliere for me than use always as I work with programer
  that
  work under the dark side os (Micro$oft windarka os) ;-)
  I've saw Xemacs have cool colors but(I doesn't found this option
  on it)
 
 
 __
 Do You Yahoo!?
 Yahoo! Photos - 35mm Quality Prints, Now Get 15 Free!
 http://photos.yahoo.com/

-- 
Guillaume Rousse

Murphy's law : If anything can go wrong, it will.
O'Tool's commentary : Murphy was an optimist.




Re: [Cooker] About a good editor for java .......

2000-10-06 Thread Chmouel Boudjnah

Meir Faraj [EMAIL PROTECTED] writes:

 how to put emacs in dos-mode ?

Emacs detect it automatically..

-- 
MandrakeSoft Inc http://www.chmouel.org
Paris, France --Chmouel




Re: [Cooker] About a good editor for java .......

2000-10-06 Thread Meir Faraj

On Fri, 06 Oct 2000, you wrote:
 Meir Faraj [EMAIL PROTECTED] writes:
  how to put emacs in dos-mode ?

 Emacs detect it automatically..
no it put ^M and when you pass to new line it will do a linux newline ..




Re: [Cooker] About a good editor for java .......

2000-10-06 Thread david jenkins

I've found that Borland JBuilder Foundation works very well for this,
and it's also free... you just have to register on their site

--- Meir Faraj [EMAIL PROTECTED] wrote:
 Hi 
   I  wana know if there is any  of thee editor that have color for
 java  and 
 could write end of line by default as CR/LF .
 it will be simpliere for me than use always as I work with programer
 that 
 work under the dark side os (Micro$oft windarka os) ;-)
 I've saw Xemacs have cool colors but(I doesn't found this option
 on it)
 


__
Do You Yahoo!?
Yahoo! Photos - 35mm Quality Prints, Now Get 15 Free!
http://photos.yahoo.com/




[Cooker] About a good editor for java .......

2000-10-05 Thread Meir Faraj

Hi 
  I  wana know if there is any  of thee editor that have color for java  and 
could write end of line by default as CR/LF .
it will be simpliere for me than use always as I work with programer that 
work under the dark side os (Micro$oft windarka os) ;-)
I've saw Xemacs have cool colors but(I doesn't found this option on it)




Re: [Cooker] About a good editor for java .......

2000-10-05 Thread Reinhard Katzmann

Hi Meir!

On Thu, Oct 05, 2000 at 09:20:07PM +0300, Meir Faraj wrote:
 Hi 
   I  wana know if there is any  of thee editor that have color for java  and 
 could write end of line by default as CR/LF .
 it will be simpliere for me than use always as I work with programer that 
 work under the dark side os (Micro$oft windarka os) ;-)
 I've saw Xemacs have cool colors but(I doesn't found this option on it)

I don't know how different Xemacs commands are from emacs (emacs can have
syntax coloring (that how it is called) as well:

;; Turn on font-lock mode for Emacs
(cond ((not running-xemacs)
(global-font-lock-mode t)
))

I think this is from the default .emacs which comes with mandrake, but
I may be wrong.

BTW: You can change menu, background etc. colors as well, f.e. in my
.Xdefault I have the following lines:
emacs*font: -misc-fixed-medium-r-normal--*-160-*-*-*-*-iso8859-15
emacs*background: rgb:512/0/512

These are X standard color commands, which work with other X apps as
well. See "man X" for more info (or read the X-Window-HOWTO).

Oh yes: To turn on CR/LF you have to change to DOS-mode. Oh yes,
windows itself (except the damn notepad) does no longer use CR/LF.
This is only for backward-compatibility.

Best regards,

Reinhard Katzmann
-- 
E-Mail: [EMAIL PROTECTED]
New GnuPG Public Key available on request
Projekte: Suche nach einem Diplomarbeitsthema für das WS 2000/2001
  Datenbankanbindung und Demonstrationsserver für Pincity




RE: [Cooker] About a good editor for Java .......

2000-10-05 Thread Koloseike, Jason

You could use Vim/Gvim.  Available on most platforms.  Tons of syntax
highlighting options.  Can also set file format to dos or Unix
which takes care of the CR/LF issue.

-Original Message-
From: Meir Faraj [mailto:[EMAIL PROTECTED]]
Sent: Thursday, October 05, 2000 2:20 PM
To: [EMAIL PROTECTED]
Subject: [Cooker] About a good editor for java ...


Hi 
  I  wana know if there is any  of thee editor that have color for java  and

could write end of line by default as CR/LF .
it will be simpliere for me than use always as I work with programer that 
work under the dark side os (Micro$oft windarka os) ;-)
I've saw Xemacs have cool colors but(I doesn't found this option on it)




Re: [Cooker] About a good editor for java .......

2000-10-05 Thread Meir Faraj

On Thu, 05 Oct 2000, you wrote:
 Hi Meir!

 On Thu, Oct 05, 2000 at 09:20:07PM +0300, Meir Faraj wrote:
  Hi
I  wana know if there is any  of thee editor that have color for java 
  and could write end of line by default as CR/LF .
  it will be simpliere for me than use always as I work with programer that
  work under the dark side os (Micro$oft windarka os) ;-)
  I've saw Xemacs have cool colors but(I doesn't found this option on
  it)

 I don't know how different Xemacs commands are from emacs (emacs can have
 syntax coloring (that how it is called) as well:

 ;; Turn on font-lock mode for Emacs
 (cond ((not running-xemacs)
 (global-font-lock-mode t)
 ))

 I think this is from the default .emacs which comes with mandrake, but
 I may be wrong.

 BTW: You can change menu, background etc. colors as well, f.e. in my
 ..Xdefault I have the following lines:
 emacs*font: -misc-fixed-medium-r-normal--*-160-*-*-*-*-iso8859-15
 emacs*background: rgb:512/0/512

 These are X standard color commands, which work with other X apps as
 well. See "man X" for more info (or read the X-Window-HOWTO).

 Oh yes: To turn on CR/LF you have to change to DOS-mode. Oh yes,
 windows itself (except the damn notepad) does no longer use CR/LF.
 This is only for backward-compatibility.

 Best regards,

 Reinhard Katzmann
how to put emacs in dos-mode ?




Re: [Cooker] About a good editor for java .......

2000-10-05 Thread Alexander Skwar

On Thu, Oct 05, 2000 at 09:51:31PM +0200, Reinhard Katzmann wrote:
 Oh yes: To turn on CR/LF you have to change to DOS-mode. Oh yes,
 windows itself (except the damn notepad) does no longer use CR/LF.

Hmm, what other pure-text editors are there for Windows?  And what do you
mean by that, it doesn't make sense to me.

Please explain, I'm really interested.  Maybe off-list, as this is getting
too much off-topic.

Alexander Skwar
-- 
Homepage:   http://www.digitalprojects.com | http://www.dp.ath.cx
Sichere Mail?   Mail an [EMAIL PROTECTED] fuer GnuPG Keys
ICQ:7328191




Re: [Cooker] About a good editor for Java .......

2000-10-05 Thread Meir Faraj

Hi , thanks .
I doesn't know why I've not  think about vim 

 thanks...

On Thu, 05 Oct 2000, you wrote:
 You could use Vim/Gvim.  Available on most platforms.  Tons of syntax
 highlighting options.  Can also set file format to dos or Unix
 which takes care of the CR/LF issue.

 -Original Message-
 From: Meir Faraj [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, October 05, 2000 2:20 PM
 To: [EMAIL PROTECTED]
 Subject: [Cooker] About a good editor for java ...


 Hi
   I  wana know if there is any  of thee editor that have color for java 
 and

 could write end of line by default as CR/LF .
 it will be simpliere for me than use always as I work with programer that
 work under the dark side os (Micro$oft windarka os) ;-)
 I've saw Xemacs have cool colors but(I doesn't found this option on it)