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: Math Plugin: Unicode v0041 released (SourceForge.net) 2. [notepad-plus - Help] replace word number regular expression regex (SourceForge.net) 3. [notepad-plus - Help] RE: replace word number regular expression regex (SourceForge.net) 4. [notepad-plus - Help] RE: replace word number regular expression regex (SourceForge.net) 5. [notepad-plus - Open Discussion] Release Candidate specific thread, no FR's pl (SourceForge.net) 6. Notepad (kelly.sonora.83) 7. [notepad-plus - Help] RE: Wildcard question (SourceForge.net) 8. [notepad-plus - Open Discussion] RE: Notepad++ v5.3 Release Candidate (SourceForge.net) ---------------------------------------------------------------------- Message: 1 Date: Wed, 11 Mar 2009 21:13:57 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE: Math Plugin: Unicode v0041 released To: nore...@sourceforge.net Message-ID: <6752855.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=6752855 By: somic Hi Countdown, thank you very much for your feed-back. You have found mainly bugs and some lack of precision in documentation. Attached you can find the replies to each point The new version 0.0.4.1 is available here: http://www.semelinanno.com/downloads/anmxnpp/ver0041/anmXNpp_v0041.zip text ---------------------------------------- Hi Somic, I've tried it as promised. Well, I'm sorry but it seems it isn't working as expected. Here's what I tried doing, using the ctrl+2 option (evaluate current line and show result in the same file) 3*4+5 Result => Number = 17.0000 5+3*4 Result => Number = 17.0000 Which is fine, working as expected (I was just checking that multiplications are evaluated before sums). But now come the problems: Derivate = 1 + 3x^2 + 5x^7 Derivate of Polyn => + + Derivate = 1 + 2*x -3*x^3 Derivate of Polyn => + + 1) you have to firstly define the variable by which to derivate with the instruction. varpolyn = x (this is not clearly specified in the sample file) I would like to point out that the second derivative that I tried is copied and pasted from ShowCmds.anm, and that in that file the '=' character is missing in the example (the syntax guideline mentions it, but the example doesn't use it). And that, as you see, it doesn't work. Expr = 1+3*sin(3*to_rad) Result => Number = 1.1570 This again was taken by your file. It works, but I was wondering what the value of to_rad was, so I tried this: Show(to_rad) Ln 1: Expression = Show(to_rad): Result => ===> ERROR n. = -5: Undefined function (eval) 2) this is a bug. the command recognises, variables, functions, formulas but not constants. corrected. I have to think that to_rad was assuming a default value of 1, and that the sin() function uses degrees and not radians (this is not a problem, it's just that I had to guess which one it uses, you'd better write it into Options->Supported Functions). 3) done Then I tried: Var = test ; 12 Ln 1: Expression = Var = test ; 12: Result => ===> ERROR n. = -7: Token match error (eval) 4) this is a bug. the no button (not yes) has to be selected when prompted (yes, no, cancel) to store the variable into memory and use later on. the yes tries to solve it. (i recognize this is not clear in the short documentation). now prompt has been modified. Show(test) Ln 1: Expression = Show(test): Result => ===> ERROR n. = -7: Token match error (eval) 5) if the variable is not properly memorized (see 3), it can not be recognized and shown Since I've had so many problems, I guess I'm doing something VERY wrong, but I can't understand what. Syntax is space-sensitive, I'm trying to pay attention to it, but it doesn't look like this is the problem... It must be something else. But... Waht? :-( By the way, I'm using version 5.2 (Unicode, of course). Is it possible that THIS is the problem? 6) no, they were mainly bugs. thank you for your use out of the box (i would have never tried to show to_rad because i know - of sure - it is a constant and i know his value... :-( text ------------------------------------ I was thinking to add a list of testers in a messagebox for thanking them for help. is it a probleem if i start with you nick name? Let me know. Somic ______________________________________________________________________ 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: Wed, 11 Mar 2009 22:11:46 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] replace word number regular expression regex To: nore...@sourceforge.net Message-ID: <6753411.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=6753411 By: fool4uanyway > Hence, your search string should be: > ([A-Z]+)-([A-Z]+)-([A-Z]+:) > In the replacement string the first sub-string is denoted by > \1, the second by \2. > Hence the replacement string you want is: > \1 \2 \3 Let me be the least fool I can be and break into this discussion. I can imagine you want to replace all - characters between _any_ two words. There may be more or less than exact 3 words on each line. Let's translate word into "not-a-number", although perhaps any "word" may contain digits (I don't expect this). Let's turn any - in-between words into a space character. Use the Text FX advanced replace dialog, Ctrl+R. Check the regular expression option. Uncheck the wrap option. Check the recursive replacement option. ! This is important ! In the Find field, enter: ([^-\d+]+)-([^-d]+) In the Replace field, enter: \1 \2 This is how it works: \d _______ = any digit [^...] ___ = match any character _not_ listen after ^ [^-\d] ___ = match any character that is not a digit or - + ________ = match any string of those characters, require at least one () _______ = group an expression to re-use (the found match)later The - between two words will be replaced by a space character. The Recursive Replacement then makes the search engine start again from the position where it found the match. It won't find the replaced - anymore, but will match (and replace) any other - between the second and third word, and so on. ______________________________________________________________________ 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: 3 Date: Wed, 11 Mar 2009 22:15:08 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: replace word number regular expression regex To: nore...@sourceforge.net Message-ID: <6753446.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=6753446 By: fool4uanyway An alternative method would be: 1. Replace all -'s by space characters 2. Replace all space characters in-between numbers by -'s again For part 2 you could use the following expressions. Find: (\d+) (\d+) Replace: \1-\2 Of course, in this case, also the Recursive Replacement option should be checked. But: there may be -'s that are not surrounded by two words that will be replaced by this method, but won't be by the previous. ______________________________________________________________________ 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, 11 Mar 2009 22:17:07 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: replace word number regular expression regex To: nore...@sourceforge.net Message-ID: <6753464.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=6753464 By: fool4uanyway > In the Find field, enter: > ([^-\d+]+)-([^-d]+) Correction: ([^-\d]+)-([^-\d]+) ______________________________________________________________________ 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, 11 Mar 2009 22:25:34 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Release Candidate specific thread, no FR's pl To: nore...@sourceforge.net Message-ID: <6753555.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=6753555 By: fool4uanyway Please do not fill a thread about a Release Candidate with (new) feature requests, or even messages about "what I asked before isn't implemented in this version". You should not be surprised to never get a reply to them (other than like this one), because that's not what this thread is for. Please, only report about release specific unwanted changes or bugs, helping in the most efficient way to get the release candidate to become an official release. ______________________________________________________________________ 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: 6 Date: Thu, 12 Mar 2009 11:51:19 +0530 From: "kelly.sonora.83" <kelly.sonora...@gmail.com> Subject: [Notepad-plus-plus] Notepad To: notepad-plus-plus@lists.sourceforge.net Message-ID: <e97964bf0903112321l68711c31s37c0e71db3e6b...@mail.gmail.com> Content-Type: text/plain; charset="windows-1252" Hi, We just posted an article, ?*100 Free and Useful Portable Apps for College Students*? (* http://onlinecollegedegree.org/2009/03/11/flashdriveedu-100-free-and-useful-portable-apps-for-college-students/ *). I thought I'd bring it to your attention in case you think your readers would find it interesting.** I am happy to let you know that your site has been included in this list. Either way, thanks for your time!** Kelly Sonora -------------- next part -------------- An HTML attachment was scrubbed... ------------------------------ Message: 7 Date: Wed, 11 Mar 2009 22:51:58 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Wildcard question To: nore...@sourceforge.net Message-ID: <6753844.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=6753844 By: gr3gw That's it Nick. In your 'search for' string you had one set of parenthesis. ([A-Z]+-[A-Z]+-[A-Z]+:) So in the replace string \1 would represent the search string itself, hyphens included. You've learned quickly, well done! ______________________________________________________________________ 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, 11 Mar 2009 22:51:30 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Notepad++ v5.3 Release Candidate To: nore...@sourceforge.net Message-ID: <6753838.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=6753838 By: donho > I've noticed that too. It's really much slower. Does it is the same to you between v5.2 and v5.3 ? 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=331753 ------------------------------ ------------------------------------------------------------------------------ Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com ------------------------------ _______________________________________________ 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 34, Issue 29 *************************************************