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: ALL reserved keywords for PHP and JavaScript! (SourceForge.net) 2. [notepad-plus - Open Discussion] Column mode selection request (SourceForge.net) 3. [notepad-plus - Open Discussion] RE: Column mode selection request (SourceForge.net) 4. [notepad-plus - Open Discussion] RE: REQ: <strong>, <em> etc. shortcuts (SourceForge.net) 5. [notepad-plus - Plugin Development] RE: FILEBEFOREOPEN questions. (SourceForge.net) 6. [notepad-plus - Help] RE: NP++ 5.3: Highlighting Edited Lines (SourceForge.net) 7. [notepad-plus - Plugin Development] RE: insert plugin, a web edition... (SourceForge.net) 8. [notepad-plus - Plugin Development] RE: FILEBEFOREOPEN questions. (SourceForge.net) 9. [notepad-plus - Open Discussion] RE: Column mode selection request (SourceForge.net) 10. [notepad-plus - Open Discussion] RE: Can I use column numbers? (grid) (SourceForge.net) 11. [notepad-plus - Open Discussion] RE: Column mode selection request (SourceForge.net) ---------------------------------------------------------------------- Message: 1 Date: Fri, 27 Mar 2009 13:29:30 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: ALL reserved keywords for PHP and JavaScript! To: nore...@sourceforge.net Message-ID: <6983016.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=6983016 By: mayteks will the custom language work in multihighlighting like php? I mean, html/js/css/custom alltogether? ______________________________________________________________________ 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: Fri, 27 Mar 2009 13:48:26 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Column mode selection request To: nore...@sourceforge.net Message-ID: <6983244.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=6983244 By: vbjeff I would find it useful if you could select past the end of a line while in column mode. Here is an example of what I am talking about. If I have the following text: 12 123456 1234 123456789 12345 12 and I would like to select and copy up to the first 4 columns of data in all of the rows like this: 12 1234 1234 1234 1234 12 I can not do that with npp, I can only copy the first 2 columns like this: 12 12 12 12 12 12 because npp will not let me move the selection cursor past the end of the line. Other text editors allow selecting past the end of a line in column mode, but I like npp better and hope it will support this feature in the future. Thanks, Jeff ______________________________________________________________________ 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: Fri, 27 Mar 2009 14:59:43 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Column mode selection request To: nore...@sourceforge.net Message-ID: <6983807.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=6983807 By: janschreiber I second this request. Normally I don't like the cursor going past EOL, but in column selection mode this is most useful. ______________________________________________________________________ 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: Fri, 27 Mar 2009 15:06:46 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: REQ: <strong>, <em> etc. shortcuts To: nore...@sourceforge.net Message-ID: <6983997.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=6983997 By: alexiljin This dumb forum still adds double posts when I simply reload the page in browser. Anyway, I've finished the Unicode version of WebEdit. I'll upload it a bit later. ______________________________________________________________________ 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: Fri, 27 Mar 2009 15:12:27 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE: FILEBEFOREOPEN questions. To: nore...@sourceforge.net Message-ID: <6984181.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=6984181 By: aathell "...Notepad++ use this mechanism to filter SCN_MODIFIED by setting a flag "isFileOpening" before sending NPPN_FILEBEFOREOPEN and after sending NPPN_FILEOPENED. That does the trick " After looking at the Notepad_plus::doOpen routine it looks like there is a simple fix. Currently: isFileOpening gets set true. file is loaded into Scintilla ( which fires off its own notices ) A check is done on the validity of the buffer: - if good: - NPPN_FILEBEFOREOPEN is sent - file is loaded into a view - isFileOpening flag is reset - NPPN_FILEOPENED is sent - if invalid: - Pop-up message to user about the failure is shown - isFileOpening flag is reset. Would you be interested in a modification along the following lines? Proposed: isFileOpening gets set true. NPPN_FILEBEFOREOPEN is sent file is loaded into Scintilla ( which fires off its own notices ) A check is done on the validity of the buffer: - if good: - file is loaded into a view - isFileOpening flag is reset - NPPN_FILEOPENED is sent - if invalid: - Pop-up message to user about the failure is shown - isFileOpening flag is reset. - NPPN_FILEOPENFAILED is sent (<new message>) Looks like it would work without problems and would truly make the notification the first for a document. almostautomated ______________________________________________________________________ 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: Fri, 27 Mar 2009 15:30:47 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: NP++ 5.3: Highlighting Edited Lines To: nore...@sourceforge.net Message-ID: <6984307.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=6984307 By: omnilord Any type of file, it's all the same. Specifically, I am looking at a .php file right now. checking both the stylers.xml and the built-in editor all backgrounds are set to 000000 for php. I also work with javascript, html, perl, bash/shell, xml and other languages that all have this highlighting problem. Currently my configuration has no backgrounds set to white or near white. I went line-by-line in the stylers.xml file trying to find the color definition for this and it looks like there is not one. I do not have any background colors greater than a cyan, which is obviously closer to blue than white. I use Windows XP Pro, Windows XP Pro x64, Windows XP Media Center, Windows XP Home, and Vista Home Premium. Notepad++ 5.3 both RC1 and Final exhibit this highlighting. But, I did find how to reproduce the highlighting. I'm not positive, but I think it was already reported as a bug. If you uncheck "Line Change State Margin" in the "Edit Compotents" Tab under preferences it starts highlighting every edited line. I turned this off because it was distracting to have the edited marker in the margin, but it's worse without it because of the line highlighting. ______________________________________________________________________ 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: 7 Date: Fri, 27 Mar 2009 15:38:37 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE: insert plugin, a web edition... To: nore...@sourceforge.net Message-ID: <6984349.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=6984349 By: alexiljin WebEdit 1.3.2 is released. This is a minor update release, only adding a Unicode version of the plugin. No functionality changes. A direct download link (87 Kb): http://dfn.dl.sourceforge.net/sourceforge/npp-plugins/WebEdit1.3.2.zip For a list of SourceForge mirrors visit this page: http://sourceforge.net/project/showfiles.php?group_id=189927&package_id=280848&r elease_id=671436 ______________________________________________________________________ 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: Fri, 27 Mar 2009 16:20:32 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE: FILEBEFOREOPEN questions. To: nore...@sourceforge.net Message-ID: <6984838.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=6984838 By: donho I just noticed isFileOpening flag is not consistant. Instead of the following code ; _isFileOpening = true; BufferID buffer = MainFileManager->loadFile(longFileName); if (buffer != BUFFER_INVALID) { Buffer * buf = MainFileManager->getBufferByID(buffer); ... it will be : BufferID buffer = MainFileManager->loadFile(longFileName); if (buffer != BUFFER_INVALID) { _isFileOpening = true; Buffer * buf = MainFileManager->getBufferByID(buffer); ... OTOH, I don't see the purpose of NPPN_FILEOPENFAILED, since in this case file will not be loaded, therefore SCN_MODIFIED won't be generated. 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=482781 ------------------------------ Message: 9 Date: Fri, 27 Mar 2009 16:31:58 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Column mode selection request To: nore...@sourceforge.net Message-ID: <6984890.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=6984890 By: cchris TextFX -> TextFX Edit -> Pad rectangular selection with spaces Using an ordinary selection won't work, be sure to hold Alt while selecting. CChris ______________________________________________________________________ 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: Fri, 27 Mar 2009 16:40:36 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Can I use column numbers? (grid) To: nore...@sourceforge.net Message-ID: <6984961.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=6984961 By: cchris When you click right before the first character of the information string, doesn't this info show up in the status bar? If the clicks are a problem, you cn always make your own ruler and turn line numbers on in Preferences. The ruler could be in two lines of text: _________1_________2_________3__... 12345678901234567890123456789012... or any variant which you'd find z CChris ______________________________________________________________________ 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: Fri, 27 Mar 2009 17:13:44 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Column mode selection request To: nore...@sourceforge.net Message-ID: <6985175.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=6985175 By: vbjeff That does not do what I am asking for. It will fill in a selection to make it rectangular, but I can not make the selection as described in the first post. The only work-around I have figured out is to pad the first or last line with spaces up to the number of columns I want to copy, then use the padded line for the end point of my selection. ______________________________________________________________________ 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 ------------------------------ ------------------------------------------------------------------------------ ------------------------------ _______________________________________________ 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 34, Issue 63 *************************************************