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 3660 - 3689 of 6448   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3660
Hello, I want to ask for your help for a regular expression for Javascript. I want to determine there or more consecutive occurrences for same character in a...
Bogdan AXINIA
bogdan_axinia
Online Now Send Email
Mar 2, 2005
10:21 am
3661
It is not possible in editplus because in the find expression we cannot determine the previous character after cursor passes to the next character. you can...
Jagdishwar B
bjagdishwar
Offline Send Email
Mar 2, 2005
1:06 pm
3662
True. If you were performing regular expressions in lie php, then it would be a matter of lookahead. I guess tho that in editplus you could search for each...
jaguarcy
Online Now Send Email
Mar 2, 2005
1:28 pm
3663
A full regexp to detect patterns of consecutive letters would be something like: /([a-z])\1{2,}/i which uses a backreference, not lookahead as I said. Haven't...
jaguarcy
Online Now Send Email
Mar 2, 2005
1:36 pm
3664
When I hit Ctrl-N for a new file how can I make it be a .txt file by default instead of no extension I want to be able to Ctrl -N paste and Ctrl-S to save...
beach_boy_nc
Offline Send Email
Mar 3, 2005
2:23 am
3665
Document/Permanent Settings find the filetype 'Text', and under file extentions add 'txt'. now when trying to save a new document, it will default to the .txt ...
jaguarcy
Online Now Send Email
Mar 3, 2005
3:21 pm
3666
That wasn't his question. He wanted to have the Text File be the default file to come up. If you try what you say, you will see that the box is grayed out to...
Brett Patterson
bpat1434
Offline Send Email
Mar 3, 2005
3:45 pm
3667
Does anybody know if there is a way to view a file that has PHP and HTML with syntax hightlighting for both languages? I've seen this ability in another...
M G
round_i
Offline Send Email
Mar 3, 2005
5:56 pm
3668
EditPlus does exactly that. Create a new PHP file and copy this into it: <html> <script> function hello_world() { document.write("hello world from...
Justin Watt
justincolinwatt
Offline Send Email
Mar 3, 2005
6:09 pm
3669
What box is grayed out? The extension box? You're talking about the 'Default' filetype, i'm referring to the 'Text' filetype. CTRL-N creates a new 'Text file',...
jaguarcy
Online Now Send Email
Mar 3, 2005
6:42 pm
3670
I have did what you said. I went to Tools -> Preferences -> Files -> Settings & Syntax and the txt was in the file extension already. When I do a ctrl -n for...
beach_boy_nc
Offline Send Email
Mar 3, 2005
10:35 pm
3671
hmm... when you hit ctrl-s, does it prompt you for a filename? if yes, what does it say under 'Save as type'?? also what version of editplus are you using? I...
jaguarcy
Online Now Send Email
Mar 3, 2005
11:15 pm
3672
2.12 183 is the version the extension show's as (text) .txt when I do a ctrl-s. When hit enter it just saves it without the extension. Randy...
beach_boy_nc
Offline Send Email
Mar 4, 2005
3:15 am
3673
Hi, I have registered EditPlus2, downloaded the s/w and applied the "upgrade". However, my Help->About still displays 2.12(76), and I noticed that some people...
Jean-Yves
ecsbrowser
Offline Send Email
Mar 9, 2005
12:19 pm
3674
Did you download and install this file: ftp://ftp.editplus.com/epp212_en.exe I think that is the latest public upgrade. If you want newer than that... You need...
John Morse
john63960
Offline Send Email
Mar 9, 2005
1:52 pm
3675
... Ah right. In that case I'll probably just stick with the current version, as it pretty much does everything that I want it to do - unless the new versions...
Jean-Yves
ecsbrowser
Offline Send Email
Mar 9, 2005
2:01 pm
3676
... Yes, you do have the latest stable version. The betas contain many new features, but sometimes present bugs when they are being added for the first time....
DZ-Jay
dzfoo
Offline Send Email
Mar 9, 2005
3:11 pm
3677
On Wed, 09 Mar 2005 12:15:16 -0000, Jean-Yves <ecsbrowser@...> ... You mean you install a newer version but the about panel still has the number of the...
Richard Grevers
nztheatre
Offline Send Email
Mar 9, 2005
7:41 pm
3678
... You shouldn't need to. The last few betas have been drop-replacements of the exe file (and maybe the launcher.dll), without an installation script, so I...
DZ-Jay
dzfoo
Offline Send Email
Mar 9, 2005
9:30 pm
3679
We have a file which contains line feeds without carriage returns (character hex 0A without a character hex 0D). Anybody know how we can search on this...
ekimrepeel
Offline Send Email
Mar 10, 2005
4:59 pm
3680
... As far as I know, there is no way to search for individual control characters. But I suggest you go to the menu Document|File Format|PC and then re-save...
DZ-Jay
dzfoo
Offline Send Email
Mar 10, 2005
5:11 pm
3681
ekimrepeel, dz, Actually you /can/ manipulate those characters if you use those ProggyClean fonts that M. van Renswoude posted to the list back in Jan. Posting...
Aleem Juma
aleemjuma
Offline Send Email
Mar 10, 2005
6:15 pm
3682
Hi, To preface, I have two user tools configured to run java programs: javac ... Command:C:\j2sdk1.4.2_06\bin\javac.exe Argument:$(FileName) Initial...
tailing_loop2003
tailing_loop...
Offline Send Email
Mar 11, 2005
11:44 am
3683
You can either specify -classpath in your tools commands OR (and that is what I do) use the "SET CLASSPATH=path" in your environment variables. Francisco ... ...
Francisco A. S. Grossi
fgrossi
Offline Send Email
Mar 11, 2005
2:57 pm
3684
yes, you do need to set the classpath, but that's just the first thing the problem is getting the package name into the launcher command. what i do is i select...
Aleem Juma
aleemjuma
Offline Send Email
Mar 11, 2005
5:26 pm
3685
All one needs is set CLASSPATH using the environment variables. Both java and javac commands will find the files. This is how I use. Eclipse, as far as I lnow,...
Francisco A. S. Grossi
fgrossi
Offline Send Email
Mar 11, 2005
7:20 pm
3686
javac will find the file, but java won't find the class file unless you include the package name in the command line. To use tailing_loop2003's example, javac...
Aleem Juma
aleemjuma
Offline Send Email
Mar 12, 2005
12:33 am
3687
Hello, I recently tried to open a 263MB file in editplus. I received a message box that said that the file size is too large. The file size limit is 253 MB. ...
George Gomez
highlevelcode
Offline Send Email
Mar 12, 2005
12:33 am
3688
java finds ALL my packages; of course, one must IMPORT the packes. Francisco ... From: "Aleem Juma" <aleem.juma@...> To: <editplus@yahoogroups.com> Sent:...
Francisco A. S. Grossi
fgrossi
Offline Send Email
Mar 12, 2005
1:45 am
3689
Sorry - you've lost me there, Francisco... How do I _import_ the packages into EditPlus? On Fri, 11 Mar 2005 22:45:26 -0300, Francisco A. S. Grossi...
Aleem Juma
aleemjuma
Offline Send Email
Mar 12, 2005
2:18 am
Messages 3660 - 3689 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