105 replies [Last post]
artcoder
artcoder's picture
Offline
Enthusiast
Last seen: 9 years 18 weeks ago
Timezone: GMT-8
Joined: 2005-07-27
Posts: 69
Points: 0

Triumph wrote:artcoder

Triumph wrote:
artcoder wrote:

... Here is my list of editors.

Dreamweaver is the recommended industry standard??

I thought it was. I seen lot of companies and firms use buy it for their employees at work. But in case I'm wrong, I've removed the "industry standard" comment.

MDunl
Offline
newbie
Toronto
Last seen: 14 years 19 weeks ago
Toronto
Joined: 2009-01-25
Posts: 1
Points: 0

EditPad Pro

EditPad Pro is bеtter.
http://www.editpadpro.com/
--------------
Moderator edit: promotional link removed. Signature line links are available when 10 or more posts have been reached.

rgray
Offline
newbie
Aotearoa
Last seen: 14 years 2 weeks ago
Aotearoa
Joined: 2009-05-18
Posts: 1
Points: 0

Text editor for large data files....

I often need to edit large data files (text), most often in Windows. The editing requirements are straightforward, just two extra's....
1. Good macro capabilities (make same change to millions of lines)...
2. Good search capabilities which include {TAB} or EOL in the search string.

Any suggestions folks?

TIA.

gary.turner
gary.turner's picture
Offline
Moderator
Dallas
Last seen: 2 years 13 weeks ago
Dallas
Timezone: GMT-6
Joined: 2004-06-25
Posts: 9776
Points: 3858

rgray wrote:Any suggestions

rgray wrote:

Any suggestions folks?

Emacs.

cheers,

gary

If your web page is as clever as you can make it, it's probably too clever for you to debug or maintain.

pja
pja's picture
Offline
newbie
Last seen: 14 years 1 week ago
Timezone: GMT+10
Joined: 2009-05-26
Posts: 3
Points: 0

Re: EditPlus

brick, I agree with you!

I have been using EditPlus for several years. TextPad is quite similar but the developers have a strange attitude to discussion of alternative editors on their forum.

The feature I like most about these two editors is the Clip Library. Here is a short bit of code from my custom CSS clip Library:

#T=comment
/* ^! */
#T=comment (multi-line)
/*
^!
*/
#T=border
border: ^!border-width | border-style | border-color;
#T=border-bottom
border-bottom: ^!border-bottom-width | border-style | border-color;
#T=border-bottom-color
border-bottom-color: ^!border-color;
#T=border-bottom-style
border-bottom-style: ^!border-style;

The text following the "#T=" appears in a panel on the left side of the main edit window. Click on an entry (say "border") and the text in the line(Drunk below are inserted into your edit window with the cursor positioned at the point where the "^!" string is located. Really neat.

I have custom Clip Libraries for CSS, HTML, HTML entities, HTML colours, PHP and Python. I also have one called "normal(dot)html" (a spoof on Microsoft Word's normal.doc) which I use for all my word processing - I produce ALL my documents as HTML.

Geany is a relative new open source editor which has a feature something like Clip Libraries only you type the equivalent to the text after the "#T=" (say "border") then press the [tab] key and the clip text is inserted. It works on Windows AND Linux and maybe Mac.

Regards,
Peter