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] XBrackets Lite v1.1 (SourceForge.net) 2. [notepad-plus - Open Discussion] RE: Regex regular expression multiple lines trick (SourceForge.net) 3. [notepad-plus - Open Discussion] RE: Regex regular expression multiple lines trick (SourceForge.net) 4. [notepad-plus - Open Discussion] RE: Notepad "God Damned Exception" (SourceForge.net) 5. [notepad-plus - Open Discussion] RE: Regex regular expression multiple lines trick (SourceForge.net) 6. [notepad-plus - Plugin Development] FTP_Synchronize with Multiple Displays (SourceForge.net) 7. [notepad-plus - Help] RE: Macro Help (SourceForge.net) 8. [notepad-plus - Open Discussion] Add new options into Find Dialog !!! (SourceForge.net) 9. [notepad-plus - Help] FORTRAN 90/95 formatting files (SourceForge.net) 10. [notepad-plus - Open Discussion] (2) Add new options into Find Dialog !!! (SourceForge.net) ---------------------------------------------------------------------- Message: 1 Date: Mon, 16 Feb 2009 10:17:27 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] XBrackets Lite v1.1 To: nore...@sourceforge.net Message-ID: <6438957.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=6438957 By: dv__ XBrackets Lite allows to autocomplete brackets ([{""}]) i.e. it inserts corresponding right bracket when the left bracket is typed. The plugin uses "smart" autocompletion: - next character is analysed for ([{ brackets; - next & previous characters are analysed for " quote. This plugin is a Notepad++'es port of my XBrackets plugin for AkelPad. As Scintilla highlights pair brackets by itself, XBrackets Lite doesn't do this (unlike XBrackets for AkelPad) - therefore I call it "XBrackets Lite". v1.1 - Feb 2009 --------------- * plugin's core updated (the same as in NppExecPluginMsgTester v0.3 RC1) * plugin is automatically disabled while recording or playing a macro * new option "FileExtsRule" inside "XBrackets.ini" https://sourceforge.net/projects/npp-plugins/ ______________________________________________________________________ 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: Mon, 16 Feb 2009 12:34:31 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Regex regular expression multiple lines trick To: nore...@sourceforge.net Message-ID: <6439912.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=6439912 By: speedy1701 Yes, in my original reply to your first response I meant to say it did *not* work for me :-( I used Ctrl+R for your examples ... ______________________________________________________________________ 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: Mon, 16 Feb 2009 12:52:33 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Regex regular expression multiple lines trick To: nore...@sourceforge.net Message-ID: <6440022.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=6440022 By: speedy1701 Hi. I was wondering if you can show me what your code is trying to accomplish? It seems to search for each occurrence of '/*', continue to the end of the line, and replace with '/*'? Plus, in N++ 5.2, it seems to skip the first line of the document? I wanted to remove ALL occurrences of '/* ... */', whether this all appeared on one line, or spread across multiple lines. My regex, [ ]*/\*.**/ works only if '/* ... */' is all on one line. I also noticed that my regex will have the following. Given: TEXT1 /* ... 1 ... */ TEXT2 /* ... 2 ... */ My regex selects: /* ... 1 ... */ TEXT2 /* ... 2 ... */ i.e. It does not select each '/* ... */' pair individually, but as one long string from the first '/*' in the line to the last '*/'!!! This is no good as TEXT2 would also be deleted, but I want to keep it. So in my workaround, it was a good idea to create a newline after each '*/', resulting in at most one '/* ... */' per line. ______________________________________________________________________ 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: Mon, 16 Feb 2009 12:54:00 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Notepad "God Damned Exception" To: nore...@sourceforge.net Message-ID: <6440029.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=6440029 By: yniq I agree 100% It's not professional, and I intend to change it. Anyway, this specific error (666) means that there was an error creating a dialog window (like the Column editor, or the User Defined dialog for example). ______________________________________________________________________ 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: Mon, 16 Feb 2009 14:04:45 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Regex regular expression multiple lines trick To: nore...@sourceforge.net Message-ID: <6440501.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=6440501 By: fool4uanyway > My regex, > [ ]*/\*.**/ > works only if > '/* ... */' is > -all- _the only text_ > on one line. Try the following regex: [ ]*/\*[^*]**/ This is a non-greedy regular expression: it doesn't accept "anything" (= everything) after the comment block start /*, but _only_ all characters as long as they are not *. Like I said before, there could be *'s and /'s around in your comment text, but I guess it's easier to use this non-greedy method, than to have an extensive method working around these occurrences. However, I still don't have any clue about what goed wrong when you try to use my method. All I know now is that you confirmed that it doesn't work. ______________________________________________________________________ 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: Mon, 16 Feb 2009 14:06:31 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] FTP_Synchronize with Multiple Displays To: nore...@sourceforge.net Message-ID: <6440516.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=6440516 By: tedsimon When I open Notepad ++ on a second monitor in Windows Vista x64 SP1 I cannot open files or perform any operations on any files whatsoever. I can open and close FTP sites and even folders, but files cannot be operated upon at all. This behavior does not occur on the primary display. 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=482781 ------------------------------ Message: 7 Date: Mon, 16 Feb 2009 14:46:49 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Macro Help To: nore...@sourceforge.net Message-ID: <6440735.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=6440735 By: karlo_vdg Hi, I tried to do something similar also. I didn't find a way to do this. BUT, there is a very simple way to overcome this. Use AEDIT. It is an old (1987!) editor of Intel. It has a excellent macro feature, where you even can call macros in macros!! The AEDIT-Macro "insrt" does your stuff at the cursor, with 2 macros: mins\bri0x\xn0\09\nl\brcn0=n0+1\br\mm minsrt\brcn0=0\br10eins\br\mm Explanation of "mins\brox\xn0\09\nl\brcn0=n0+1\br\mm" mins\br = macro "ins" definition (\br = \break = ESC) i0x\xn0\09\nl\br = i(nsert) 0x + contents of variable n0 + tab (\09) + newline (\nl) cn0=n0+1\br = c(alculate) variable n0 = n0 +1 \mm = Macro end Explanation of "minsrt\brcn0=0\br10eins\br\mm" minsrt\br = macro "insrt" definition cn0=0\br = set variable n0 = 0 10eins\br = 10 times e(xecute) macro "ins" \mm = Macro end Interested ? Kind regards Karlo ______________________________________________________________________ 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: Mon, 16 Feb 2009 15:28:41 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Add new options into Find Dialog !!! To: nore...@sourceforge.net Message-ID: <6441036.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=6441036 By: leecherman Can you add a new options into the find dialog that have this items: 1- ( Find All ) Button to Find All the Typed word in only the opened document not all the opened documents. 2- ( Find All ) Button to Delete All Lines that Similar with the Typed word. 3- ( Find All ) Button to Replace All Lines that Similar with the typed word. 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=331753 ------------------------------ Message: 9 Date: Mon, 16 Feb 2009 15:44:56 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] FORTRAN 90/95 formatting files To: nore...@sourceforge.net Message-ID: <6441147.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=6441147 By: mraviator FORTRAN 90/95 code is not displayed correctly. It uses the old FORTRAN 77 format, with the six character "gutter". Where can I find the proper formatting file/plug-in? 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: Mon, 16 Feb 2009 15:45:23 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] (2) Add new options into Find Dialog !!! To: nore...@sourceforge.net Message-ID: <6441150.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=6441150 By: leecherman I have forget to write this to the first post: Add a new options into the find dialog that have this items: 4- Add string before the text. (With a input box) like the input Find What, to enter any string that user type it. 5- Add string After the text. (With a input box) like the input Find What, to enter any string that user type it. Example : Text without string : Need For Speed Undercover Text with string: ()-_.=+*Space|\...@#$%^&!~ (Need For Speed Undercover) ~Need For Speed Undercover~ Need For Speed Undercover& 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=331753 ------------------------------ ------------------------------------------------------------------------------ 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 37 *************************************************