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 - Help] Any way to display long lines
correctly? (SourceForge.net)
2. [notepad-plus - Plugin Development] RE:
NPPM_GETCURRENTSCINTILLA - Delphi (SourceForge.net)
3. [notepad-plus - Open Discussion] RE: Debugging perl
(SourceForge.net)
4. [notepad-plus - Plugin Development] RE: Possible RC for
Explorer 1.5.1 (SourceForge.net)
5. [notepad-plus - Plugin Development] Plugin dev. environment
setup (in V.Studio) (SourceForge.net)
6. [notepad-plus - Open Discussion] RE: Suggestion: Add "Unset"
in style conf dialog (SourceForge.net)
7. [notepad-plus - Open Discussion] RE: how reopen left panel
with folders tree ? (SourceForge.net)
8. [notepad-plus - Plugin Development] RE: Possible RC for
Explorer 1.5.1 (SourceForge.net)
9. [notepad-plus - Help] RE: Selective deleting (SourceForge.net)
10. [notepad-plus - Plugin Development] RE: Possible RC for
Explorer 1.5.1 (SourceForge.net)
11. [notepad-plus - Plugin Development] RE: Plugin dev.
environment setup (in V.Studi (SourceForge.net)
12. [notepad-plus - Plugin Development] FTP (SourceForge.net)
13. [notepad-plus - Open Discussion] RE: Automatically display
the IE source as HT (SourceForge.net)
----------------------------------------------------------------------
Message: 1
Date: Thu, 30 Aug 2007 16:20:41 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Any way to display
long lines correctly?
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=4493958
By: nobody
I read somewhere that the line length limit on Notepad++ is to improve
performance...
But I have a file with really long line lengths, that I don't want to wrap.
Unfortunately Notepad++ only displays about half the line before I can't scroll
sideways anymore.
Is there a setting, or anything I can do so that I can temporarily increase
the line limit to something larger?
______________________________________________________________________
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: 2
Date: Fri, 31 Aug 2007 02:11:12 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
NPPM_GETCURRENTSCINTILLA - Delphi
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=4494380
By: nobody
Hi,
this is not possible. But you can create a hidden scintilla in your plugin.
Here you can access change the content and do what ever you want.
HWND hSciBuffer = NULL;
HWND g_hSource =nppData.MainHandle;
void copyBuffer()
{
char* buffer = NULL;
UINT length = 0;
if (hSciBuffer == NULL)
{
/* create own parser buffer */
hSciBuffer = (HWND)::SendMessage(nppData._nppHandle,
WM_CREATESCINTILLAHANDLE,
0, (LPARAM)hwnd);
}
/* get text of current scintilla and copy to buffer to hidden scintilla
*/
length = ::SendMessage(g_hSource, SCI_GETTEXTLENGTH, 0, 0)+1;
buffer = (char*)new char[length];
::SendMessage(g_hSource, SCI_GETTEXT, length, (LPARAM)buffer);
/* remove old content with a little UNDO and add the text */
::SendMessage(hSciBuffer, SCI_UNDO, 0, 0);
::SendMessage(hSciBuffer, SCI_ADDTEXT, length, (LPARAM)buffer);
delete [] buffer;
}
Best Regards
Jens
______________________________________________________________________
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: Fri, 31 Aug 2007 04:24:13 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Debugging perl
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=4494542
By: donho
> It would be nice if a link to it could be put on the main Notepad++ site
(*hint*)...
Sure. I'll publish DBGP sourceforge link (npp-plugins) in Notepad++ download
section this weekend.
Don
______________________________________________________________________
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: Fri, 31 Aug 2007 05:57:40 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
Possible RC for Explorer 1.5.1
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=4494679
By: nobody
Excellent Jens, Favorite Folder icons now draw first time with new DLL! Well
done and thanks!
Can I ask if Favorite Files are supposed to be underlined when opened?
DOS Prompt a neat addition.
Mark B
______________________________________________________________________
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: Fri, 31 Aug 2007 06:38:55 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development]
Plugin dev. environment setup (in V.Studio)
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=4494742
By: hjoshi
Hi,
I've written a guide on how to setup Visual studio C++ 2005 Express
+ platform SDK (+ some other bits) to allow plug-in development
'out of the box'
I couldn't find a guide like this anywhere, so spent some time writing one.
I have two queries..
- Would anyone find it useful ? Trying to gauge the level of interest ..
- It's in PDF format, where can be send to.. I'm new this Sourceforge thing
so a bit lost. I couldn't locate any email on the notepad++ homepage either.
Thanks,
Josh
______________________________________________________________________
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: 6
Date: Fri, 31 Aug 2007 06:42:05 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Suggestion: Add "Unset" in style conf dialog
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=4494750
By: nobody
Agree fully! This annoys everyone who uses the non-white system window color
______________________________________________________________________
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: Fri, 31 Aug 2007 06:51:59 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: how
reopen left panel with folders tree ?
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=4494767
By: callet1
J'ai compris : c'est un plug-in
donc: menu plug-in/light explorer
______________________________________________________________________
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: Fri, 31 Aug 2007 06:56:46 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
Possible RC for Explorer 1.5.1
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=4494778
By: nobody
Suggestion:
Would it be possible to include the "File menu Recent Files list" in the
Favorites
list as a separate Group? I know this list would be dynamic but you have this
array of file names already there.
Thanks for considering.
Mark B
______________________________________________________________________
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: 9
Date: Fri, 31 Aug 2007 07:16:55 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Selective
deleting
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=4494808
By: nobody
In using the selective deleting feature, I found one anomaly,
maybe. It does work very nicely for deleting a full column.
If I delete (say) the whole second column.....
it will move any columns that are to the right of that
column, over to the left, to fill that space.
Now, that's good, and useful, and I surely want it that way.
But if I delete only PART of a column, it doesn't
just leave blank the space I deleted..... it moves
the data that was to the right, over to the left to fill that
blank space. That makes the new column have some good data,
what I didn't delete from that column, and bad data in the
space I created.... data not applicable to that column at all.
It's just the way it is, and I can live with it and try not to
forget it....but is there an alternative?
______________________________________________________________________
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: 10
Date: Fri, 31 Aug 2007 07:34:55 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
Possible RC for Explorer 1.5.1
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=4494831
By: nobody
Hi,
What do you mean with "File menu Recent Files list"? Do you ask for current
opened files in Notepad? For fast selecting? Or an automatic generated
"Favorites"
(Often used)?
Best Regards
Jens
______________________________________________________________________
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: 11
Date: Fri, 31 Aug 2007 07:54:07 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
Plugin dev. environment setup (in V.Studi
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=4494865
By: hjoshi
Hi Jens,
Thanks for the prompt reply. I've sent it to Don just then
Cheers,
Josh
______________________________________________________________________
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: Fri, 31 Aug 2007 08:26:18 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] FTP
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=4495033
By: nobody
We need a FTP Plugin! It's serious.
______________________________________________________________________
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: 13
Date: Fri, 31 Aug 2007 08:50:48 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Automatically display the IE source as HT
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=4495085
By: flashmagnum
Well I have resolve it.
You need to create a *.reg file, with the following lines, or something
similar:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\View Source
Editor\Editor
Name]
@="C:\\Programs\\Notepad++\\nppIExplorerShell.exe"
And you need to get nppIExplorerShell.exe and put it in your Notepad++
directory.
______________________________________________________________________
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: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
------------------------------
_______________________________________________
Notepad-plus-plus mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus
End of Notepad-plus-plus Digest, Vol 15, Issue 81
*************************************************