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] RE: Where are Unicode Plugins or ANSI NPP? (SourceForge.net) 2. [notepad-plus - Help] RE: Where are Unicode Plugins or ANSI NPP? (SourceForge.net) 3. [notepad-plus - Translation] RE: Italian Translation updated (SourceForge.net) 4. [notepad-plus - Open Discussion] Search to select text before external "run" (SourceForge.net) 5. [notepad-plus - Help] I have "nul" between every two characters (SourceForge.net) 6. [notepad-plus - Plugin Development] RE: TextFX Characters - Cascading menu ? (SourceForge.net) 7. [notepad-plus - Open Discussion] RE: Notepad++ v5.1.4 just come out (SourceForge.net) 8. [notepad-plus - Help] NPP hanged on Ctrl+S, can I rescue "new 2"? (SourceForge.net) 9. [notepad-plus - Open Discussion] White on Black (SourceForge.net) 10. [notepad-plus - Open Discussion] RE: Notepad++ v5.1.4 just come out (SourceForge.net) ---------------------------------------------------------------------- Message: 1 Date: Mon, 12 Jan 2009 18:11:52 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Where are Unicode Plugins or ANSI NPP? To: nore...@sourceforge.net Message-ID: <6087017.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=6087017 By: igorsantos07 I've just found that Explorer have just been launched with an Unicode version... but how about the Function List? Won't they devel a UNI version? Will they launch any NEW version? =X ______________________________________________________________________ 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, 12 Jan 2009 18:52:32 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Where are Unicode Plugins or ANSI NPP? To: nore...@sourceforge.net Message-ID: <6087511.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=6087511 By: dv__ Function List 1.2 Unicode build (unofficial, but seems to be the best re-build available): http://randronov.blogspot.com/2008/11/function-list-for-notepad-5x-unicode.html QuickText plugin Unicode build (unofficial, see links in that forum): https://sourceforge.net/forum/forum.php?thread_id=2579444&forum_id=482781 And, of course, latest official versions of plugins can be found here: http://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=331754 ------------------------------ Message: 3 Date: Mon, 12 Jan 2009 19:34:39 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Translation] RE: Italian Translation updated To: nore...@sourceforge.net Message-ID: <6088235.558...@sourceforge.net> Content-Type: text/plain; charset="UTF-8" Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=6088235 By: ices_eyes New version for N++ 5.1.4 Download here: http://localhostr.com/files/f0be21/italian.zip ______________________________________________________________________ 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=558104 ------------------------------ Message: 4 Date: Mon, 12 Jan 2009 20:15:03 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Search to select text before external "run" To: nore...@sourceforge.net Message-ID: <6088865.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=6088865 By: keith_k I would like to set up Notepad++ so that I can hit a shortcut keyboard button (e.g. F9) and have Notepad++ then do the following. 1. Search backward (from my current cursor position) and finds a specific set of characters [or the beginning of the file]. Then, it should search forward from that place until it finds that set of characters again [or the end of the file], selecting all text in between these two locations. 2. Once this text is selected, it should "run" a command that I have already set up as an External Tool (see http://notepad-plus.sourceforge.net/uk/run-HOWTO.php) Obviously, I will be using $(CURRENT_WORD) What I want to do is replicate a behavior from Matlab known as "Cells." (see http://www.mathworks.com/access/helpdesk/help/techdoc/index.html?/access/helpdes k/help/techdoc/matlab_env/brqxeeu-259.html). (I will be using a completely different program and program language than Matlab, but this is where I got the idea.) Example: Suppose I have the following file: ---- BEGIN sample.program---- %% Comment 1 Code1 Code2 {location 1} Code3 %% Comment 2 Code4 Code5 {location 2} Code6 % Comment 3 Code7 Code8 Code9 %% Comment 4 .... ---- END sample.program ---- What I want is to have Notepad++ "Run" the section of code that my cursor is currently in. My special character group is "%%" to divide by "Cells" of code. Thus, if my cursor is at {location 1} then I want my keyboard shortcut to "run" all text between Comments 1 and 2. If my cursor is at {location 2}, then it should "run" all text between Comment 2 and Comment 4. Please let me know how I can do this. I already know who to set up a "run" shortcut and map it to a keyboard shortcut. I just can't figure out how to get the keyboard shortcut to first do the search. (I presume that you would use a regular expression search to "find" the "%%" dividers in my example above. The %% is a comment line, so I don't really care if the search includes that text or not.) I just don't know how to make it happen. Many thanks in advance for a little help with this or any pointers or ideas! - Keith ______________________________________________________________________ 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, 12 Jan 2009 21:56:10 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] I have "nul" between every two characters To: nore...@sourceforge.net Message-ID: <6090476.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=6090476 By: webgrunt1 When I open a certain text file, there's a NUL in between every two characters, for example, the word "Edition" appears as "NULENULdNULiNULtNULiNULoNULnNUL" I can't copy or cut any text from the file. IF I open it with Windows Notepad.exe, it looks fine, and I can copy text from it. How can I fix 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: 6 Date: Mon, 12 Jan 2009 21:52:53 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE: TextFX Characters - Cascading menu ? To: nore...@sourceforge.net Message-ID: <6090434.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=6090434 By: harrybharry That seems to be an bug. Could you describe the versions you have of Notepad++ and textFX? Also, see if removing other plugins helps (temporarily move all of them except ofcourse for TextFX). Also, do the menu items look normal or do they all have some character in front of them? You can also try to uninstall Notepad++, remove any config if possible (custom stylers do not have to be removed, its mainly config.xml) and reinstall, it should help. ______________________________________________________________________ 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, 12 Jan 2009 22:55:15 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Notepad++ v5.1.4 just come out To: nore...@sourceforge.net Message-ID: <6091630.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=6091630 By: donho > what about the NPPM_DOOPEN message? It'll be added in the next version - as doc described. > what about making isUnicode() return either "requires ANSI", "requires > UNICODE", "neutral"? What kind of plugin will be neutral? A plugin must pass its name and its command names to Notepad++, therefor ANSI and Unicode schema should be followed. 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: 8 Date: Mon, 12 Jan 2009 21:38:53 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] NPP hanged on Ctrl+S, can I rescue "new 2"? To: nore...@sourceforge.net Message-ID: <6090228.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=6090228 By: henrik_e I did as I always do - Ctrl+N and type notes. After a while I thought it was time to save, so I pressed Ctrl+S. The file pane opened, turned white, and I clicked cancel. Then NPP turned white and I got the "hour glass" pointer. My current theory is that NPP/explorer.exe sent a request to all storage devices, and my external USB harddisk was slow in responding. It can also be a bug, of course. What I did next was to see if it was available, Windows+Run, then I typed h: + Enter. Whereupon Windows hung so hard I couldn't even re-start explorer.exe (my fix of choice for example when a program refuses to close down). Now, I have XP 64-bit, and at a glance I can't find out whether my 5.1.2 Unicode is for 64-bit or 32-bit. The zip is 3.10 MB (3,258,582 bytes), if that helps. Any recommendations for a version that is proper for my would be appreciated. But right now, I'm just looking for a way to a) somehow find any temporary file the text was saved in, before it was Saved As..., so to speak. Possible? If not, would this be a possible new feature - i.e. saving to temp before opening the file dialog, just in case that fails? b) auto-backup every n minutes, for example with a plug-in, so it doesn't happen again. Harddisk space is cheap. I don't know what the backup function I enabled does - is that to stop you from overwriting existing files only/rollback? /Henrik ______________________________________________________________________ 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: Mon, 12 Jan 2009 23:14:54 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] White on Black To: nore...@sourceforge.net Message-ID: <6091893.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=6091893 By: e_d_w_a_r_d Is it difficult to add 'Invert all colours' checkbox in Styles section ? ______________________________________________________________________ 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, 12 Jan 2009 23:16:20 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Notepad++ v5.1.4 just come out To: nore...@sourceforge.net Message-ID: <6091906.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=6091906 By: donho > on the website the "Latest version" line is empty... Thank you for the hands up. It's fixed now. 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 ------------------------------ ------------------------------------------------------------------------------ This SF.net email is sponsored by: SourcForge Community SourceForge wants to tell your story. http://p.sf.net/sfu/sf-spreadtheword ------------------------------ _______________________________________________ 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 32, Issue 22 *************************************************