Search the web
Sign In
New User? Sign Up
editplus · Join the EditPlus group! The Best Editor
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 6112 - 6142 of 6448   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6112
It seems like it's a crap shoot for me. Sometimes it asks me and sometimes it doesn't. I just want it to pop up the little dialog box asking if I want to add...
Tom
hnn_web_jack
Online Now Send Email
Nov 1, 2008
12:39 pm
6113
... It's not a crap shoot; EditPlus cannot magically guess that the document is of type HTML in order to offer the extension. That said, there are indeed a...
DZ-Jay
dzfoo
Offline Send Email
Nov 3, 2008
11:01 pm
6114
Thanks but I had before been using "template" .html files, in one directory it would ask me, in the other it would not ask me. Both auto detected the file was...
Jack Moore
hnn_web_jack
Online Now Send Email
Nov 4, 2008
10:37 am
6115
Hi, I use Editplus for writing programs in PHP and all output (both PHP and HTML) I generate from PHP code. Unfortunately it's hard to read HTML code inside ""...
pandorhu
pandorhu@...
Send Email
Nov 7, 2008
2:09 pm
6116
I've been testing Edit Plus for almost a month now and enjoy what I see and am considering purchasing a license and replacing Crimson Editor. Edit Plus so far...
dsvick31
Offline Send Email
Nov 10, 2008
1:26 pm
6117
Updates are slow, but they are solid releases. Join the Beta testers and you will get updates very regularly. As for price... you can't beat it I bought a...
John Morse
john63960
Offline Send Email
Nov 10, 2008
3:00 pm
6118
I have used EditPlus for years, and finally decided to pay for it. I paid for it just before the major 3.0 release came out. I didn't have to pay again, the...
Daniel Gibby
illuminique8...
Offline Send Email
Nov 10, 2008
3:42 pm
6119
Hello: For those of us that bought a license years ago, the policy back then was that you get free updates for life, so we never had to upgrade. However, I ...
dz@...
dzfoo
Offline Send Email
Nov 10, 2008
3:58 pm
6120
Actually, I believe that policy has been in place for years but not enforced at all. See my other email. I noticed that policy being there probably around 5 ...
Daniel Gibby
illuminique8...
Offline Send Email
Nov 10, 2008
4:13 pm
6121
It's a moot point anyway. IF a new version were released next month or next year AND the licensing system really did change to per-major-version (and the...
Mark Kahn
CWolves
Offline Send Email
Nov 10, 2008
4:23 pm
6122
For instance, I want to find this kind of paragraph in a text file: sadasdsa asdasdsad <html> test test test ... </html> asfdsa sadasdsa asdasd I want to...
youer.you
Offline Send Email
Nov 16, 2008
11:59 pm
6123
hi folks, just discovered this group. I am using EP to work on big txt files (hundreds of MB, with several hundred thousands of lines). Every now and then I...
omersentro
Offline Send Email
Nov 17, 2008
2:26 pm
6124
Hello: Firstly, welcome to our group! Now for the bad news: I don't think there's a way to disable that prompt. I haven't worked with such large files in a...
DZ-Jay
dzfoo
Offline Send Email
Nov 18, 2008
10:42 am
6125
who can advice the regexp, working in editPlus? Need to delete text from tags <tag>unwanted text</tag>. I mean that there are some code between tags <sript>...
dr_zloba
zloba00@...
Send Email
Nov 28, 2008
1:43 pm
6126
find: <script>[^>]*</script> replace: (replace with nothing) 2008/11/28 dr_zloba <zloba00@...> ... [Non-text portions of this message have been removed]...
Aleem Juma
aleemjuma
Offline Send Email
Nov 28, 2008
3:03 pm
6127
Hello I recently moved to Linux (Ubuntu 8.10, because it looked the easiest) and I've got EditPlus to work fine using Wine. The only problem is it doesn't...
Cliff Laine
clifflaine
Offline Send Email
Dec 5, 2008
11:32 am
6128
... OK found it. I'll repost it here in case anyone has a similar problem in the future. Open EditPlus, go to Tools > Configure User Tools > Settings and ...
Cliff Laine
clifflaine
Offline Send Email
Dec 19, 2008
12:11 am
6129
... You don't need to close and re-open EditPlus; you can go to the Document menu and look for Refresh Syntax File, or something to that effect. dZ. ... It's...
DZ-Jay
dzfoo
Offline Send Email
Dec 19, 2008
11:04 am
6130
Hello dZ and Cliff, There is a menu choice (Document -> File Type -> Refresh STX/ACP But that does not seem to refresh the htmlbar.acp Looks like you need to...
T Cosmas
t_cosmas
Offline Send Email
Dec 24, 2008
3:52 pm
6131
Hi! I hope everyone is having a good holiday season. I have an on-going nag that someone might be able to help me with. I use EditPlus for almost all my text...
Peter Anderson
peter.anderson@...
Send Email
Dec 30, 2008
8:07 am
6132
Perhaps a keyboard macro? dZ. -- War is peace. Equity is slavery. Credit is strength. For Your Convenience. -- The Ministry of Truth...
DZ-Jay
dzfoo
Offline Send Email
Dec 30, 2008
10:40 am
6133
Is there a way to connect a FTP Account to a Project - so that when I select a Project, the FTP Account for that project is selected as well. This would speed...
major4579
Offline Send Email
Jan 6, 2009
6:56 pm
6134
I need to search through some text to find a string which follows the pattern 3 capital letters + 1 lowercase letter + 3 capital letters. From the way the...
T Cosmas
t_cosmas
Offline Send Email
Jan 6, 2009
7:19 pm
6135
Your regexps are wrong: you cannot mix the range operator ([ ]) with the negative range operator ([^ ]). Try this: ([A-Z][A-Z][A-Z])([a-z])([A-Z][A-Z][A-Z]) ...
dz@...
dzfoo
Offline Send Email
Jan 6, 2009
7:32 pm
6136
Are you working only with remote files? When you define a project (and associate saved files as assets of that project), part of the file paths is the ftp...
Bronius Motekaitis
bcswebstudio
Offline Send Email
Jan 6, 2009
7:39 pm
6137
This worked for me: [A-Z][A-Z][A-Z][a-z][A-Z][A-Z][A-Z] If you need the exact same 3 letter sequence on each side, I believe editplus' regex parser does not...
Sergio Pereira
tjokerbr
Offline Send Email
Jan 6, 2009
8:45 pm
6138
The files I'm working on are stored locally (I only have a moderate speed dsl connection). When I make changes to a file I use the 'FTP Upload' as this saves...
major4579
Offline Send Email
Jan 7, 2009
10:54 pm
6139
Yes, that would be a convenient way to operate. I have a similar irk with Dreamweaver: it would be good to have options for Local files, Testing Server, and...
Bronius Motekaitis
bcswebstudio
Offline Send Email
Jan 7, 2009
11:04 pm
6140
Thanks, I have a program "Super Flexible File Synchronizer" from www.superflexible.com that does the compare and transfer like BeyondCompare - hadn't thought...
major4579
Offline Send Email
Jan 8, 2009
6:28 pm
6142
How do I do that? Every time I open an XML file the HTML toolbar mysteriously shows. I have to hide it every time....
genghis8086
Online Now Send Email
Jan 14, 2009
12:07 am
Messages 6112 - 6142 of 6448   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help