Send Notepad-plus-plus mailing list submissions to notepad-plus-plus@lists.sourceforge.net
To subscribe or unsubscribe via the World Wide Web, visit https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus or, via email, send a message with subject or body 'help' to [EMAIL PROTECTED] You can reach the person managing the list at [EMAIL PROTECTED] When replying, please edit your Subject line so it is more specific than "Re: Contents of Notepad-plus-plus digest..." Today's Topics: 1. [notepad-plus - Plugin Development] RE: wNppExec working directory (SourceForge.net) 2. [notepad-plus - Plugin Development] RE: wNppExec working directory (SourceForge.net) 3. [notepad-plus - Plugin Development] RE: wNppExec working directory (SourceForge.net) 4. [notepad-plus - Plugin Development] RE: wNppExec working directory (SourceForge.net) 5. [notepad-plus - Help] Quote Delimiter Problem (SourceForge.net) 6. [notepad-plus - Help] Coloring .COM Methods and Possible Minor Bug (SourceForge.net) 7. [notepad-plus - Help] RE: Can't get my Colors to Work (SourceForge.net) 8. [notepad-plus - Help] Replacing everything between quotes (SourceForge.net) ---------------------------------------------------------------------- Message: 1 Date: Tue, 04 Nov 2008 16:02:43 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE: wNppExec working directory To: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=5574789 By: harrybharry We hcanged the working directory behaviour to always revert to the installation directory unless an open/save dialog is active, to prevent the problem where people complain about locked directories. Currently, I think its set only once and always revert to its original state before and after open.save dialog actions, so oyu might be able to hijack it (this is an implementation detail and you cannot really rely on it). You'd have to start a secondary process for full control, but I can image thats far from ideal (though you might get away with it using Rundll.exe to prevent the need of another .exe) ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=482781 ------------------------------ Message: 2 Date: Tue, 04 Nov 2008 16:09:38 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE: wNppExec working directory To: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=5574829 By: dv__ OK, new NppExec's option "Follow $(CURRENT_DIRECTORY)" will be added :) ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=482781 ------------------------------ Message: 3 Date: Tue, 04 Nov 2008 16:19:30 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE: wNppExec working directory To: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=5574893 By: leonardo_fabian Well, the way it used to work was excellent for me (I use to run a batch file which I modify frequently, so right after editing it I was able to run it whithout the need to CD to its location); if the new behaviour is good for most users, I'm fine with that. Maybe I'll be able in the future to find a workaround. Your proposal harrybharry seems not easy for a "simple human being" like me :) (I'm quite new to Notepad++). Thank you all for the answers. And thank you to the developers who make a great job in this very usefull program/environment! Fabian ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=482781 ------------------------------ Message: 4 Date: Tue, 04 Nov 2008 16:32:35 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE: wNppExec working directory To: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=5574961 By: leonardo_fabian Thank you DV ! ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=482781 ------------------------------ Message: 5 Date: Tue, 04 Nov 2008 16:57:56 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Help] Quote Delimiter Problem To: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=5575094 By: pmsimard HI, I customized a MaxScript custom language and im getting bad behavior with string that contain quote in it. ex: string = "hello" >> this works fine but if I want to insert a quote inside the string then it start breaking the color coding like in this: string = "He says \"Hey\"" where the \" should mean insert a quote but instead it just think the string end there. I know most of the predefined language support it without problem so could user defined language can ? Thanks PM ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=331754 ------------------------------ Message: 6 Date: Tue, 04 Nov 2008 17:00:49 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Help] Coloring .COM Methods and Possible Minor Bug To: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=5575113 By: gadrin This might be a minor bug: Using a VB script I noticed that the two FOR/NEXT loops were colored different. The first one was fine, but the 2nd the NEXT wasn't color-matched to the FOR. Then I realized the NEXT was on the last line in the file and as soon as I entered a CRLF after it, it was colored. =========================== Is there a way to colorize the various .methods, etc used ? I've tried entering them as I would any other keyword (for the .VBS extension). Example: ' now take the input file and read it into a variable the close the file... Set fso = CreateObject("Scripting.FileSystemObject") Set f = fso.OpenTextFile(filespec, ForReading) daHTML = f.ReadAll f.Close() CreateObject is colored correctly, but the .OpenTextFile and .ReadAll and .Close are ignored. Thanks. > ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=331754 ------------------------------ Message: 7 Date: Tue, 04 Nov 2008 17:02:38 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Can't get my Colors to Work To: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=5575128 By: gadrin Finally got it going. I had a default setup and now it's good. > ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=331754 ------------------------------ Message: 8 Date: Tue, 04 Nov 2008 17:23:39 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Help] Replacing everything between quotes To: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=5575251 By: bob_james I'm trying to replace data in a text file that begins and ends with double-quotes, and will have a varying number of characters in between. However, whenever I enter the string "*" into the search field, it responds that it cannot find ""*"". I know I'm missing something, probably simple. I suspect it's looking literally for the * character between two quotes, so how do I fix my query? Thanks. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=331754 ------------------------------ ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ ------------------------------ _______________________________________________ Notepad-plus-plus mailing list Notepad-plus-plus@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus End of Notepad-plus-plus Digest, Vol 30, Issue 8 ************************************************