Amiga.org

Operating System Specific Discussions => Amiga OS => Amiga OS -- Development => Topic started by: Omega Space Protons on May 02, 2011, 11:06:25 PM

Title: New Text Editor
Post by: Omega Space Protons on May 02, 2011, 11:06:25 PM
I am trying to get back into Amiga Development, and would like to know if i should create a text editor or is there enough good text editors that i should try to make another type of application. Any assistence in this matter would be greatly appreciated.
 
Sincerely,
 
Omega Space Protons
Title: Re: New Text Editor
Post by: Dragster on May 02, 2011, 11:11:31 PM
Perhaps you should join Hyperion coding OS4 as per their request... looks like they are having some trouble with resources...
 
Cheers,
 
Dragster
Title: Re: New Text Editor
Post by: Omega Space Protons on May 02, 2011, 11:23:34 PM
Quote from: Dragster;634976
Perhaps you should join Hyperion coding OS4 as per their request... looks like they are having some trouble with resources...
 
Cheers,
 
Dragster

I don't get it :confused: I'm trying to back into coding applications for the amiga and decided that a text editor would be simple to do. Any assistence in this matter would be greatly appreciated.
 
Sincerely,
 
Omega Space Protons
Title: Re: New Text Editor
Post by: Dragster on May 02, 2011, 11:46:06 PM
Read here: http://blog.hyperion-entertainment.biz/?p=327
 
Cheers,
 
Dragster
Title: Re: New Text Editor
Post by: ognix on May 02, 2011, 11:51:35 PM
Depends on the target platform: if you think just PPC/AROS maybe there's room for improvements (eg. fast syntax recognition needs some processing power).
If you aim to 68k mostly, I think that going better than present choices is difficult or, at least, would take a quite long time of coding for comparing with leading products (the classic Cygnus Editor, GoldED, etc.).

But if you feel to do it, do it anyway! :)

BY!

P.S. I'm thinking about doing a basic QR code decoder (from images): pretty useless on a fixed system, but why not, and I want to do some coding as well!  :)
Title: Re: New Text Editor
Post by: amigakit on May 03, 2011, 12:05:43 AM
Cubic IDE is an excellent editor - probably the best on the Amiga.

Check it out: http://devplex.awardspace.biz/cubic/index.html
Title: Re: New Text Editor
Post by: commodorejohn on May 03, 2011, 12:16:57 AM
Quote from: amigakit;634991
Cubic IDE is an excellent editor - probably the best on the Amiga.
Cubic IDE is monstrously huge, doesn't work with OS3.1, requires RTG, and isn't free. I can see a definite need for an editor that's smaller, more compatible, and doesn't cost 50 EUR.
Title: Re: New Text Editor
Post by: Omega Space Protons on May 03, 2011, 12:27:03 AM
Quote from: amigakit;634991
Cubic IDE is an excellent editor - probably the best on the Amiga.

Check it out: http://devplex.awardspace.biz/cubic/index.html


I`m not trying to create a 39M text editor to sell. I want to create an open source text editor in which everyone can contribute in making it better. After some loose research, none of thebquoted text editors provide their source code. If everyone helps, maybe there will be an OpenOffice for Amiga!!! .....maybe.

Sincerely,

Omega Space Protons
Title: Re: New Text Editor
Post by: TheGoose on May 03, 2011, 01:03:29 AM
Quote from: Omega Space Protons;634973
I am trying to get back into Amiga Development, and would like to know if i should create a text editor or is there enough good text editors that i should try to make another type of application. Any assistence in this matter would be greatly appreciated.
 
Sincerely,
 
Omega Space Protons

I would love to see one that runs line numbers down the left-hand side like notepad2, bluefish, or programmer's notepad.

And code formatting like any of these do would be great. But that might be asking a bit much.

Also good search and replace.

Personally, I think text editors on the Amiga, pretty much suck and are way unusable.

http://bluefish.openoffice.nl/screenshots.html
Title: Re: New Text Editor
Post by: Gulliver on May 03, 2011, 01:18:14 AM
Quote from: Omega Space Protons;634995
I`m not trying to create a 39M text editor to sell. I want to create an open source text editor in which everyone can contribute in making it better. After some loose research, none of thebquoted text editors provide their source code. If everyone helps, maybe there will be an OpenOffice for Amiga!!! .....maybe.

Sincerely,

Omega Space Protons


Well, if you could knock up a text editor with a some sort of spellchecker and .doc (WinWord) compatibility, then you will surely have something worth supporting.

Good luck! :)
Title: Re: New Text Editor
Post by: XDelusion on May 03, 2011, 04:22:59 AM
What is the most resource friendly, but rich in features, Text Editor available for classic Amiga?
Title: Re: New Text Editor
Post by: Gulliver on May 03, 2011, 04:54:11 AM
Quote from: XDelusion;635021
What is the most resource friendly, but rich in features, Text Editor available for classic Amiga?

For me it is undoubtly

TextEngine 5.2 (Which is now free)

http://aminet.net/text/edit/TextEngine.lha
Title: Re: New Text Editor
Post by: Karlos on May 03, 2011, 07:41:23 AM
Quote from: TheGoose;634999
Also good search and replace.


Doesn't the old Ed 2.0 use regular expressions for search and replace? Or at least a simplified form thereof...

Back in the day, I wrote a lot of code with just that editor, and if I needed a particularly heavy session, memacs :)
Title: Re: New Text Editor
Post by: vidarh on May 03, 2011, 10:08:33 AM
Quote from: Omega Space Protons;634995
I`m not trying to create a 39M text editor to sell. I want to create an open source text editor in which everyone can contribute in making it better. After some loose research, none of thebquoted text editors provide their source code.


If you want to contribute to an open source Amiga text-editor, take a look at FrexxEd. It's open source, and I'm working on various changes (AROS port works pretty well; various scripting updates; palette handling improvements etc.). It's fairly mature as-is, but there's plenty of room for improving it.

Take a look at https://github.com/vidarh/FrexxEd

I don't have enough time to work very quickly on it, so anyone who wants to join in and contribute are very much welcome... If you're interested, let me know and I'll outline some of the ideas I have
Title: Re: New Text Editor
Post by: Daedalus on May 03, 2011, 11:59:03 AM
I also think there's some room for a nice, simple text editor which has some options like syntax highlighting, line numbers etc., maybe auto-indenting and a scripting interface to allow compilation from the menus, though this isn't essential. As an example, I carry Notepad++ around with me on a USB drive. It does what I need and is pretty small. It's also open-source, so maybe a partial port or some borrowing of features might be possible?
Title: Re: New Text Editor
Post by: vidarh on May 03, 2011, 12:21:43 PM
Quote from: Daedalus;635062
I also think there's some room for a nice, simple text editor which has some options like syntax highlighting, line numbers etc., maybe auto-indenting and a scripting interface to allow compilation from the menus


FrexxEd supports all of this, and I'm sure several other Amiga editors does too.
Title: Re: New Text Editor
Post by: Daedalus on May 03, 2011, 01:08:42 PM
Yeah, I know that others do support these things, but I hadn't come across an open source effort until FrexxEd - I'll have to check it out when I get home :)
Title: Re: New Text Editor
Post by: hardlink on May 04, 2011, 05:41:14 PM
Quote from: Omega Space Protons;634995
I want to create an open source text editor in which everyone can contribute in making it better...maybe there will be an OpenOffice for Amiga!!! .....maybe.


Since you mention OO, are you talking about a text editor or word processor?

Probably the most used pure Text Editor in the world right now was originally developed on the Amiga, and the author may be still compiling the latest versions on his old A2000: VIM, the VI iMproved editor. Most certainly open source, now has really large code base, and probably as difficult to contribute code to as the Linux kernel itself.

Then there is my favorite, also developed on the Amiga, also as portable as VIM, not nearly as powerful, but is about 5% as much code.   It's called 'ne', for Nice Editor:

http://ne.dsi.unimi.it/

It has text-mode drop-down menus that even work if you telnet into the Amiga, something that I found on no other Amiga editor. I use the latest version on all machines I work on, generally where others would use VIM, on Mac OS X, Unix, and Linux. However, I can't get the latest versions to compile on the Amiga, although I have not spent much time trying.

The older version is on Aminet that includes source and a SAS C makefile, the new source from the website, which still mentions Amiga! I would love to have the latest version of ne (back) on the Amiga!