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
        notepad-plus-plus-requ...@lists.sourceforge.net

You can reach the person managing the list at
        notepad-plus-plus-ow...@lists.sourceforge.net

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] Register a    plugin without
      using a menu space? (SourceForge.net)
   2. [notepad-plus - Open Discussion] block comment    behaviour
      (SourceForge.net)
   3. [notepad-plus - Plugin Development] RE:   Register a plugin
      without using a menu space? (SourceForge.net)
   4. [notepad-plus - Plugin Development] RE:   Modification Marker
      Margin (SourceForge.net)
   5. [notepad-plus - Help] auto-indent in      user-defined language ?
      (SourceForge.net)
   6. [notepad-plus - Help] Found a file which makes    notepad++
      stuck. (SourceForge.net)
   7. [notepad-plus - Open Discussion] Documentation    Review
      (SourceForge.net)
   8. [notepad-plus - Help] RE: Found a file which      makes notepad++
      stuck. (SourceForge.net)
   9. [notepad-plus - Open Discussion] RE: Missing      some features
      from EditPlus (SourceForge.net)
  10. [notepad-plus - Open Discussion] RE:      Documentation Review
      (SourceForge.net)


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

Message: 1
Date: Sat, 28 Feb 2009 00:30:16 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development]
        Register a      plugin without using a menu space?
To: nore...@sourceforge.net
Message-ID: <6556662.482...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6556662
By: aathell

Can a plugin be registered with N++ without having a Plugins menu item?

I have a plugin helper plugin to help other plugins check on marker availability
that uses N++'s communicationinfo; should it show up in the plugin menu?  lol,
maybe Plugin Helper Plugin.

almostautomated

______________________________________________________________________
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: Sat, 28 Feb 2009 02:53:40 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] block
        comment behaviour
To: nore...@sourceforge.net
Message-ID: <6557709.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6557709
By: zodcode

Block commenting tends to screw up already commented lines.

spam = 0
#blah ooh blah
eggs = '0 0'

==> Ctrl+Q:

# spam = 0
blah ooh blah
# eggs = '0 0'

Perhaps didn't look close enough but haven't seen this mentioned, though it
is a major mischief.

May I suggest putting a special character after the comment char(s) to make
it distinguishable for the toggle functionality (as in SciTE):

#~ spam = 0
#~ #blah ooh blah
#~ eggs = '0 0'


Cheers,
Andras
 

______________________________________________________________________
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: Sat, 28 Feb 2009 01:42:25 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        Register a plugin without using a menu space?
To: nore...@sourceforge.net
Message-ID: <6557214.482...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6557214
By: donho

In the current implementation, you have to set at least one menu item in order
to be loaded.
An about box is a fair way to show to users the existence of your plugin.

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=482781



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

Message: 4
Date: Sat, 28 Feb 2009 03:28:02 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        Modification Marker Margin
To: nore...@sourceforge.net
Message-ID: <6557947.482...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6557947
By: aathell

Line Change markers...

It's the one I started working on prior to finding out you where working on
an implementation...

Line Change: Saved
Line Change: Not Saved

Both values read into N++ via a GUIConfig node in the plugins xml to show in
the global params, and the plugin menu items for:

Jump: Prev Change
Jump: Next Change
----
Display: With Line Number    // These four are checkmark items when none
Display: With Bookmarks      // are checked the changes are still tracked but
Display: In plugin margin      // this is no indicator until the user wants
them.
Display: As line highlight
----
Disable Change Tracking      // Clears the change history and doesn't process
modification notifications.
                                      // it also disables the other six menu
items.

I've had to side track this plugin to create the plugin to check for available
markers, which caused me to create a Plugin Interface Library (which is almost
ready for posting a release announcement).

almostautomated

______________________________________________________________________
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: Sat, 28 Feb 2009 05:32:26 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] auto-indent in
        user-defined language ?
To: nore...@sourceforge.net
Message-ID: <6558854.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6558854
By: dotscience

Hi,

I create a simple user-defined language : call it "myFoldingLanguage"

I define open and close tags for folding

I verify that I can use myFoldingLanguage and that folding operation work as
expected.

Question :

Let's say I have a file that I have added the open and close tags to and I wish
to open the file in N++ with myFoldingLanguage set as the language style :

I want the content of the file to be auto-indented dependent on the "mark-up"
I've added without going through the file by hand and tabbing content.

Can do ?

thanks, Bill

______________________________________________________________________
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: Sat, 28 Feb 2009 12:15:04 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Found a file which
        makes   notepad++ stuck.
To: nore...@sourceforge.net
Message-ID: <6562248.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6562248
By: roidayan

This file http://uploadbox.com/files/ea3d063d42
If I try to load it with notepad++ it stuck and I need to kill the process.
I'm using version v5.2
Normal windows notepad can open the file without any problems.



______________________________________________________________________
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: Sat, 28 Feb 2009 12:37:14 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion]
        Documentation   Review
To: nore...@sourceforge.net
Message-ID: <6562419.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6562419
By: gr3gw

I have started work reviewing the Notepad++ documentation in all its forms.

I'm interested to know if there is a group that looks at documentation. If so,
who are you and where do you discuss issues?

Also, is there anyone who'd like to be involved in documentation?

I am NOT doing this because I think the documentation but,  I do think there
is room for improvement.

Please let me know who is working on documentation or if you'd like to
be involved.

______________________________________________________________________
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: Sat, 28 Feb 2009 12:42:26 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Found a file
        which   makes notepad++ stuck.
To: nore...@sourceforge.net
Message-ID: <6562460.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6562460
By: vikash4india

This file is working correctly. Notepad++ opens this file.
See snapshot here
http://uploadbox.com/files/d2ba080628

______________________________________________________________________
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: 9
Date: Sat, 28 Feb 2009 13:48:24 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Missing some features from EditPlus
To: nore...@sourceforge.net
Message-ID: <6563049.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6563049
By: zodcode

There is Ctrl+D for line duplication.
You could set it to Ctrl+J with Settings/Shortcut Mapper.

greets

______________________________________________________________________
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: Sat, 28 Feb 2009 14:05:41 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Documentation Review
To: nore...@sourceforge.net
Message-ID: <6563228.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=6563228
By: dv__

As far as I know, all the documentation is created personally by developers,
so they (developers) do it instead of or together with writing source code.
Correct me, if I'm wrong.

P.S.
I you could convert NppExec's documentation from .knt (KeyNote) format to .chm,
I would appreciate 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



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

------------------------------------------------------------------------------
Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
-OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
-Strategies to boost innovation and cut costs with open source participation
-Receive a $600 discount off the registration fee with the source code: SFAD
http://p.sf.net/sfu/XcvMzF8H

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

_______________________________________________
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 33, Issue 59
*************************************************

Reply via email to