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: Context   menu
      (SourceForge.net)
   2. [notepad-plus - Help] replace multiple lines (SourceForge.net)
   3. [notepad-plus - Plugin Development] CCompletion   1.05
      (SourceForge.net)
   4. [notepad-plus - Plugin Development] RE: Context   menu
      (SourceForge.net)
   5. [notepad-plus - Open Discussion] Uppercase        keyword in SQL
      syntrax (SourceForge.net)
   6. [notepad-plus - Help] userDefineLang - String (SourceForge.net)
   7. [notepad-plus - Open Discussion] RE:
      關於日文或簡體名稱 (SourceForge.net)
   8. [notepad-plus - Open Discussion] RE: Notepad++    v4.6 and its
      auto-updater (GUP) (SourceForge.net)


----------------------------------------------------------------------

Message: 1
Date: Fri, 23 Nov 2007 08:01:44 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        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=4639227
By: harrybharry

I suppose you can add it as a flag and use the dynamic approach if you were
to use a new type of array

______________________________________________________________________
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: Fri, 23 Nov 2007 08:05:11 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] replace multiple
        lines
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=4639230
By: nobody

Notepad++ is a good program. 
 
The only thing why I don't use it till yet is that Homesite has the replace
multiple lines options.
 
Is there a possibility this option will be there in a future release? 
 
Tnx 

______________________________________________________________________
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: Fri, 23 Nov 2007 09:33:15 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development]
        CCompletion     1.05
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=4639329
By: nobody

Just uploaded new version of the plugin, 1.05.

1. Added optional automatic deletition of the temporary "ctags.tmp" files.
2. Added some experimental snippet functionality. It is included only as an
extra, not something that will be heavily built upon.

Link:
http://freeweb.siol.net/rmihor/NppCCompletionPlugin.zip

Regards,
Bostjan

______________________________________________________________________
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: Thu, 22 Nov 2007 22:53:36 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        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=4638554
By: zobo

Hi Don.

The 'task' here is to give a plugin developer an option to add items to the
Notepad++ context menu. (Currently I'm assuming there is only one Notepad++
context menu, the one that pops up in the editor and is controlled
by contextMenu.xml).

Several possibilities come to mind:

1. It is reasonable to say, that only items that are defined in a plugins main
manu (FuncList) can be added to the context menu.
1. a. Make a system that makes is possible to predict a FuncItem's ID (like
plugin name + internal ID). This would enable the programmer to give specific
instructions to the end-user how to add certain elements to the context menu.
I think this is interesting in the way that anybody can add anything to to the
context menu, but this is not what I'm looking for. I wish to be able to do
the "hard work" for the user in the code.
1. b. Notepad++ could handle two new message. NPPM_ADDCONTEXTITEM
and NPPM_REMOVECONTEXTITEM. Both would take the DlgID  parameter that is 
returned
by FuncItems from Notepad++. It would be the responsibility of Notepad++ to
check whether this items are enabled/disabled/grayed at the time of rendering
the context menu. A menu separator can also be added like this.
1. c. One perhaps simpler solution would be to extend FuncItems structure and
add a flag to it 'include this item in the context menu'. As this is simple,
it can easily brake binary compatibility if we just change the FuncItem 
structure.
Perhaps a clever work around could be used, like using one bit from the 
'checked'
element. But this does not give the developer a choice in what order the items
will be added to the context menu.

2. A completely different approach would be to somehow give the plugin developer
access to context menu's MenuHandle. This would then enable him to do whatever
he wants. I cannot however imagine how one would handle the menu then. And if
I understand the context code (I did not have much time to study it), the 
context
menu is actually not a persistent element, but rather gets spawned whenever
it's needed. (I could be completely wrong here).

Another thought: Do we enforce some sort of separation between menu items from
different plugins? Leave it up to the developers?

Anyway to sum up.
- Make it easy for everybody to add plugin menu items to context menu via
contextMenu.xml (plugin name + id)
- Give the developer a way to add elements from the code.

Best regards,
-Zobo


______________________________________________________________________
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, 23 Nov 2007 04:56:37 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion]
        Uppercase       keyword in SQL syntrax
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=4638980
By: nobody

Hi all.

Is it possible set up kayword as UPPERCASE? 
I would like to use Notepad++ for programming in SQL, and I like show keywords
as uppercase.
Can I setup this functionality for SQL syntax highliting? How? Where?
Thanks for advices...

Nufacik

______________________________________________________________________
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: Fri, 23 Nov 2007 09:53:04 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] userDefineLang -
        String
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=4639356
By: nobody

Hello.

I have a little problem. I need to put in Notepad++ with userDefineLang 
something
like this:

Example 1:
code "string"


Example 2:
code "

Not string

"


I want to delimite with " " to be string only if the begin and end of 
delemitation
is in same line (Example 1), because in Example 2, he identify that is a string,
and i dont want that.


Any way of solving this 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=331754



------------------------------

Message: 7
Date: Fri, 23 Nov 2007 09:54:14 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [notepad-plus - Open Discussion] RE:
        關於日文或簡體名稱
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=4639358
By: donho

Then don't use it.

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: 8
Date: Fri, 23 Nov 2007 10:03:14 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Notepad++       v4.6 and its auto-updater (GUP)
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=4639369
By: donho

oups! Sorry about that.

> Will the updater update an install that was done using the zip? 

No, update can execute a exe or msi file, but it is not so smart to update from
a zip file.


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



------------------------------

-------------------------------------------------------------------------
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
Notepad-plus-plus@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus


End of Notepad-plus-plus Digest, Vol 18, Issue 69
*************************************************

Reply via email to