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 - Open Discussion] RE: Override a   style with a
      User Defined Language (SourceForge.net)
   2. [notepad-plus - Plugin Development] RE: Plugin    Margin,
      Marker, and Indicator Numbers (SourceForge.net)
   3. [notepad-plus - Open Discussion] RE:      MultiClipboard 2.0
      preview 2 (SourceForge.net)
   4. [notepad-plus - Plugin Development] RE: Plugin    Margin,
      Marker, and Indicator Numbers (SourceForge.net)
   5. [notepad-plus - Plugin Development] RE: Plugin    Margin,
      Marker, and Indicator Numbers (SourceForge.net)
   6. [notepad-plus - Open Discussion] RE: Ugly search-results in
      v5.2 (SourceForge.net)
   7. [notepad-plus - Help] n00b: RegEx insert  character a line
      begin. (SourceForge.net)
   8. [notepad-plus - Open Discussion] RE: Ugly search-results in
      v5.2 (SourceForge.net)
   9. [notepad-plus - Open Discussion] RE: Ugly search-results in
      v5.2 (SourceForge.net)
  10. [notepad-plus - Help] insert text begin line ^    regex formed
      badly (SourceForge.net)


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

Message: 1
Date: Tue, 10 Feb 2009 19:34:59 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Override a      style with a User Defined Language
To: nore...@sourceforge.net
Message-ID: <6393727.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=6393727
By: e-fighter

Worked like a charm... Thanks aathell.

______________________________________________________________________
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: 2
Date: Tue, 10 Feb 2009 21:51:48 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        Plugin  Margin, Marker, and Indicator Numbers
To: nore...@sourceforge.net
Message-ID: <6394694.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=6394694
By: harrybharry

Currently, there are no guidelines, so its free for all (with all the bad things
that may happen because of it :'] ). Or like with the shortcuts. Some docs on
it would be a really good idea. The check oyu make is a good idea too, though
a bit cumbersome to implement.
Maybe plugin atuhors can add what they make use of in the wiki in some constants
table (feel free to do so :P)

______________________________________________________________________
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: Wed, 11 Feb 2009 01:08:18 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        MultiClipboard 2.0 preview 2
To: nore...@sourceforge.net
Message-ID: <6395796.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=6395796
By: loonychewy

I just discovered this, and thought it might be useful for some of you:
To show the multiclipboard paste menu via (right click) context menu, add the
following line to %Notepad++Directory%\contextMenu.xml

<Item PluginEntryName="MultiClipboard" pluginCommandItemName="MultiClipboard
Paste"/>

Its not perfect, but its nonetheless not bad (IMHO) for a start :-)


Also, in the interest of this question
http://sourceforge.net/forum/message.php?msg_id=5813733 , could any users out
there using Cyrillic or Hebrew input and MultiClipboard 2 plugin kindly confirm
if the plugin is working fine for you? I'm sure it should be working, but I
still need user confirmations for this. Thank you in advance :-)

______________________________________________________________________
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: Wed, 11 Feb 2009 01:13:46 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        Plugin  Margin, Marker, and Indicator Numbers
To: nore...@sourceforge.net
Message-ID: <6395819.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=6395819
By: donho

> ** So should plugins use Margin 1 and let N++ determine visibility;
> or should they use 3/4? 

It depends. If plugin does the same kind (the same number or not) of marker
and it can make its markers stay harmonically with Notepad++'s ones, then just
use 1. Otherwise use 4 (Number 3 is reserved for Notepad++ internal use), and
it'll be the responsibility of plugin to display it (or not), but not Notepad++.

> From looking at N++ I see that the markers constants are assigned low
numbers.
> If plugins use the current margin 1 then bookmarks would be the one behind
the rest.

Thank you for the alert. Therefore here are the new definitions :

const int MARK_BOOKMARK = 24;
const int MARK_HIDELINESBEGIN = 23;
const int MARK_HIDELINESEND = 22;
// 24 - 16 reserved for Notepad++ internal used
// 15 - 0  are free to use for plugins

The modifications are committed, please check svn for the newest change.

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: 5
Date: Wed, 11 Feb 2009 04:43:43 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        Plugin  Margin, Marker, and Indicator Numbers
To: nore...@sourceforge.net
Message-ID: <6396918.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=6396918
By: aathell

Don,

Excellent, just the type of information I was looking for.  With the internal
markers now having higher numbers it should be much easier to coincide with
them, thank you.

It would be nice to have a user control for margin 4 in the same place as the
Line/Bookmarks margin options instead of disparate plugins trying to decide
if they should show it or not, instead of disparate plugins competing for 
control
over it.

That's neither here nor there for now, as there aren't many ( that I know of
) plugins using the margins, and with the internal ones having a higher number
now the default symbols margin should work good.

Thanks again,
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: 6
Date: Wed, 11 Feb 2009 05:12:41 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Ugly
        search-results in v5.2
To: nore...@sourceforge.net
Message-ID: <6397049.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=6397049
By: yniq

Hi,

Regarding (2) - I probably don't understand your problem exactly. What 
minimization
was removed?

Regarding (4) - when you open the find in files dialog, the "Directory" and
the "Filters" are automatically changed according to the current open file.

I actually was against that, and in my original version these fields were set
only on the first time you launch the dialog, and then they remained constant
until the user (or a plug in) changed them.

For me - the changing "Directory" field is also annoying because my source files
are organized in a few subfolders, and I usually want to search in all the 
source
tree. But once I open the find in files dialog, the "Directory" is changed to
the specific folder my current file is in, and I have to manually change it
again.

I will try to talk to Don about that, and convince him to change the behavior,
or make it optional.


______________________________________________________________________
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: Wed, 11 Feb 2009 07:21:40 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] n00b: RegEx insert
        character a line begin.
To: nore...@sourceforge.net
Message-ID: <6397816.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=6397816
By: ben_bowen

Hi all


I want to insert a token at the beginning of every line. This should be possible
with RegEx search/replace. For example, if I want to insert #, I should be able
to search for '^' and replace it with #. However, when I try that with a 
"Replace
All" I get the error: "The regular expression is formed badly"

However, I can do it one step at time with "Find Next" then "Replace". Just
not Replace All.

This method works in other text editors and is a valid RegEx expression. Does
notepad++ just not handle RegEx that well?

Thanks.

P.S. I have also tried replacing it with "^#", but that doesn't work either.

______________________________________________________________________
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: 8
Date: Wed, 11 Feb 2009 07:41:38 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Ugly
        search-results in v5.2
To: nore...@sourceforge.net
Message-ID: <6397988.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=6397988
By: stormtroopa

great, somebody eventually understands me :-)

sorry, I wasn't unclear about (2). I meant the collapse-feature. If I got 
several
results in different files, I might want to exclude results of a file, so I
collapse them with that "-" symbol. Seems that feature is unfortunately gone :(

______________________________________________________________________
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: Wed, 11 Feb 2009 08:06:00 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Ugly
        search-results in v5.2
To: nore...@sourceforge.net
Message-ID: <6398124.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=6398124
By: yniq

You should be able to do that.

See how it should look like:

http://www.mediafire.com/file/zt3mmnjy24z/search_result.PNG

Maybe there's still a problem with your stylers.xml file?

Anyway, removing search results can now be done by deleting them (not only
collapsing). You can do that by clicking on a result (or a green file header,
or a purple search header), and hitting the DELETE key.

Please keep me updated if it's not working, 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=331753



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

Message: 10
Date: Wed, 11 Feb 2009 08:23:22 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] insert text begin
        line ^  regex formed badly
To: nore...@sourceforge.net
Message-ID: <6398249.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=6398249
By: fool4uanyway

http://sourceforge.net/search/index.php?words=%28%2Bregular+%2Bexpression+%2Bfor
med+%2Bbadly%29&sort=posted_date&sortdir=desc&offset=0&group_id=95717&type_of_se
arch=forums&pmode=0


______________________________________________________________________
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



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

------------------------------------------------------------------------------
Create and Deploy Rich Internet Apps outside the browser with Adobe(R)AIR(TM)
software. With Adobe AIR, Ajax developers can use existing skills and code to
build responsive, highly engaging applications that combine the power of local
resources and data with the reach of the web. Download the Adobe AIR SDK and
Ajax docs to start building applications today-http://p.sf.net/sfu/adobe-com

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

_______________________________________________
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 28
*************************************************

Reply via email to