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] RE: Another "Replace Tabs by Space" (SourceForge.net) 2. [notepad-plus - Plugin Development] TextFX: Autoclose Brace suggestion (SourceForge.net) 3. [notepad-plus - Help] RE: Another "Replace Tabs by Space" (SourceForge.net) 4. [notepad-plus - Plugin Development] RE: Plugins submenu (SourceForge.net) 5. [notepad-plus - Open Discussion] Indentation with space using hot key (SourceForge.net) 6. [notepad-plus - Open Discussion] RE: Indentation with space using hot key (SourceForge.net) 7. [notepad-plus - Help] Creating tags for the source code (SourceForge.net) 8. [notepad-plus - Open Discussion] RE: Indentation with space using hot key (SourceForge.net) ---------------------------------------------------------------------- Message: 1 Date: Thu, 06 Nov 2008 10:32:26 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Another "Replace Tabs by Space" 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=5587537 By: xmetal Yes airdrik, this is exactly what I wanted. And now I know, why I was so sure notepad++ offered that (without ever having used it, just saw it in options). So if there is no solution, I can change the several thousand occurances whenever I meet them. I just hate doing manual work when there is a reasonable way to do it. ______________________________________________________________________ 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: Thu, 06 Nov 2008 10:32:59 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] TextFX: Autoclose Brace suggestion 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=5587545 By: dv__ Currently TextFX autocloses braces for some programming laguages, and the right (closing) brace is placed on the next line following the left (opening) brace. The suggestion: autoclose braces for non-programming languages by adding the right brace on the same line where the left brace is. For example, .c file (current implementation): "{" turns to {| } For example, txt file (suggested implementation): "{" turns to {|} where | is the caret position. ______________________________________________________________________ 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: 3 Date: Thu, 06 Nov 2008 10:35:16 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Another "Replace Tabs by Space" 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=5587557 By: xmetal Thx for the pointer with the column position. Should be solveable with a few c++ lines. ______________________________________________________________________ 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: Thu, 06 Nov 2008 10:41:40 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE: Plugins submenu 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=5587598 By: zobo Hi Harry. This is what I figured too, but the problem with this is, I have a dynamic number of items in this submenu. As I can "pre generate" a number of items like you suggested and perhaps get away with it, the API interface requires me to create a new function for each item callback. If only N++ would pass the CmdID with the function call (hint hint, improvement!). Anyway, I was hoping to avoid this, any other ideas? I'd just love to get the WM_COMMAND from N++ over the plugin API (same way get WM_CREATE for example)... Thanks. -Zobo ______________________________________________________________________ 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: Thu, 06 Nov 2008 10:53:44 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Indentation with space using hot key 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=5587663 By: sonniger "Notepad++" - it good editor. But here I'm not found one important option - move chosen text on given number of space to left or right using hot key (in "Delphi", for example, it "Shift+Ctrl+I" and "Shift+Ctrl+U"). Example: /* before move */ ---------------------- DECLARE N1 NUMBER; BEGIN SELECT 10 INTO N1 -- before move (2 rows is selected) FROM dual; -- before move (2 rows is selected) END; /* after move */ ---------------------- DECLARE N1 NUMBER; BEGIN SELECT 10 INTO N1 -- after move (2 rows is selected) FROM dual; -- after move (2 rows is selected) END; ______________________________________________________________________ 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: Thu, 06 Nov 2008 10:57:00 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Indentation with space using hot key 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=5587677 By: sonniger little remark /* after move */ ---------------------- DECLARE N1 NUMBER; BEGIN [2 space] SELECT 10 INTO N1 -- after move (2 rows is selected) [2 space] FROM dual; -- after move (2 rows is selected) END; ______________________________________________________________________ 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: Thu, 06 Nov 2008 12:30:39 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Help] Creating tags for the source code 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=5588182 By: mallikaarjuna24 Is it possible to create tags to the source code (C & TCL) using notepad++ ? vim like tags will ease the code browsing. Please let me know if this is possible with any of the existing versions.. ______________________________________________________________________ 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: Thu, 06 Nov 2008 13:08:53 +0000 From: "SourceForge.net" <[EMAIL PROTECTED]> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Indentation with space using hot key 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=5588373 By: janschreiber Use the <tab> key. ______________________________________________________________________ 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 30, Issue 14 *************************************************