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: NPPN_FILEOPENED
(SourceForge.net)
2. [notepad-plus - Plugin Development] RE: NPPN_FILEOPENED
(SourceForge.net)
3. [notepad-plus - Plugin Development] RE: NPPN_FILEOPENED
(SourceForge.net)
4. [notepad-plus - Open Discussion] Feature Request (SourceForge.net)
5. [notepad-plus - Plugin Development] RE: Request: Support ANSI
style indent (SourceForge.net)
6. [notepad-plus - Help] RE: ASP Syntax Highlighting Bug
(SourceForge.net)
7. [notepad-plus - Plugin Development] RE: NPPN_FILEOPENED
(SourceForge.net)
8. [notepad-plus - Open Discussion] RE: Desktop Icon
(SourceForge.net)
9. [notepad-plus - Open Discussion] RE: Disable Context Menu
(SourceForge.net)
10. [notepad-plus - Open Discussion] RE: Someone Add Plugin
Descriptions (SourceForge.net)
----------------------------------------------------------------------
Message: 1
Date: Mon, 27 Oct 2008 18:51:56 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
NPPN_FILEOPENED
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=5517707
By: harrybharry
This is not very reliable. NPPN_FILEOPENED sends a BufferID which a plugin
should
transparently use to retrieve information about a file, but not its contents.
For that, use NPPN_DOCACTIVATED as you noticed in another thread. if
DOCACTIVATED
fires, the document should already be loaded and you can sue the scintilla
functions
as you please (Also, NPPM_GETCURRENTLANGTYPE can be replaced with
NPPM_GETBUFFERLANGTYPE using aforementioned BufferID).
______________________________________________________________________
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: Mon, 27 Oct 2008 18:53:36 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
NPPN_FILEOPENED
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=5517726
By: harrybharry
I forgot to add: NPPN_FILEOPENED also triggers if a file is opened in the
background,
is is done when loading sessions for example. This allows for a significant
increase in loading speed but this also means plugins have ot use other means
to retrieve the content of files (they do exist though, and else they can
probably
be added if it makes sense, which it does right now).
______________________________________________________________________
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: Mon, 27 Oct 2008 19:12:53 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
NPPN_FILEOPENED
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=5517866
By: morbac
Thanks alot for your answers :)
Just one other thing: what is the id value for NPPN_DOCACTIVATED ?
I could find the definition of new NPPN_LANGCHANGED ( #define NPPN_LANGCHANGED
(NPPN_FIRST + 11) ), but not for NPPN_DOCACTIVATED. Is NPPN_DOCACTIVATED the
same as NPPN_BUFFERACTIVATED ?
______________________________________________________________________
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, 27 Oct 2008 19:35:37 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Feature
Request
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=5518031
By: geekahertz
I use the "find in files" feature very often. Currently, the default search
directory is the directory containing the opened file. I often have to change
this to an upper level directory.
It would be fantastic if I could set a default directory to search when using
this feature.
Thanks for reading.
______________________________________________________________________
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: Mon, 27 Oct 2008 19:36:09 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
Request: Support ANSI style indent
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=5518037
By: harrybharry
Could you please download the latest DLL form here:
http://npp-plugins.cvs.sourceforge.net/viewvc/npp-plugins/NppPlugins/NppAutoInde
nt/build/
(click on filename, then the download link of the topmost entry)
and see if it resolved your trouble? The were some huge bugs with brace matching
and locating.
______________________________________________________________________
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: Mon, 27 Oct 2008 19:47:09 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: ASP Syntax
Highlighting 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=5518120
By: airdrik
This is likely a bug in the Scintilla editor component (separate project which
handles all of the language syntax highlighting), so you should post the issue
over there.
______________________________________________________________________
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: Mon, 27 Oct 2008 19:47:58 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
NPPN_FILEOPENED
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=5518131
By: harrybharry
I suspect NPPN_DOCACTIVATED never existed, but is merely a 'typo', its actually
NPPN_BUFFERACTIVATED.
The descriptions for NPPN_FILEOPENED and the likes are a bit off, it doesnt
have to be the active file, it can be any file.
If you are unsure how exactly a notification works, you can always try to look
into Notepad_plus.cpp and search for the notification, the code around it might
clarify things a bit (though its not very easy).
______________________________________________________________________
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: 8
Date: Mon, 27 Oct 2008 20:02:23 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Desktop Icon
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=5518240
By: airdrik
I would like to second that motion. I always delete the shortcut once it is
created since there are plenty of more convenient ways to invoke NP++ --
primarily
the context menu.
The icons I have on my desktop all have a particular reason why they are there
-- because I put them there. I have scripts on my desktop for easy access and
execution, I have documents which are there for convenience or for some
temporary
purpose, and I have shortcuts there because they link to documents or programs
which I use frequently which otherwise aren't very accessible.
______________________________________________________________________
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, 27 Oct 2008 20:03:37 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Disable 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=5518249
By: airdrik
That would be in the windows registry. Just search for the string and delete
the keys which contain it.
______________________________________________________________________
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: Mon, 27 Oct 2008 20:06:30 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Someone Add Plugin Descriptions
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=5518267
By: airdrik
You can peruse the NP++ plugins project:
https://sourceforge.net/projects/npp-plugins/
I don't know how much more information you will find there, but there are more
plugins over there.
______________________________________________________________________
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 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
[email protected]
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus
End of Notepad-plus-plus Digest, Vol 29, Issue 55
*************************************************