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] RE: How to    use color
      picker? (SourceForge.net)
   2. [notepad-plus - Open Discussion] RE: Does N++     Support REGEX
      With Multiple Lines? (SourceForge.net)
   3. [notepad-plus - Open Discussion] Regex regular    expression
      multiple lines trick (SourceForge.net)
   4. [notepad-plus - Open Discussion] RE: Regex        regular expression
      multiple lines trick (SourceForge.net)
   5. [notepad-plus - Help] RE: Find and replace (SourceForge.net)
   6. [notepad-plus - Open Discussion] RE: No   automatic updates
      since v5.0.3 (SourceForge.net)
   7. [notepad-plus - Open Discussion] RE: No   automatic updates
      since v5.0.3 (SourceForge.net)
   8. [notepad-plus - Help] Macro Help (SourceForge.net)


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

Message: 1
Date: Sat, 14 Feb 2009 17:28:10 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        How to  use color picker?
To: nore...@sourceforge.net
Message-ID: <6425823.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=6425823
By: shamuntoha

In this case how can i pick a color patterns? 

/* sub header box */
#top {
        height:500px;

        border-top:solid 1px #F00;
        border-bottom:5px solid #C30;
        background-image:url(../images/shamun03.jpg);
        background-color:#300;
        
        filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70); 
        opacity: .70;
        -moz-opacity: .70;
}

______________________________________________________________________
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, 14 Feb 2009 17:31:17 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Does
        N++     Support REGEX With Multiple Lines?
To: nore...@sourceforge.net
Message-ID: <6425835.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=6425835
By: speedy1701

Thanks Fool4UAnyway.

Unfortunately, that does seem to work for me.

1. ^/\*[^/*]*[^*/][^/]$

   Ends up finding the " /* "

   It doesn't

2. ^/\* *\*/*[^/][^/]$

   Finds nothing at all.

I did manage to find a tedious way of doing this ... kinda going along your
first suggestion.

a. Remove all line breaks with a dummy word 'dummy' [using extended search]
    I now have a single line of text
b. Replace "*/" with  "*/" + linebreak [using extended search]
   So now each occurrence of /* */ displays on one line 
c. Use regex to get rid of /*... */
d. replace 'dummy' with line breaks [using extended search]

Though I was hoping to find a less tedious, convoluted solution like yours!!!
:-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=331753



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

Message: 3
Date: Sat, 14 Feb 2009 21:24:51 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Regex
        regular expression multiple lines trick
To: nore...@sourceforge.net
Message-ID: <6427032.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=6427032
By: fool4uanyway

> 1. ^/\*[^/*]*[^*/][^/]$

> Ends up finding the " /* "

> It doesn't
 
What do you mean to say? Is the last line (a) complete(d) (sentence)?

Of course, if it (does or) does not find the match correctly, you can try to
reduce the regex to figure out what might be causing the mismatch. (I assume
you didn't include the space character added to each line of messages on these
forums.)

I tried it again.
It works for me.
Do you have any white space preceding your comment blocks?
My regex doesn't take those into account, but it would be hard to do:

^[ \t]*/\*.....

Did you (un)check all options in the Ctrl+R Advanced Find/Replace Dialog (not
the standard Ctrl+F/H dialog!).

> 2. ^/\* *\*/*[^/][^/]$
 
> Finds nothing at all.

It should find comment blocks turned into single lines. If step 1 didn't work,
it's not strange that step 2 won't work either.

^/\* +\*/*[^/][^/]$ might be a better regex, because I added the additional
space character to the /* comment block start anyway.

If you keep difficulties getting this to work, perhaps you could post an example
of your comment block(s). Feel free to replace any words you don't want to be
public.


______________________________________________________________________
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: Sat, 14 Feb 2009 21:29:12 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Regex   regular expression multiple lines trick
To: nore...@sourceforge.net
Message-ID: <6427085.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=6427085
By: fool4uanyway

> Check the Recurse Repl checkbox.

This is an essential part of the magic!
This option is not in the standard Ctrl+F/H Find/Replace dialog box.

Your "dummy" solution is better than what I had in mind, because it's cycle
once only process. I had in mind doing that iteratively with _only_ the comment
block lines. The number of cycles would depend on the maximum number of lines
of the comment blocks... That explains the "Fool" part of my name, I guess.

If you can't get it to work, perhaps you could describe in some more detail
what trying the above _does_ do and results in.


______________________________________________________________________
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: Sat, 14 Feb 2009 22:20:08 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Find and
        replace
To: nore...@sourceforge.net
Message-ID: <6427368.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=6427368
By: jaloola

Sorry that no one has helped you yet, but maybe this will shed you some
light...

Windows Error Reporting .wer files are dumps of the memory of when the program
crashed and/or parts of the file itself...

Anyways, if you open many files, especially .exe files, you'll find that you'll
get many NUL characters, it's what is displayed whenever Notepad++ doesn't 
recognize
the character...

Hope this gives you a idea...

Allen Zhu
allen.jalo...@gmail.com

______________________________________________________________________
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, 14 Feb 2009 23:28:19 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: No
        automatic updates since v5.0.3
To: nore...@sourceforge.net
Message-ID: <6427753.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=6427753
By: jaloola

Don has not been pushing updates through the client updater for sometime since
5.0.3 since that's the latest most "throughly tested" version...

If you want the latest version, keep monitoring the forums for release
announcements...

The latest right now is 5.2, and you can download that a notepad-plus.sf.net.

Allen Zhu
allen.jalo...@gmail.com

______________________________________________________________________
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: Sun, 15 Feb 2009 01:41:52 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: No
        automatic updates since v5.0.3
To: nore...@sourceforge.net
Message-ID: <6428447.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=6428447
By: beninphx

Thanks Allen.  I was wondering if the updater was setup to only send thru 
'stable'
releases ... guess so.  Based on the feedback here, 5.2 seems pretty stable.
I'll try it out, 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: 8
Date: Sun, 15 Feb 2009 07:16:43 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Macro Help
To: nore...@sourceforge.net
Message-ID: <6430045.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=6430045
By: tristan_wolf

I'm trying to create a macro which will insert the following text as the mouse
pointer:

0x0{tab}
0x1{tab}
0x2{tab}
0x3{tab}
0x4{tab}
0x5{tab}
0x6{tab}
0x7{tab}
0x8{tab}
0x9{tab}

Where the text {tab} is actually the tab character.

This is my macro:

        <Macro name="SeqNumber" Ctrl="no" Alt="no" Shift="no" Key="0">
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="0" />
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="x" />
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="0" />
            <Action type="0" message="2327" wParam="0" lParam="0" sParam="" />
            <Action type="1" message="2170" wParam="0" lParam="0" 
sParam="&#x0D;"
/>
            <Action type="1" message="2170" wParam="0" lParam="0" 
sParam="&#x0A;"
/>
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="0" />
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="x" />
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="1" />
            <Action type="0" message="2327" wParam="0" lParam="0" sParam="" />
            <Action type="1" message="2170" wParam="0" lParam="0" 
sParam="&#x0D;"
/>
            <Action type="1" message="2170" wParam="0" lParam="0" 
sParam="&#x0A;"
/>
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="0" />
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="x" />
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="2" />
            <Action type="0" message="2327" wParam="0" lParam="0" sParam="" />
            <Action type="1" message="2170" wParam="0" lParam="0" 
sParam="&#x0D;"
/>
            <Action type="1" message="2170" wParam="0" lParam="0" 
sParam="&#x0A;"
/>
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="0" />
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="x" />
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="3" />
            <Action type="0" message="2327" wParam="0" lParam="0" sParam="" />
            <Action type="1" message="2170" wParam="0" lParam="0" 
sParam="&#x0D;"
/>
            <Action type="1" message="2170" wParam="0" lParam="0" 
sParam="&#x0A;"
/>
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="0" />
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="x" />
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="4" />
            <Action type="0" message="2327" wParam="0" lParam="0" sParam="" />
            <Action type="1" message="2170" wParam="0" lParam="0" 
sParam="&#x0D;"
/>
            <Action type="1" message="2170" wParam="0" lParam="0" 
sParam="&#x0A;"
/>
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="0" />
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="x" />
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="5" />
            <Action type="0" message="2327" wParam="0" lParam="0" sParam="" />
            <Action type="1" message="2170" wParam="0" lParam="0" 
sParam="&#x0D;"
/>
            <Action type="1" message="2170" wParam="0" lParam="0" 
sParam="&#x0A;"
/>
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="0" />
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="x" />
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="6" />
            <Action type="0" message="2327" wParam="0" lParam="0" sParam="" />
            <Action type="1" message="2170" wParam="0" lParam="0" 
sParam="&#x0D;"
/>
            <Action type="1" message="2170" wParam="0" lParam="0" 
sParam="&#x0A;"
/>
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="0" />
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="x" />
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="7" />
            <Action type="0" message="2327" wParam="0" lParam="0" sParam="" />
            <Action type="1" message="2170" wParam="0" lParam="0" 
sParam="&#x0D;"
/>
            <Action type="1" message="2170" wParam="0" lParam="0" 
sParam="&#x0A;"
/>
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="0" />
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="x" />
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="8" />
            <Action type="0" message="2327" wParam="0" lParam="0" sParam="" />
            <Action type="1" message="2170" wParam="0" lParam="0" 
sParam="&#x0D;"
/>
            <Action type="1" message="2170" wParam="0" lParam="0" 
sParam="&#x0A;"
/>
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="0" />
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="x" />
            <Action type="1" message="2170" wParam="0" lParam="0" sParam="9" />
            <Action type="0" message="2327" wParam="0" lParam="0" sParam="" />
            <Action type="1" message="2170" wParam="0" lParam="0" 
sParam="&#x0D;"
/>
            <Action type="1" message="2170" wParam="0" lParam="0" 
sParam="&#x0A;"
/>
        </Macro>

And this is what it inserts:

0x0{tab}
0x0{tab}
0x0{tab}
0x0{tab}
0x0{tab}
0x0{tab}
0x0{tab}
0x0{tab}
0x0{tab}
0x0{tab}

Can someone please tell me what I'm doing wrong.

Thank you!

- Tristan

______________________________________________________________________
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



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

------------------------------------------------------------------------------
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 34
*************************************************

Reply via email to