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. Minor bug (Tony Bruguier)
2. [notepad-plus - Open Discussion] RE: Compare Plugin 1.5
released (SourceForge.net)
3. [notepad-plus - Plugin Development] RE: How do I send a
Scintilla message? (SourceForge.net)
4. [notepad-plus - Help] RE: Finding several New Lines with
RegExp (SourceForge.net)
5. [notepad-plus - Help] RE: how to define function list for
this? (SourceForge.net)
6. [notepad-plus - Open Discussion] replacing notepad with
notepad++ (SourceForge.net)
7. [notepad-plus - Open Discussion] RE: replacing notepad with
notepad++ (SourceForge.net)
8. [notepad-plus - Open Discussion] RE: Unusually Long Startup
Time. Why? (SourceForge.net)
9. [notepad-plus - Open Discussion] Request: Filename from row 1
when you save (SourceForge.net)
10. [notepad-plus - Help] user defined language (SourceForge.net)
11. [notepad-plus - Plugin Development] RE: New plugin: Window
Manager (SourceForge.net)
12. [notepad-plus - Open Discussion] RE: Unusually Long Startup
Time. Why? (SourceForge.net)
----------------------------------------------------------------------
Message: 1
Date: Mon, 10 Dec 2007 16:38:36 -0800
From: "Tony Bruguier" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] Minor bug
To: [email protected]
Message-ID:
<[EMAIL PROTECTED]>
Content-Type: text/plain; charset="iso-2022-jp"
Hello,
When I do a 'replace' (from the search/replace dialog box) on a read-only
file, I get the message "0 occurrences replaced."
This is a bit misleading because the work I was searching for is inside the
file, it's just that I cannot change the file. Maybe a different behavior
would be good:
1) If the word is not found, say "word not found"
2) ?? ??? ???? ?? ????? ??? ??? ???? ?? ?????????????? ??? ????? ????? ???
????? ??? ??????? ?? ??????? ???? ?? ???????????
Thanks for all the good work. Tony
--
http://www.bruguier.com
-------------- next part --------------
An HTML attachment was scrubbed...
------------------------------
Message: 2
Date: Mon, 10 Dec 2007 17:39:19 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Compare Plugin 1.5 released
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=4669132
By: helling
Thanks for the new version! I haven't tried much yet but already I like how
it will compare the two files you have open instead of having to do the "other
view" thing.
______________________________________________________________________
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: 3
Date: Mon, 10 Dec 2007 17:50:04 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
How do I send a Scintilla message?
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=4669142
By: fidvo
Take a look at the source for the SimpleScript plugin. It's based off of a
template that Zobo (the author of DBGP) sent me. You'll need everything in
the \lib subfolder, which I recommend you copy directly into your own project
without changes. That's what I did. It looks like it's all the same as in
the DBGP plugin. It's licensed under the GPL, so if you intend to distribute
your plugin you'll also need to license it under the GPL.
You can ignore MergeTextLib, scriptprogress, ScriptWriter, and
textscriptfunctions
units; they're specific to the SimpleScript plugin.
The actual interface between Notepad++ and the plugin is all handled in the
simplescriptplugin.pas file. Hopefully it's not too complex to figure out.
Specifically, look at the TSimpleScriptPlugin.FuncRepeatScript procedure. This
is the only place in the plugin where messages are sent to Notepad++. To help
you decipher it, basically, this function reads in the selected text from the
active document (or the full document if no text is selected), sends it to
another
function to convert it, and replaces either the selection or the full document.
The actual code to send the message is something like the following:
SendMessage(self.NppData.ScintillaMainHandle, SCI_SETTEXT, 0,
LPARAM(PChar(Selected)));
(The above replaces the entire text of the document with the string variable
Selected. You'll need to look up the message that inserts text instead)
Any text you send must be converted into a PChar first because the Windows
messaging
system can't handle Delphi strings. You also need to wrap it in LPARAM. I
don't know why; that's just the way it was in the template, so I wasn't going
to second-guess it.
Let me know if you need any more help.
______________________________________________________________________
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: Mon, 10 Dec 2007 19:06:09 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Finding several
New Lines with RegExp
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=4669197
By: pshute
> What I had to do today was to remove many newlines which were actually in
the middle of lines (lines end with carriage-return + newline)
Another tool we have for working with these is Format/Convert to Unix or Windows
or Mac. This converts CR/LF pairs to/from CR or LF singles, etc. I suspect
in your case it might make things worse, as you won't know where the real ends
of lines are anymore.
Also, I've been using the term "newline" to mean whatever kind of end-of-line
character or characters the current format uses. I would have used to word
"linefeed" where you use "newline" above, as that's the name of that ASCII
character.
Am I wrong? I guess with Unix a linefeed is a newline, but not in other
formats.
______________________________________________________________________
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: 5
Date: Mon, 10 Dec 2007 19:36:14 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: how to define
function list for this?
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=4669223
By: nobody
anyone can help?
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: 6
Date: Mon, 10 Dec 2007 21:11:36 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion]
replacing notepad with notepad++
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=4669268
By: kdd6
i have reviewed the process to make the replacement in windows, but the
servicepacks
folder does not exist as does not the system 32/dll cache folder in win xp pro.
so how do i make the swap?
______________________________________________________________________
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: 7
Date: Mon, 10 Dec 2007 23:14:52 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
replacing notepad with notepad++
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=4669344
By: nobody
There are already discussion on that in here:
http://sourceforge.net/forum/message.php?msg_id=4591847
http://sourceforge.net/forum/message.php?msg_id=4641563
Read the thread till the end, there is an tool who replace ms-notepad.exe.
Good luck.
Cheers.
______________________________________________________________________
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: 8
Date: Mon, 10 Dec 2007 23:54:32 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Unusually Long Startup Time. Why?
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=4669373
By: nobody
Hi,
i have the same issue, but i have many plugins and think that?s the reason
why.
______________________________________________________________________
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: 9
Date: Mon, 10 Dec 2007 23:59:49 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Request:
Filename from row 1 when you save
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=4669378
By: jarven
When you save your file it will be labeled like "New 3" and you will change
it to something better.
Nice feature if first row in your file automatically would be the preferred
filename.
For expample:
#1 John smith todo
#2 ---------------
#3
#4 - Goto work
#5 - Have some fun
#6 - Dinner with wife
When you SAVE "John smith todo" is already displayed as your filename instead
of "New 3".
______________________________________________________________________
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: 10
Date: Tue, 11 Dec 2007 01:49:27 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] user defined
language
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=4669504
By: nobody
Hi there.
I have tryed to create a new user defined lanugage following the online help
but I really dont get this. I have, just to test, downloaded one of the
existing
user defined languages online and when opening them in Notepad+ it shows the
XML file (as i expect) but nothiung more. How do I get into the editor for
user defined language? I have searched all menus but cant find anything.
Regards
Ole
______________________________________________________________________
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: 11
Date: Tue, 11 Dec 2007 02:22:49 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
New plugin: Window Manager
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=4669549
By: dv__
Jens, did you notice the plugin doesn't work under MustDie9x?
______________________________________________________________________
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: 12
Date: Tue, 11 Dec 2007 02:32:42 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Unusually Long Startup Time. Why?
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=4669561
By: dv__
Try to remove plugins, one by one, to understand which plugin or plugins causes
the start-up delay.
______________________________________________________________________
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
------------------------------
-------------------------------------------------------------------------
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
------------------------------
_______________________________________________
Notepad-plus-plus mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus
End of Notepad-plus-plus Digest, Vol 19, Issue 25
*************************************************