Send Notepad-plus-plus mailing list submissions to
[email protected]
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 - Help] Regex howto (SourceForge.net)
2. [notepad-plus - Open Discussion] Find In Files (SourceForge.net)
3. [notepad-plus - Help] RE: Regex howto (SourceForge.net)
4. [notepad-plus - Help] More "Keyword Lists" groups?
(SourceForge.net)
5. [notepad-plus - Help] RE: Regex howto (SourceForge.net)
6. [notepad-plus - Help] RE: Regex howto (SourceForge.net)
7. [notepad-plus - Help] Crash because of too many keywords in a
group (SourceForge.net)
8. [notepad-plus - Open Discussion] RE: PHP and print_r
(SourceForge.net)
9. [notepad-plus - Help] RE: Regex howto (SourceForge.net)
10. [notepad-plus - Open Discussion] NP++ 4.1.2 Crash with full
Plugin set (SourceForge.net)
11. [notepad-plus - Open Discussion] RE: if (Notepad++ == v4.1.2)
return true; (SourceForge.net)
12. [notepad-plus - Help] Cannot maximize (SourceForge.net)
13. [notepad-plus - Help] Feature request (SourceForge.net)
----------------------------------------------------------------------
Message: 1
Date: Wed, 30 May 2007 09:18:15 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Regex howto
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=4336650
By: ishamid2
Hi,
I don't understand how to use the regex search and replace. Perhaps an example
will help me get the hang of it:
I have a text file with sequences of characters like
{\bf ?The Dervish Lodge: Architecture, Art, and Sufism in Ottoman Turkey.?}
I would like to search for
\{\\bf ?(.*?)?\}
and replace with
\index{\bf $1}
where '$1' represents what's in parens
basically I want to get rid of the quotes and index what's in brackets. How
do I do this using the regex dialog?
Best
Idris
______________________________________________________________________
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: 2
Date: Wed, 30 May 2007 12:10:31 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Find In
Files
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=4336876
By: fritzophrenic
Good addition to find/replace dialog, except for one thing:
Pressing the "enter" key in the find in files dialog does nothing!
Pressing Enter on the search or replace dialog finds the next occurrance.
Pressing
Enter on the find in files tab should perform the search.
______________________________________________________________________
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 May 2007 14:14:06 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Regex howto
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=4337030
By: bdb4269
Try this
search
\{(\\bf) "(.*)"\}
replace
\index{\1 \2}
Basically - Take the "?" out -- and use \1 instead of $1 to reference
(I used ()'s around the \bf - because i was having trouble with the \b in the
replace adding a BS instead of "\b")
______________________________________________________________________
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: 4
Date: Wed, 30 May 2007 17:55:18 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] More "Keyword
Lists" groups?
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=4337224
By: kclaisse2
I think it would be very useful (if not necessary) to have more then 4 groups
for keywords. I was in the process of setting up a game engine language I use
but was stopped when I found I needed more than 4 groups (around 7). I tried
adding them to the userDefineLang.xml but that didn't work very well. I hope
this feature can be put in fast, because the syntax highlighting feature in
Notepad++ is by far the most user friendly system I've seen.
-Kyle
______________________________________________________________________
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: 5
Date: Wed, 30 May 2007 18:13:35 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Regex howto
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=4337235
By: ishamid2
Hi,
Thank you: the following works in my case:
search
\{(\\bf) ?(.*)?\}
replace
\index{\1 \2}
The only difference being the kind of quotes used in my specific case.
If I am understanding correctly, the '\' is an escape character in the Replace
dialog and everything else is treated as text. Are there any other escape
characters
for the replace? (I think I understand the search side of regex's better than
I get the rules for the replace side).
THNX: I really appreciate it!
Idris
______________________________________________________________________
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 May 2007 18:14:21 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Regex howto
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=4337237
By: pshute
There's a regex FAQ at http://notepad-plus.sourceforge.net/uk/regExpList.php .
______________________________________________________________________
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 May 2007 18:15:00 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Crash because of
too many keywords in a group
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=4337238
By: kclaisse2
I don't know if there is a way to fix this, but one of my keyword groups has
37,998 characters, and when I launch notepad++ it crashes. Just thought I'd
post it here for a dev to fix or something.
______________________________________________________________________
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 May 2007 18:46:33 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: PHP
and print_r
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=4337264
By: nobody
Oh, and it's not just print_r. For example, "try" and "catch" are also not being
highlighted. I can kind of see not needing to highlight print_r but these other
two? I haven't gown through and tried all the PHP keywords but it'd be nice
if someone updated syntax highlighting for PHP or at least pointed me to who
to talk to or at shoot, let me at some code and I will update it myself.
~MH
______________________________________________________________________
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 May 2007 18:49:53 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Regex howto
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=4337267
By: ishamid2
That's a great help, did not see that one before...
THNX
I
______________________________________________________________________
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 May 2007 22:53:13 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] NP++
4.1.2 Crash with full Plugin set
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=4337396
By: jmg_
On install (win2000) the newest Np versions crashes on startup.
This has occured before:
If I then rename the plugin dir, it starts OK, and if I create
a new plugin subdir, and move in Explorer, LightExplorer, HexEDit, NppExec,
DLLs it still seems to start OK. (so one of the remaining DLLs, or combination,
is the problem).
One version older, was ok.
______________________________________________________________________
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 May 2007 22:59:29 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: if
(Notepad++ == v4.1.2) return true;
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=4337402
By: jmg_
See my other post, about a 4.1.2 install over an older install, that
crashes, until plugins directory is reduced.
I missed this 4.1.2 thread because of the strange title :)
______________________________________________________________________
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: Thu, 31 May 2007 00:38:53 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Cannot maximize
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=4337500
By: nobody
After some time (weeks), the application opens directly in Minimized mode and
cannot be maximized again.
The only way to solve this issue is to re-install.
anybody any other workaround ?
______________________________________________________________________
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: 13
Date: Thu, 31 May 2007 00:52:43 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Feature 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=4337518
By: nobody
Hello, thanks for NPP it's very good product, i use it every day!
And it's will be nice to have one litle feature : when i right click on the
TAB i want to "open folder" with this file. Is it possible to make in next
relise
?
(realy sorry for my terrible english.)
Thank you very match!
______________________________________________________________________
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
------------------------------
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
------------------------------
_______________________________________________
Notepad-plus-plus mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus
End of Notepad-plus-plus Digest, Vol 12, Issue 95
*************************************************