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...
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...
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...
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...
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...
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 ...
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...
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...
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',...
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...
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...
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...
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...
... 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...
... 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....
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...
... 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...
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...
... 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...
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...
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...
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 ... ...
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...
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,...
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...
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. ...
java finds ALL my packages; of course, one must IMPORT the packes. Francisco ... From: "Aleem Juma" <aleem.juma@...> To: <editplus@yahoogroups.com> Sent:...