Send Notepad-plus-plus mailing list submissions to
[email protected]
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: working on new plugin
(line filter) (SourceForge.net)
2. [notepad-plus - Help] user defined langauge (SourceForge.net)
3. [notepad-plus - Open Discussion] run dialog not support space
in path (SourceForge.net)
4. [notepad-plus - Open Discussion] RE: Compare plugin
(SourceForge.net)
5. [notepad-plus - Open Discussion] RE: File Associations
context menu (SourceForge.net)
6. [notepad-plus - Plugin Development] RE: A stupid question by
a newbie (help, plea (SourceForge.net)
7. [notepad-plus - Open Discussion] Select lines marked
(SourceForge.net)
----------------------------------------------------------------------
Message: 1
Date: Tue, 18 Sep 2007 02:27:57 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
working on new plugin (line filter)
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=4524235
By: nobody
and if you would like me to test your plugin, you can send it to:
[EMAIL PROTECTED]
______________________________________________________________________
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, 18 Sep 2007 02:41:16 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] user defined
langauge
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=4524247
By: nobody
hi there,
i am trying to create a user defined language file for npp..
i am able to do it but my problem is the following...
my keywords and block words etc are not only one word keywords.. some is a few
words that starts a block and end the block and i also want to highlight the
text before and after a keyword...not only the keyword.'
ie
i have the following in my file as example
Code block start text : some text
123/alpha test description
123/beta test1 description
123/omega test3 description
Some sentence that ends the block : some text
I want to specify that "Code block start text" must be used as a sentence and
not just the various words as my code block start and the same for the code
block end text "Some sentence that ends the block".
Then i want to specify "test", "test1", "test3" as my keywords but want npp
to hightlight all the text before and after the keyword on the same line....
Is this possible in anyway?
Regards
______________________________________________________________________
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: 3
Date: Tue, 18 Sep 2007 04:19:21 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] run
dialog not support space in path
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=4524361
By: pjkaus
Currently the run dialog does not support paths with spaces in them. It you
use quotes to protect a path including spaces Command:extractArgs still
separates
command from arguments based on the first space found. this makes it impossible
to use an explicit path to run any program installed in "Program Files".
As I do frequently want to use an explicit path I have added the code to honour
quotes. Seem to work ok. appended is the first few line of the modified
extractArgs:
void Command::extractArgs(char *cmd2Exec, char *args, const char *cmdEntier)
{
int i = 0;
bool quoted = FALSE;
for ( ; i < int(strlen(cmdEntier)) ; i++)
{
if ((cmdEntier[i] == ' ')&&(quoted==FALSE))
break;
if (cmdEntier[i]=='"')
quoted = !quoted;
cmd2Exec[i] = cmdEntier[i];
}
cmd2Exec[i] = '\0';
______________________________________________________________________
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=331753
------------------------------
Message: 4
Date: Tue, 18 Sep 2007 05:45:23 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Compare plugin
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=4524493
By: nobody
Hmmm... I am having a hard time getting the compare to work. It would be a
wonderful tool to have in NP++ but I can't seem to get it to work. I thought
the post about how to show a document in another panel would help get this to
work but it still doesn't. I am wondering if my Windows Vista has something
to do with this. I don't think that it should, but I don't know. Does anyone
have any suggestions for this?
______________________________________________________________________
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=331753
------------------------------
Message: 5
Date: Tue, 18 Sep 2007 06:06:20 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: File
Associations context menu
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=4524526
By: nobody
What he's saying is: after associating N++ with a bat file they no longer run
in Windows. All bat files are opened in N++ as text instead.
I tried removing the association and even uninstalling N++, but .bat files are
still not running.
Please fix this serious problem.
______________________________________________________________________
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=331753
------------------------------
Message: 6
Date: Tue, 18 Sep 2007 08:29:23 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE: A
stupid question by a newbie (help, plea
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=4524757
By: nobody
Thank you, Harry.
But... in what file is the definition #define WM_DOOPEN (SCINTILLA_USER + 8) ?
Did you define it in your source file?
(In this case, how did you guess the "+8"?)
Or did you find it in a ".h" file you downloaded?
I looked in all the .h files downloaded from
http://npp-plugins.cvs.sourceforge.net/npp-plugins/NppPlugins/ and did not find
"WM_DOOPEN".
GGa
______________________________________________________________________
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: 7
Date: Tue, 18 Sep 2007 08:32:03 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Select
lines marked
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=4524759
By: nobody
hello,
I don't find the way to automaticly select all the lines marked to copy and
paste these lines.
I think there is a solution !
thanks
chris
______________________________________________________________________
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=331753
------------------------------
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
------------------------------
_______________________________________________
Notepad-plus-plus mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus
End of Notepad-plus-plus Digest, Vol 16, Issue 47
*************************************************