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 [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] replace with 'newline' character (SourceForge.net) 2. [notepad-plus - Help] RE: Console (SourceForge.net) 3. [notepad-plus - Help] RE: replace with 'newline' character (SourceForge.net) 4. [notepad-plus - Plugin Development] RE: Highlight config for NppExec (SourceForge.net) 5. [notepad-plus - Plugin Development] RE: Highlight config for NppExec (SourceForge.net) 6. [notepad-plus - Open Discussion] RE: Find In Files Problem (SourceForge.net) 7. Newbie: Function List (MrDetermination) 8. [notepad-plus - Open Discussion] [Feature Request] View gzip compressed files (SourceForge.net) 9. [notepad-plus - Open Discussion] RE: Feature Req: Copy > Bookmarked Lines (SourceForge.net) 10. [notepad-plus - Open Discussion] RE: Hang on Column Mode (SourceForge.net) 11. [notepad-plus - Open Discussion] RE: UTF-8 without BOM recognition (SourceForge.net) 12. [notepad-plus - Open Discussion] RE: [Feature request] Search Replace In Files (SourceForge.net) ---------------------------------------------------------------------- Message: 1 Date: Mon, 28 Jul 2008 08:44:23 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Help] replace with 'newline' character 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=5126672 By: cforcloud i am NOT able paste 'newline' character in 'Replace with' input in 'Replace' dialog box.., this was possible in earlier versions. (currently v4.9.2) i desperately need it. in html files, i am used to find and replace '><' with '> <' and vice versa. or, is there a new way??? someone pls respond, thanks, cloud ______________________________________________________________________ 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: Mon, 28 Jul 2008 08:47:12 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Console 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=5126675 By: dv__ RTFM, NppExec plugin. http://sourceforge.net/forum/forum.php?max_rows=25&style=ultimate&offset=25&foru m_id=672146 http://sourceforge.net/forum/forum.php?forum_id=672146 ______________________________________________________________________ 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: Mon, 28 Jul 2008 08:57:25 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: replace with 'newline' character 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=5126696 By: cforcloud oops! okay, the v5.0 fixed me :) the replace box - extended option worked great. thanks N++ team ______________________________________________________________________ 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: Mon, 28 Jul 2008 09:36:12 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE: Highlight config for NppExec 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=5126773 By: dv__ Well, after some time I've understood that the error is in your highlight mask. The plugin works correctly. The right mask is the following: *] %ABSFILE%:%LINE%:* You see, your mask "* %ABSFILE%:%LINE% " does not provide enough information. The keyword "%ABSFILE%" is something similar to "%s" in scanf(), so, in common case, it does not know where the substring starts and where it ends. Thus, if you specify "*] %ABSFILE%:%LINE%:*", it will be clear that the "%ABSFILE%" starts right after "] " in the string. ______________________________________________________________________ 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: Mon, 28 Jul 2008 09:41:43 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE: Highlight config for NppExec 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=5126784 By: dv__ We can not perform additional verification for the start and end of "%ABSFILE%", because, in common case, "%ABSFILE%" may have different form: 1) c:\folder\file.ext 2) c:/folder/file.ext 3) \\path\file.ext 4) //path/file.ext 5) ..\path\file.ext 6) ../path/file.ext And maybe we can invent other forms of %ABSFILE% :-) ______________________________________________________________________ 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: 6 Date: Mon, 28 Jul 2008 08:37:00 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Find In Files Problem 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=5126657 By: donho It's a critical bug. It'll be fixed in v5.0.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 ------------------------------ Message: 7 Date: Mon, 28 Jul 2008 09:19:57 -0500 From: MrDetermination <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] Newbie: Function List To: Notepad-plus-plus@lists.sourceforge.net Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="iso-8859-1" Hi, I have the function list (tried alpha and stable version) "installed" correctly. I was expecting a list of pre-set "commands" to be insert-able with ease. However, I am not able to populate the window as seen here: http://notepad-plus.sourceforge.net/commun/screenshots/scrsh_lexerSQL.gif Are function lists user populated? I have tried changing a blank document's language to every language available. None of these cause the function list to populate. Plugins -> Function List -> Show All and List are both ticked. Thanks for your help. -------------- next part -------------- An HTML attachment was scrubbed... ------------------------------ Message: 8 Date: Mon, 28 Jul 2008 11:36:07 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] [Feature Request] View gzip compressed 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=5126994 By: nobody This is a feature request. It would be great if Notepad++ could work with gzip compressed text files, handling all the decompression transparently, like xemacs does. We often work with very large XML files that are created in gzip compressed format. Being able to view and edit the files in Notepad++ without having to decompress them completely first would be really useful. Perhaps others on this mailing list could comment if they would also find this feature useful so that the amount of support it could be gauged. Thank you. ______________________________________________________________________ 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, 28 Jul 2008 11:55:14 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Feature Req: Copy > Bookmarked Lines 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=5127046 By: nobody >From version 5.0, I believe, there is an option in the Search menu. It is called "Copy bookmarked lines". Paste them in a new document. ______________________________________________________________________ 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: Mon, 28 Jul 2008 12:04:40 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Hang on Column Mode 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=5127068 By: nobody Yes, use a regular expression, either Ctrl+R or Ctrl+H. Search the forums for more about this. Find expression = ^([^\t]*\t[^\t]*\t[^\t][^\t][^\t][^\t])[^\t] Replace expression = \1 This will search for the first two columns, which themselves may be empty, including the succeeding tab characters, and the first five characters of the third column. Only the fifth character won't be re-placed, so in effect it will be removed. ______________________________________________________________________ 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: Mon, 28 Jul 2008 12:06:54 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: UTF-8 without BOM recognition 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=5127072 By: nobody Wow, don't know, don't think there is. I believe this has been asked or reported before. Try a 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: 12 Date: Mon, 28 Jul 2008 12:10:47 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: [Feature request] Search Replace 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=5127076 By: nobody > As said by others, it's a drag to use other programs to achieve this. It is not! > I currently use JEdit to replace in files. > Because it is fast and simple (with good regex support) and - unlike > Dreamweaver - it > works in all file types (that match filter) and not only n files recognized by program. So what's the problem? Next thing that will happen, when this will have been implemented, is that you have a problem with Notepad++'s regex implementation. And so on and so on... If you can work and have found something to do it right and easily, it's a gain. ______________________________________________________________________ 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 ------------------------------ ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ ------------------------------ _______________________________________________ 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 26, Issue 63 *************************************************