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: External Lexer Languages on Notepad++ startup (SourceForge.net) 2. [notepad-plus - Open Discussion] More Features! (SourceForge.net) 3. [notepad-plus - Open Discussion] stylers.xml (SourceForge.net) 4. [notepad-plus - Open Discussion] indent auto-wrapped lines (SourceForge.net) 5. [notepad-plus - Open Discussion] improved auto-indention with curly brackets (SourceForge.net) 6. [notepad-plus - Plugin Development] RE: How to put tea break screen? (SourceForge.net) 7. [notepad-plus - Plugin Development] RE: XML Tools plugin 2.3.1 Unicode (alpha r670) (SourceForge.net) 8. [notepad-plus - Help] RE: Vista 64-bit sp2...what file do i download (SourceForge.net) 9. [notepad-plus - Open Discussion] RE: improved auto-indention with curly brackets (SourceForge.net) 10. [notepad-plus - Open Discussion] RE: Notepad++ .txt filetype association broken (SourceForge.net) ---------------------------------------------------------------------- Message: 1 Date: Sun, 08 Feb 2009 23:02:30 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE: External Lexer Languages on Notepad++ startup To: nore...@sourceforge.net Message-ID: <6377119.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=6377119 By: aathell posted updated diff against rev 419 ______________________________________________________________________ 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: Sun, 08 Feb 2009 23:38:03 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] More Features! To: nore...@sourceforge.net Message-ID: <6377327.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=6377327 By: yniq Hi Don/all, The new added commands: Switch to found results window (F7) Goto next/previous found result (F4/Shift+F4) are not documented in the changelog, and are also not on the menus so I thought I should mention them here. It's also possible to delete results (single or whole trees) from the results window by pressing the Delete key, or going to a found result by pressing the Enter key (equivalent to double-click) Yuval ______________________________________________________________________ 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: Sun, 08 Feb 2009 23:55:34 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] stylers.xml To: nore...@sourceforge.net Message-ID: <6377406.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=6377406 By: yniq Hi Don/all again, I'm not sure if it's only me but I don't think the stylers.xml file was updated correctly when installing v5.2 over a previous version. If you go to: 1. Settings->stylers configurator 2. Under language choose "Search result" (last one) 3. and under "Style:" you see that the style names are all capitalized ("DEFAULT", "SELECTED LINE", ... "KEYWORD2"), you are using the WRONG styles for the search results. In that case you need to update the 'LexerType name="searchResult"' section of the stylers.xml from stylers.model.xml stylers.xml is usually in: C:\Documents and Settings\<user name>\Application Data\Notepad++\stylers.xml and stylers.model.xml is usually in: C:\Program Files\Notepad++\stylers.model.xml Please correct me if I'm wrong. Regards, Yuval ______________________________________________________________________ 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: Sun, 08 Feb 2009 23:59:28 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] indent auto-wrapped lines To: nore...@sourceforge.net Message-ID: <6377430.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=6377430 By: x-btc-wx_26p if you have a line that's indepented + too long to fit in the current line and thus auto-wrapped the wrapped part should be indented just like the original line. example (numbers are line numbers, "_" stands for spaces) current behaviour: 1 _____test test test [auto-wrap] test test test 2 bla requested behaviour: 1 _____test test test [auto-wrap] _____test test test 2 bla Here's a screenshot of the requested behaviour in Textpad: http://img9.imageshack.us/img9/5715/clipboardimagenc3.png Would be nice if this could be added. ______________________________________________________________________ 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, 09 Feb 2009 00:16:00 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] improved auto-indention with curly brackets To: nore...@sourceforge.net Message-ID: <6377535.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=6377535 By: x-btc-wx_26p In many languages (perl, php, tcl, ..) curly brackets are used for "sections" (the correct word won't come to my mind right now but I guess you know what I mean). Many people indent the content of those sections by 1 tab. I'd ask for NotePad++ to do this automatically, e.g. I type "function test() { [ENTER]" and then the cursor is automatically indented 1 tab. When typing "} [ENTER]" it should in the same way decrease the indention. Hope you get what i mean. Idea "stolen" from Textpad so check that one to see how it works. ______________________________________________________________________ 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, 09 Feb 2009 00:53:09 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE: How to put tea break screen? To: nore...@sourceforge.net Message-ID: <6377709.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=6377709 By: janschreiber That should be a system-wide feature, not something inside an editor. Sorry, Shamun, but most of your posts look pretty useless to me. ______________________________________________________________________ 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, 09 Feb 2009 01:02:09 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE: XML Tools plugin 2.3.1 Unicode (alpha r670) To: nore...@sourceforge.net Message-ID: <6377764.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=6377764 By: hootie88 This is a very important plugin that I use very often on a daily basis. It's the only reason holding me back in moving to N++ 5.2 or any Unicode version. Any help with getting this plugin to work with Unicode version of N++ would be greatly appreciated. Leslie ______________________________________________________________________ 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: 8 Date: Mon, 09 Feb 2009 01:29:04 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Vista 64-bit sp2...what file do i download To: nore...@sourceforge.net Message-ID: <6378018.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=6378018 By: jaloola People have used Notepad++ for a long time on 64-bit machines... All they do is download the latest .exe installer file at: https://sourceforge.net/project/downloading.php?group_id=95717&use_mirror=&filen ame=npp.5.2.Installer.exe&78124283 Wow! They just released 5.2 today, so it's time for me to upgrade.. Anyways, then install it into your Program Files (x86) folder, use the 32-bit programs runtime/folder. Voila! Notepad++ is installed... Allen Zhu allen.jalo...@gmail.com ______________________________________________________________________ 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, 09 Feb 2009 01:49:25 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: improved auto-indention with curly brackets To: nore...@sourceforge.net Message-ID: <6378113.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=6378113 By: janschreiber This exists already. Search for NppAutoIndent. ______________________________________________________________________ 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, 09 Feb 2009 01:51:47 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Notepad++ .txt filetype association broken To: nore...@sourceforge.net Message-ID: <6378123.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=6378123 By: jaloola Forgot all about this thread, very late reply from you... Why don't you use this method as explained on the Notepad++ website? 1) Go to http://notepad-plus.sourceforge.net/uk/site.htm 2) Click on Download 3) Scroll down till you pass the last plugin and you'll see the heading Notepad Replacement. 4) Try that. On my side note, backup your Notepad from each of the following directories into a zip file, and make sure you know which on came from which folder because you never know what Microsoft did... Hope this helps and works, never tried it myself... If not, tell me and I'll try and help! Allen Zhu allen.jalo...@gmail.com ______________________________________________________________________ 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 ------------------------------ ------------------------------------------------------------------------------ Create and Deploy Rich Internet Apps outside the browser with Adobe(R)AIR(TM) software. With Adobe AIR, Ajax developers can use existing skills and code to build responsive, highly engaging applications that combine the power of local resources and data with the reach of the web. Download the Adobe AIR SDK and Ajax docs to start building applications today-http://p.sf.net/sfu/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 33, Issue 20 *************************************************