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] Notepad++ Lookbehind (SourceForge.net) 2. [notepad-plus - Open Discussion] RE: Notepad++ for Linux (SourceForge.net) 3. [notepad-plus - Open Discussion] RE: Incremental Search Bug (SourceForge.net) 4. [notepad-plus - Plugin Development] RE: pawn language - Easy to do yourself. (SourceForge.net) 5. [notepad-plus - Help] RE: Notepad++ Lookbehind (SourceForge.net) 6. [notepad-plus - Open Discussion] $(CURRENT_WORD) is limited only to 259 chars (SourceForge.net) 7. [notepad-plus - Help] Invert Bookmarks? (SourceForge.net) 8. [notepad-plus - Help] RE: "Box" mode edit? (SourceForge.net) 9. [notepad-plus - Plugin Development] Modification Marker Margin (SourceForge.net) 10. [notepad-plus - Plugin Development] RE: Modification Marker Margin (SourceForge.net) ---------------------------------------------------------------------- Message: 1 Date: Fri, 27 Feb 2009 13:49:11 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] Notepad++ Lookbehind To: nore...@sourceforge.net Message-ID: <6550361.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=6550361 By: dogomogomogo Hello. I need to search a phrase in a javascript file via RegExp Find. I use lookbehind for the RegExp but the search doesn't match. Does not Notepad++ have RegExp lookbehind support? 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: 2 Date: Fri, 27 Feb 2009 13:49:43 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Notepad++ for Linux To: nore...@sourceforge.net Message-ID: <6550366.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=6550366 By: rolliradi7 it works fine with wine. I was just curious. ______________________________________________________________________ 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: Fri, 27 Feb 2009 14:09:59 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Incremental Search Bug To: nore...@sourceforge.net Message-ID: <6550587.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=6550587 By: tdebaets Any idea when a fix will be released? I searched the bug tracker but couldn't find the corresponding bug. Incremental searching is a great feature of Notepad++, but this flaw currently renders it practically useless, sadly. Kind regards Tim De Baets ______________________________________________________________________ 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: Fri, 27 Feb 2009 14:16:15 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE: pawn language - Easy to do yourself. To: nore...@sourceforge.net Message-ID: <6550671.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=6550671 By: nnnnn1 thank you verry much ______________________________________________________________________ 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: Fri, 27 Feb 2009 14:21:52 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Notepad++ Lookbehind To: nore...@sourceforge.net Message-ID: <6550741.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=6550741 By: gr3gw I'm not sure what 'lookbehind' is but I can tell you that Regular Expressions in Npp does NOT support the Perl commands. Reg Exp in Npp (Scintilla) is quite basic. The nearest feature that might be your 'lookbehind is referencing previous (earlier) sub-expressions. For example: ([abc]*)=[^\r]\1.*$ Where the \1 refers to the sub-expression found by ([abc]*) ______________________________________________________________________ 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: Fri, 27 Feb 2009 15:51:09 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] $(CURRENT_WORD) is limited only to 259 chars To: nore...@sourceforge.net Message-ID: <6551792.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=6551792 By: etirta It seems the variable $(CURRENT_WORD) can only hold 259 characters. I try to have an external command to decode messages. This messages can literally very very long. Unfortunately the variable $(CURRENT_WORD) has limited length and truncate the message hence my decoder fail to decode it. How to reproduce the fault: type in 1 line: 123456789012345... (upto 270 characters) Then run an external command (Run\Run) and type in: cmd /k echo $(CURRENT_WORD) And execute it. A command prompt window will pop up and echoing only the first 259 characters. The older version of NPP (upto 5.1.1) used to crash, but the NPP 5.2 is better, however it truncate it. But I need this function as some of my messages goes a lot longer than that. I tried to make my group using NPP instead of the expensive MultiEdit, however this fault may hinder this :(. Can you please fix this? Thank you very much for your kind attention. Cheers //Edo ______________________________________________________________________ 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: Fri, 27 Feb 2009 16:49:02 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] Invert Bookmarks? To: nore...@sourceforge.net Message-ID: <6552374.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=6552374 By: renphi Is this possible? If so, how? ______________________________________________________________________ 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: Fri, 27 Feb 2009 21:15:43 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: "Box" mode edit? To: nore...@sourceforge.net Message-ID: <6555031.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=6555031 By: finn1317 Try holding down the alt key while selecting text. Then, if you want to replace that text with something, use the Alt+C hotkey (or "Edit"->"Column Editor..."). You can replace with a constant string or an incrementing series. Bill ______________________________________________________________________ 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: Fri, 27 Feb 2009 21:57:19 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] Modification Marker Margin To: nore...@sourceforge.net Message-ID: <6555363.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=6555363 By: aathell Hi Don, After looking over the latest revisions I see why you reserved margin 3. :) Looks like we have similar lines of thought on how to do this. That's cool. How much control are you thinking about giving to the user over the marker? Similar to bookmarks with a show/hide per view, or also line coloring if margin is hidden. I'd be interested in hearing your thoughts on that kind of stuff... The plugin route that I'm taking is pretty user control motivated. ie. Target margin, show/hide, line background, and I was even considering giving the user the ability to define an external xpm via an xml config in the same GUIConfig format your already using... 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: 10 Date: Sat, 28 Feb 2009 01:25:45 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE: Modification Marker Margin To: nore...@sourceforge.net Message-ID: <6557061.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=6557061 By: donho > How much control are you thinking about giving to the user over the marker? > Similar to bookmarks with a show/hide per view, or also line coloring if > margin is hidden. > I'd be interested in hearing your thoughts on that kind of stuff... Which margin are you talking about? If you are talking about modification state margin, user can only show/hide this margin. > The plugin route that I'm taking is pretty user control motivated. ie. > Target margin, show/hide, line background, and I was even considering giving the user > the ability to define an external xpm via an xml config in the same GUIConfig format your > already using... That's fine. What purpose is your plugin for? 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 ------------------------------ ------------------------------------------------------------------------------ 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 58 *************************************************