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 - Open Discussion] RE: Notepad++ v5.1.3 new release (SourceForge.net) 2. [notepad-plus - Help] Count? (SourceForge.net) 3. Re: [notepad-plus - Help] Count? (Thell Fowler) 4. Re: [notepad-plus - Plugin Development] Externallexer language type to name? (Thell Fowler) 5. [notepad-plus - Help] Loading from Desktop via Shell Extension (SourceForge.net) 6. [notepad-plus - Open Discussion] Notepad++ & Excel (SourceForge.net) 7. [notepad-plus - Help] 5.1.3 and .NFO files hang? (SourceForge.net) 8. [notepad-plus - Help] RE: Loading from Desktop via Shell Extension (SourceForge.net) ---------------------------------------------------------------------- Message: 1 Date: Tue, 30 Dec 2008 19:18:40 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Notepad++ v5.1.3 new release To: nore...@sourceforge.net Message-ID: <5935173.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=5935173 By: beholder4096 Hi Don, these bugs found their way to NPP 5.1.3: (caret disappears, text viewport jumps up) https://sourceforge.net/forum/message.php?msg_id=5641943 (wrong HTML highlighting when cursor in the tag) <input type="checkbox" name="iAdditionalAddress" value="1" checked onclick="unhideAdditional( 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=331753 ------------------------------ Message: 2 Date: Tue, 30 Dec 2008 20:05:24 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] Count? To: nore...@sourceforge.net Message-ID: <5935574.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=5935574 By: jbiwer Is it possible to count the number of a certain character (ie. commas) in a given line? If so, how? 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: 3 Date: Tue, 30 Dec 2008 20:56:18 +0000 (UTC) From: Thell Fowler <th...@almostautomated.com> Subject: Re: [Notepad-plus-plus] [notepad-plus - Help] Count? To: notepad-plus-plus@lists.sourceforge.net Message-ID: <82877cf44a7bb8cb38a5e7a3f...@news.gmane.org> Content-Type: text/plain; charset=iso-8859-1; format=flowed Select the line; CTRL-F; put in the character to search for (in this example a comma) check style found token, confirm the check for 'In selection'; then click on 'Find All' and a dialog will show up telling you how many matches are found. The 'Count' counts all in the document. To clear the Style found token click OK in the dialog that told you how many matches there were and click the 'Clear' button. That's it. ------------------------------ Message: 4 Date: Tue, 30 Dec 2008 23:34:56 +0000 (UTC) From: Thell Fowler <th...@almostautomated.com> Subject: Re: [Notepad-plus-plus] [notepad-plus - Plugin Development] Externallexer language type to name? To: notepad-plus-plus@lists.sourceforge.net Message-ID: <82877cf44a85a8cb38bc1113b...@news.gmane.org> Content-Type: text/plain; charset=iso-8859-1; format=flowed Looks like this might work: Using a call to SCI_GETLEXER (which should return SCLEX_AUTOMATIC + langID) on the first colourise call within the plugin and then storing that allows any subsequent notifications to be compared to the langID before being acted on. No name needed. ------------------------------ Message: 5 Date: Tue, 30 Dec 2008 21:29:11 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] Loading from Desktop via Shell Extension To: nore...@sourceforge.net Message-ID: <5936369.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=5936369 By: orbulus Whenever I try to open HTML files (and these only) on my desktop by right-clicking and choosing "Edit with Notepad++," the program cranks out an error that says "C:\Documents doesn't exist. Create it?" then... "C:\Documents and Settings\User\Desktop \and doesn't exist. Create it?" If I click "No" on both, it simply refuses to open the HTML document I requested. If I click "Yes" on the first, it creates a file named "Documents" in drive C. If I click "Yes" on the second, it creates a file named "and" on my desktop. ....and still refuses to open the HTML file. This sounds like the program is oddly unable to read spaces in file folder locations... ______________________________________________________________________ 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: Tue, 30 Dec 2008 22:52:41 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Notepad++ & Excel To: nore...@sourceforge.net Message-ID: <5937206.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=5937206 By: redhairedgirl I use Notepad++ that allows a more clear (elegant) way to edit/ visualize script like this function changeImages() { if (document.images) { for (var i=0; i<changeImages.arguments.length; i+=2) { document[changeImages.arguments[i]].src = eval (changeImages.arguments[i+1] + ".src"); } } } // END --> If I have a excel formula like =ISNUMBER(FIND(LEFT(B2,1), "AWFUY")) I can use ALT-Enter to place breaks in the cell to allow =ISNUMBER( FIND( LEFT(B2,1), "AWFUY") ) Is there a user defined language for Excel formulas? ______________________________________________________________________ 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: Tue, 30 Dec 2008 20:44:42 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] 5.1.3 and .NFO files hang? To: nore...@sourceforge.net Message-ID: <5935901.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=5935901 By: mkalisz Noticed one odd thing in the latest NP++ version: When opening a .NFO or open a text file and switch to "MS DOS Style" mode the editor will hang.... Anyone else seeing the behavior? Any hints how to slove this? Thanks in advance, Michael ______________________________________________________________________ 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: Tue, 30 Dec 2008 23:58:02 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Loading from Desktop via Shell Extension To: nore...@sourceforge.net Message-ID: <5937858.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=5937858 By: donho May I know if it's the first time to install Notepad++ v5.1.3 (I assume it's the latest version)? If you update your Notepad++ from an older version, how do you update it? 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=331754 ------------------------------ ------------------------------------------------------------------------------ ------------------------------ _______________________________________________ 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 31, Issue 62 *************************************************