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 - Open Discussion] 5.02 breaks      regex that
      worked in 4.8 (SourceForge.net)
   2. [notepad-plus - Open Discussion] Regular  expression
      (SourceForge.net)
   3. [notepad-plus - Open Discussion] RE: Regular      expression
      (SourceForge.net)
   4. [notepad-plus - Open Discussion] RE: Regular      expression
      (SourceForge.net)
   5. [notepad-plus - Help] Another folding keywords    with spaces
      request (SourceForge.net)
   6. [notepad-plus - Help] RE: Another folding keywords with
      spaces request (SourceForge.net)
   7. [notepad-plus - Help] RE: Stuttered Page Up/Down (SourceForge.net)
   8. [notepad-plus - Open Discussion] RE: Regular      expression
      (SourceForge.net)
   9. [notepad-plus - Help] Bug in newest build (SourceForge.net)
  10. [notepad-plus - Open Discussion] RE: Feature      Request: Real
      Column Mode (SourceForge.net)
  11. [notepad-plus - Open Discussion] RE: [FR] Exit    NPP when
      closing blank document (SourceForge.net)
  12. [notepad-plus - Open Discussion] RE: 5.02 breaks regex that
      worked in 4.8 (SourceForge.net)
  13. [notepad-plus - Open Discussion] Feature  Improvement Request:
      Macros (SourceForge.net)


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

Message: 1
Date: Wed, 30 Jul 2008 15:02:35 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] 5.02
        breaks  regex that worked in 4.8
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=5133280
By: nobody

I have a regex that looks for any text contained within square brackets.
\[([A-Z]+)\]and replaces them with greater than >\1 >

When I do thin in 4.x it works as it should [HELLO]  becomes >HELLO>  but in
5.02 I get > >

I confirmed this by copying and pasting the regex between the two versions as
well as typing it 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: 2
Date: Wed, 30 Jul 2008 15:53:49 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Regular
        expression
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=5133433
By: nobody

Why N++ use such strange RExpr? 
Why not use any standards RExpr? 


and current used RExpr has a bug: 

in text: one one two two 
search: one .* two 

it select all string ("one one two two") while must select only by the first
"two" ("one one two")

Control + R also searched "one * two" differently: it find only ("one two").
this has two errors: 1. Go throw first "one" 2. find one symbol " " while search
string contain two

______________________________________________________________________
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: Wed, 30 Jul 2008 16:11:53 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Regular expression
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=5133493
By: nobody

o sorry 
2. is my mistake :)

______________________________________________________________________
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, 30 Jul 2008 16:26:20 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Regular expression
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=5133533
By: nobody

no
2. is also a bug ctrl+R

______________________________________________________________________
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: Wed, 30 Jul 2008 16:44:10 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Another folding
        keywords        with spaces 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=5133564
By: boinka

Just adding my voice to the fray to request that the user defined language 
facility
allow folding keywords with multiple words, or better yet, regex capability.
Could use any of the following:

Fold open keywords:
if</code>     <-- only version that currently works
"if * then"   <-- simple wildcard version
"if .* then"  <-- regex version - preferred (syntax highlighting could have
the "if" and "then" as separate keywords)

Fold close keywords:
"end if"  <-- double quote the token
end%20if  <-- escape the troublesome characters
"end\ if"   <-- alternate (regex) escape

I don't know if the regex version would slow NPP down too much or not, but if
not, it sure would enhance the user defined folding and syntax highlighting.

Thanks for an awesome editor, and thanks for considering the suggestions!

______________________________________________________________________
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: Wed, 30 Jul 2008 16:46:50 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Another folding
        keywords with spaces 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=5133577
By: boinka

rats - that </code> shouldn't be there - should just be:

if  <-- only version that currently works

______________________________________________________________________
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: Wed, 30 Jul 2008 16:50:35 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Stuttered Page
        Up/Down
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=5133591
By: boinka

Sweet! V5 allows me to config the page keys to stuttered behavior and ctrl-page
keys to whole-page behavior!

Thanks 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=331754



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

Message: 8
Date: Wed, 30 Jul 2008 17:42:30 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Regular expression
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=5133721
By: snemarch

Notepad++ uses scintilla's RegExp engine, which is limited compared to, say,
PRRE. I guess this makes sense since you get that "for free" when you're already
using the scintilla edit control, but considering how many people have asked
questions wrt. the limited power, perhaps it'd be better to use PCRE by default?

It's my understanding that "one .* two" should indeed match the full "one one
two two", using greedy capture - if you want only the "one one two" part to
be matched, you should do a non-greedy capture.

______________________________________________________________________
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, 30 Jul 2008 18:05:23 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Bug in newest build
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=5133768
By: zosoo7

Hello, not sure if I'm in the right spot posting this. My co-worker downloaded
the newest build of Notepad++. It appears the carriage returns are jacked up.
In the settings, the default is set to "Windows", but in fact, it applies the
"Mac" settings. Only if he switches off "Windows" and then re-applies "Windows"
does it use the correct line breaking. This problem does not exist in the 4.x
builds. 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=331754



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

Message: 10
Date: Wed, 30 Jul 2008 18:42:41 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Feature Request: Real Column Mode
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=5133838
By: nobody

Because column mode allows you to put your cursor anywhere.  Pressing the 
"Insert"
key would require you to insert spaces until you reach the column that you want
to edit.

______________________________________________________________________
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: 11
Date: Wed, 30 Jul 2008 19:33:23 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: [FR]
        Exit    NPP when closing blank document
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=5133895
By: nobody

READ THE FORUM!!!


______________________________________________________________________
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: 12
Date: Wed, 30 Jul 2008 19:38:40 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: 5.02
        breaks regex that worked in 4.8
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=5133908
By: nobody

Which replace dialog do you use, Ctrl+H or Ctrl+R?
What are the results when using the other?


______________________________________________________________________
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: 13
Date: Wed, 30 Jul 2008 21:34:32 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Feature
        Improvement Request: Macros
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=5134137
By: helling

It would be nice if the "Run Macro Multiple Times" dialog box would close after
selecting "Run until end of file" and the "Run" button.

I can see that if you are just running it a certain count of times you would
likely want to run it more when it's done but if you are running to the end
of the file you should usually be done.
Thanks,
Bob


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


End of Notepad-plus-plus Digest, Vol 26, Issue 67
*************************************************

Reply via email to