Tilly,
Thanks for the tips, bro. I especially like the first one, if I understand you correctly. Instead of using arbitrary numbers to match code, just use a hash. Very neat. I'll try that out.
As far as learn my editor better, well, one of the major reasons I wrote this program is because I do web design with Dreamweaver which does not have change of case functionality. Also, I use UltraEdit in Windows which also has limited text processing capabilities. It's no Vim or Emacs as far as shortcut keys go. However, UE works very well as a cheap IDE, allowing me to run test code and debug Perl programs very quickly. I tried using Vim (which I used fairly extensively when I used Linux) in Windows the other night but found it a huge pain to use just to test some simple code compared to UE. And I don't really do enough programming to be able to take full advantage of a Vim or Emacs. I've written maybe 6 to 10 small Perl programs in the last year. So by the time it's time for me to write another program, I've all but forgotten what what the shortcut keys are. It gets very frustrating having to look up the simplest keystrokes over and over. But I'm certainly open to suggestions for a better IDE/editor for Perl on Windows if you can recommend one.
$PM = "Perl Monk's";
$MCF = "Most Clueless Friar Abbot Bishop Pontiff";
$nysus = $PM . $MCF;
Click here if you love Perl Monks
| [reply] |
| [reply] |
| [reply] |
For more editor choices than you can shake a stick at, see Code Editors and Development Environments. But still I think that bm underscored the value in learning your existing editor better.
However you're right that this will not help you with Dreamweaver. And from experience I can tell you that editing your text with a small Perl utility will work, and gives you lots of opportunity to learn Perl better. Whether or not this is more useful to you than learning editors in general is a judgement call.
| [reply] |
nysus,
UltraEdit looks very much like http://www.chami.com/html-kit/
May be that you should try it (FREE). It has some macro stuff that looks like JavaScript and there is a lot of modules to extend functionality as much as you want.
Anyway, I am fond of Xemacs. But HTML-KIT has also a module that helps editing Perl scripts, checks syntax and runs perl scripts...
| [reply] |