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 - Help] Regex matching repeating (SourceForge.net) 2. [notepad-plus - Open Discussion] Filesize Limit (SourceForge.net) 3. [notepad-plus - Help] RE: Regex matching repeating (SourceForge.net) 4. [notepad-plus - Open Discussion] Colour of Background (SourceForge.net) 5. [notepad-plus - Help] repeating regex regular expression matching (SourceForge.net) 6. [notepad-plus - Open Discussion] RE: Colour of Background (SourceForge.net) 7. [notepad-plus - Help] macro for TextFX HTML Tidy: Reindent XML (SourceForge.net) 8. [notepad-plus - Help] Muliple line find and replace box needed (SourceForge.net) 9. [notepad-plus - Open Discussion] Grep inside Notepad++ (SourceForge.net) 10. [notepad-plus - Help] i get error with php tag (SourceForge.net) ---------------------------------------------------------------------- Message: 1 Date: Thu, 19 Feb 2009 18:40:14 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] Regex matching repeating To: nore...@sourceforge.net Message-ID: <6468313.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=6468313 By: calvin8080 I'm trying to match text that's in the form of "xxxx xxxx xxxx xxxx" where x can be a 0, d or ?. I thought the expression ([0d\?]{4} ){3}[0d\?]{4} would grab it but N++ won't find it. The {n} syntax doesn't appear to do anything, is there some alternate functionality that works besides manually repeating? A plugin? ______________________________________________________________________ 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: Thu, 19 Feb 2009 19:44:18 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Filesize Limit To: nore...@sourceforge.net Message-ID: <6468795.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=6468795 By: aquilai Recently I was helping a friend modify some data files and apparently even though I had adequate amounts of (2GB of RAM) memory Notepad++ refused to open 2 x 140MB sized files. In the best case scenario when Notepad++ opens a new file (and automatically includes the previously closed files as tabs) it opens both files 140MB files but the newest file would have 80% of the remaining data missing. What I found curious was that Wordpad (one small step up from Microsoft's Notepad) could open both files at the same time albeit it would run slowly. My conclusion is that Notepad++ requires more memory to run or that there's a prefixed limit on the maximum amount of memory that Notepad++ is allowed in it's programming. Is there a way to extend or let the user manage this? ______________________________________________________________________ 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: Thu, 19 Feb 2009 19:57:53 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Regex matching repeating To: nore...@sourceforge.net Message-ID: <6468902.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=6468902 By: vikash4india You can try [0d\?][0d\?][0d\?][0d\?] [0d\?][0d\?][0d\?][0d\?] [0d\?][0d\?][0d\?][0d\?] [0d\?][0d\?][0d\?][0d\?] if finds accurately what u r searching for. Though its lengthy, but it 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: 4 Date: Thu, 19 Feb 2009 21:22:29 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Colour of Background To: nore...@sourceforge.net Message-ID: <6469612.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=6469612 By: sweetorangepie Hi Guys, I was wondering if there was anyway to change the background colour in notepad++ Reason is I prefer to work with white text on black as I can see it easier? Cheers! ______________________________________________________________________ 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: Thu, 19 Feb 2009 21:47:23 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] repeating regex regular expression matching To: nore...@sourceforge.net Message-ID: <6469820.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=6469820 By: fool4uanyway > It finds accurately what you are searching for, > though it's lengthy. But it works. If the pattern _only_ appears in sequence of 4 x 4 characters as in your example, you could use the following shortened version of the regex: [0d?]+ [0d?]+ [0d?]+ [0d?]+ This will look for any sequence of 4 times a sequence of _any_ number of characters 0, d or ?. There is no need to precede the ? by \, because it is clear to the engine that anything between [ and ] will be a single character. However, it doesn't make a difference, because \? will be interpreted as ?. Do _not_ use a single \ to look for a real \, because it may lead to unexpected and wrong results or effects. ______________________________________________________________________ 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: Thu, 19 Feb 2009 22:01:24 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Colour of Background To: nore...@sourceforge.net Message-ID: <6469923.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=6469923 By: ingobaab Hello sweetorangepie-Guy ;-) if you want, you can download my "preferred assembly" It comes in black-background style, but you can also change colors in "stylers.xml" yourself.. download is here: -> http://notepad.gratis.de/Notepad++.zip. regards, -Ingo Baab ______________________________________________________________________ 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: Thu, 19 Feb 2009 22:07:22 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] macro for TextFX HTML Tidy: Reindent XML To: nore...@sourceforge.net Message-ID: <6469954.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=6469954 By: erdubya I'm trying to create/record a macro that will automatically indent my XML. I see this feature available under TextFX ==> TextFX HTML Tidy ==> Tidy: Reindent XML When I record the macro and try to re-run it, I get many NUL graphics all over my document. Example: <profile><name>elliott</name><address>1234 yourstreet</address><phone>7779311</phone></profile> is properly indented to: <profile> <name>elliott</name> <address>1234 yourstreet</address> <phone>7779311</phone> </profile> BUT the macro produces NUL errors. (Please see screenshot at http://drop.io/erdubya_notepad_plusplus - you'll have to download to see image fullsize) Am I doing something wrong? Or is there another way to create a macro to automate this? ______________________________________________________________________ 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: Thu, 19 Feb 2009 21:54:37 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] Muliple line find and replace box needed To: nore...@sourceforge.net Message-ID: <6469881.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=6469881 By: lady_aleena I am still trying to get used to Notepad++ but one thing that I had gotten used to using EditPad was the multiple line find and replace, usually when I want to delete about 5-10 lines of identical text over 5+ files. I tried doing it with Notepad++ but after pasting the lines in that little tiny find box, it didn't find the lines to delete. I sometimes have a lot of text that needs deleting, and that little tiny find box makes it difficult to do so. Is there a patch or something that would give me something similar to what EditPad has for find and replace? ______________________________________________________________________ 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: Thu, 19 Feb 2009 22:17:10 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Grep inside Notepad++ To: nore...@sourceforge.net Message-ID: <6470009.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=6470009 By: nganju Hello, Just switched from Textpad to Notepad++. What a fantastic product! I'm also switching everyone I told about TextPad to NotePad++, as well as the 20 or so developers on my team. I love reading log files with Notepad++, but would love to request just one small feature. Can you add a grep-like plugin? It would just ask for a regular expression, and then show only matching lines in the current file. I.e. I have a file like this: [Thread1] Starting web crawl... [Thread2] Monitoring db... [Thread1] Crawled site and successful [Thread1] Blah [Thread2] DB query failed for reason x Then you could grep for [Thread2] and just see those messages. That would be great! Thanks, Nick ______________________________________________________________________ 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: Fri, 20 Feb 2009 01:12:35 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] i get error with php tag To: nore...@sourceforge.net Message-ID: <6470833.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=6470833 By: vurentjies if i add a php tag at line 0 (first line) at position 0, and i enter to make a new space my notepad bombs out, i get exception 0x10002e87 with code 0xc0000005 it didnt do this until today and now does it every time. i will reinstall to fix now but came by to say, notepad is a really great work environment ______________________________________________________________________ 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 46 *************************************************