I don't know about any tutorials about that task, but on http://www.editplus.com/others.html (editplus - user files) you can find loads of stx, acp and ctl...
I'm a casual EditPlus user, so my expectations might be lower than yours, but the current release is only a little more than two months old (10/21/2002). That...
In case someone hasn't noticed this possible bug... In EditPlus 2.11 and 2.11(SR1), the number of columns is limited to 9,363. Any characters after column...
Hello friends Sorry for a rather stupid question :-) I am new to both programming and edit plus and am trying to use it to learn Pascal. I have downloaded both...
You can set up your "tools" so that you can press (for example) "Ctrl+1" and it'll compile.. and then "Ctrl+2" it'll run. So, when you are setting up these...
Hi, In the PLM-programming language I have two procedures (functions): proc1: PROCEDURE (arg1, arg2) EXTERNAL; proc2: PROCEDURE (arg3, arg4); What is the...
Perhaps this: ^[A-Za-z0-9_]+: *procedure *\(.*\) *;$ Note the last ' *' after ')' character Your RegExp is too large because '.*' after 'procedure' match all...
... characters Well actually I have also: proc3: PROCEDURE; Some procedures have no arguments. Your suggestion only shows the procedures WITH arguments. So I...
... this: ^[A-Za-z0-9_]+: *procedure *(\(.*\))?; works for above and procedure w/o arguments -- Marcin Gryszkalis http://fork.pl <><...
Marcin Gryszkalis
mg@...
Jan 8, 2003 4:01 pm
1407
Sorry, I don't know PLM, this is right? ^[A-Za-z0-9_]+: *procedure *(\(.*\))* *;$ Bye Ktrl+S ... From: <leimpie@...> To: <editplus@yahoogroups.com> Sent:...
... This one works okay. However it turned out I have also proc4: PROCEDURE (arg1, arg2) WORD; and proc5: PROCEDURE (arg1, arg2) PUBLIC; So I extended to: ...
First I'd like to say that both the users and the coder of EditPlus is approaching this whole issue incorrectly. I was dissapointed in the fact that EditPlus...
I just downloaded the newest version of WebDrive ( 5.21 ) and noticed that WebDrive DOES contain SSL 'AUTH', SSL Implicit and SSH support so that you can mount...
... This is the only thing that RegExps (in general) lack - negation of string, even perl doesn't have that :) -- Marcin Gryszkalis http://fork.pl <><...
Marcin Gryszkalis
mg@...
Jan 9, 2003 6:33 pm
1412
I use the FTP feature of Edit+ all the time, I love it. Edit+ is still the best editor available. I don't understand being "disappointed" because a program has...
Hi, When I view file with no extension, it displays only one color black. I would like to know how do I change preferences to view files with no extensions as...
That's true - python includes a feature in its re library that allows this. There are also many other wonderful features. With reference to the conversation...
Hi, has anyone a solution how to edit files on a WebDAV server with EditPlus? Some editors like VIM directly support WebDAV but EditPlus seems not to do that. ...
No, not an any fashion, I just was pushing it because it solves people's problems wtih FTP/SFTP/SSH much better than bugging the EditPlus coders. and for all...
Here's the best solution. You CAN use SSH to tunnel an FTP connection to your server. Using the SSH program from www.ssh.com you can setup tunnels to the...
Been trying to make a syntax file for a basic language. Static expressions works well, but if I try to use the Regular Search expressions like *, ^, $ ect. it...
I am trying to establish a secure connection via putty. It works fine, i.e. I am able to login to the ftp server, but I can't get file listing etc. When I try...
Maybe I'm missing something, but is it possible to do a search and replace, and in the "Replace with:" field put something like $1 to return what was found...
use \[number] for backreferencing, for instance <([^>]*)>(.*)$ \1 returns everything between < and >, \2 everything following the tag until end of line... ...
... I write: Not quite correct - the expression below will find all instances of the procedure declaration except the one with EXTERNAL after the optional...
... before ... Thanks Bmadtiger, this is the ultimate one. It even finds: proc8: PROCEDURE (arg1, arg2) PUBLIC USING 3; This one was not stated till yet. Like...
... Well, at a closer look it also finds: proc9: PROCEDURE (arg1, arg2) EXTERNAL USING 3; this one should be excluded of course. It does not find: proc10:...