I'm trying to set up syntax highlighting in Boxer 9.0 for Ruby, an object-oriented scripting language (see www.ruby-lang.org). I'm having some trouble getting...
Hi Brian, // I'm trying to set up syntax highlighting in Boxer 9.0 for Ruby, an // object-oriented scripting language (see www.ruby-lang.org). I'm // having...
Hi Fritz, // In user tools config, // I try to pass as parameters to a .bat file the full filepath up to but // not including the file extension. I tried...
... i mentioned this to david a while ago. i'm not sure if it's the same software or not. but the author changed the name of the software... the page has been...
I have to edit several thousand ASCII files with a few hundred lines each with Boxer. I need to find the lines that begin with "J:" and end with "BBR" with a...
Neil, Have attached info requested re data types - George should be able to help if you need further info David J Barney Safety Engineer (SAOS) QR Phone +61...
Barney, David
david.barney@...
Jun 21, 2002 1:59 am
1294
Learning Pearl for a task like this may be a bit of an overkill... my shot would be Awk/Gawk or Sed- they are more compact tools, and IMHO easier to learn. Can...
Vogt_Elmar
vogt@...
Jun 21, 2002 8:40 am
1295
I didn't recommend sed/awk for two reasons. First, I've never used either on the Windows platform while I use Perl on Windows on a regular basis. Second, once...
... I use www.searchandreplace.com to do this kind of thing at the moment. If Dave is listening closely we may not need to as much in the future though ;-) -- ...
Tim Jones
list@...
Jun 21, 2002 12:40 pm
1297
I don't know about integrating this functionality into Boxer. Does regular expression functionality of this level really belong in a text editor? Manipulation...
Hi Guys; David has written and sent to me a custom filter program (many thanks to David) that does the job. It is pretty versatile. I can select the file ...
... but you get more out of it than just using it with boxer... ... if you learn sed, you've learned regex's for perl, arguably the hardest thing to get a good...
... that's what i was thinking also. once you have perl you have a full programming language you can do pretty much anything with...including writing gui apps...
... i find i need to have some non-standard text manipulation in a large files. until boxer 99 shows up for linux (crossing fingers), i use vim on that ...
... did the lines you wanted to find need both the start and end information? ie J: and BBR would BOTH be on the lines you needed to change? now i'm just...
Yeah, vim sort of breaks a few cardinal rules. Of course only a real purist would be likely to have a problem with that. John LeMay Senior Consultant NJMC,...
... this is the 'long' version of a perl solution: open snr, ">bbr.new" || die "$!"; while (<>) { s/..r$/tow/i if /^j:/i; print snr; } it could also be done on...
You know, I was going to mention "RMS" when I brought up being annoyed with vim. I resisted though. Glad you see you didn't - indirectly anyhow! John LeMay ...
Hello John, JL> I don't know about integrating this functionality into Boxer. JL> Does regular expression functionality of this level really JL> belong in a...
Tim Jones
list@...
Jun 22, 2002 1:36 am
1309
... Not to advertise another product, Ultra-Edit does have some support for regular expressions. It is incorporated into the search function. I must admit...
Has anyone worked up a syntax highlighting scheme for KIXTART, the Windows scripting language? The syntax is pretty typical with if/then/endif, case, etc. and...
I am unable to use long filenames with Boxer TKO under Win2k/XP... Ahhh.. and, to access clipboard contents too... Anyone knows how to fix this problem? ...
Frederico Pissarra
fred@...
Jul 11, 2002 7:46 pm
1313
Hi Frederico, Frederico> I am unable to use long filenames with Boxer TKO under Frederico> Win2k/XP... Ahhh.. and, to access clipboard contents too... ...
Clipboard support I understand... but how DOS programs like EDIT.COM works fine with long filenames in Win2k/WinXP? DJGPP gcc works fine too... ... From:...
Frederico Pissarra
fred@...
Jul 12, 2002 4:51 pm
1315
Hi Frederico, Frederico> Clipboard support I understand... but how DOS programs like Frederico> EDIT.COM works fine with long filenames in Win2k/WinXP? ...