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: Close document with CTRL-F4 (SourceForge.net) 2. [notepad-plus - Help] RE: few questions about settings in n++ (SourceForge.net) 3. [notepad-plus - Help] RE: Tile notepad++ windows? (SourceForge.net) 4. [notepad-plus - Help] Replace some spaces by ", " regular expression (SourceForge.net) 5. [notepad-plus - Help] RE: Replace some spaces by ", " regular expression (SourceForge.net) 6. [notepad-plus - Help] RE: Replace some spaces by ", " regular expression (SourceForge.net) 7. [notepad-plus - Plugin Development] Math Plugin: ver. 0.0.4.4 released (Unicode) (SourceForge.net) 8. [notepad-plus - Help] RE: How do I insert DOS formfeed characters? (SourceForge.net) 9. [notepad-plus - Open Discussion] Shortcut mapper will not remap keys on Vista (SourceForge.net) ---------------------------------------------------------------------- Message: 1 Date: Wed, 01 Jul 2009 17:34:19 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Close document with CTRL-F4 To: nore...@sourceforge.net Message-ID: <7474315.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=7474315 By: davegb3 You can set this yourself in the shortcut mapper - from the settings menu. Just change the "close" option to Ctrl-F4 instead of the default Ctrl-W. Cheers, Dave. ______________________________________________________________________ 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: Wed, 01 Jul 2009 19:03:33 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: few questions about settings in n++ To: nore...@sourceforge.net Message-ID: <7474453.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=7474453 By: michalll Thanks for reply! <em>> 4 utf-8 in new files, no utf-8 as ascii (n++ saves utf-8 files without diacritic sings as ascii) Settings -> Preferences -> New Document/Open Save Directory, choose the encoding for new files there. </em> I know about it, but it doesn't work. Only when new file has diacritic signs np++ save it as utf8. If not, then np++ save it as ascii. So if i create new file without diacritic signs and save it and open and type diacritic signs and save it again then notepad save it as ascii - it is very uncomfortably. <em>> 6 viewing and editing CSV files by columns and by rows Well, this is a text editor and not a spreadsheet, mind you... You can always insert a ruler (a TextFX command) and use either the Column Editor (Edit menu) or use special typing mode in rectabgular selections. I don't know what you want to achieve. </em> Sometimes i need to quickly edit table in csv without excel or web, I dont know how could i ruler from TextFX and typing mode in rectangular. Please, tel me how? Where could check list of plugins and <strong> description how they works? best wishes ______________________________________________________________________ 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: Wed, 01 Jul 2009 19:12:59 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Tile notepad++ windows? To: nore...@sourceforge.net Message-ID: <7474467.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=7474467 By: joleg74 I can't see that page, 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=331754 ------------------------------ Message: 4 Date: Wed, 01 Jul 2009 19:58:57 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] Replace some spaces by ", " regular expression To: nore...@sourceforge.net Message-ID: <7474538.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=7474538 By: fool4uanyway >> " I don't know if that was the intended functionality or not, but it seems obvious to me that text which is selected when an operation is initiated should remain selected while that operation is taking place. The behaviour you pointed out (selected text becoming invisibly unselected) seems very counter-intuitive to me. " << Well, some things that do not work as expected may turn out helpful in other situations. If you know (the causes of) awkward behavior, you might get to know how to evoke it and make use of it. The same goes for regular expressions and the "hidden" ability for Notepad++'s regex engine to perform multiline operations (on some occasions). >> " Selecting just the column of spaces and using Alt-C as you suggest did exactly what I needed. ... In hindsight, it would have been quicker to do it this way... :P " << Well, cutting, copying and pasting Column Block Selections may work very, very slow in Notepad++, although I'm not sure if the same goes for the Column Editor. I'd go for using a regex to do what you want, to perform as much operations as possible in one pass, whether your layout is fixed (where Alt+C might also do), or non-fixed. If you want those columns xyz 123 abc def starting from position 11 to be converted to "xyz","123","abc def" you could use the following regular expression in the Find field ^(..........)([^ ]+) ([^ ]+) ([^ ]+ ([^ ]+) and enter the following expression in the Replace field \1"\2","\3","\4" This regex just "expects" to always have a space character in the third column: ^ ___________ search from/for the start of the line (..........) _ search and find the first ten characters, remember these as the first grouped expression [^ ]+ _____ search for any consecutive string of non-space characters _ _______ search for a space character ([^ ]+ ([^ ]+) _ remember the next two words as the fourth grouped expression ("column 3") You might add $ to the regex to (search for the) end (of) the line if column 3 is the last column on the line. \1 ____ Re-place the first grouped expression, i.e. the first ten characters " _____ Insert " before the first column \2 ____ Re-place the second grouped expression, i.e. the first column (xyz) "," ____ This is what you want the space character(s) to be replaced by \3 ____ second column (123) \4 ____ third column (abc def) " _____ append " to the third column Of course, you can do this with (almost) any number of columns. ______________________________________________________________________ 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: 5 Date: Wed, 01 Jul 2009 20:14:43 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Replace some spaces by ", " regular expression To: nore...@sourceforge.net Message-ID: <7474560.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=7474560 By: fool4uanyway If you text layout has fixed numbers of columns / positions, you could simply use the corresponding number of dots in the regular expression: Find: ^(..........)(...) (...) (... ...+) This regex will also do if there are trailing spaces in the columns, which won't be accepted by the [^ ] expression. 123 xyz abc def 12_ x__ ab d___ If there are trailing spaces, but you won't need or want to keep them, you could remove them as well in a single pass. Just add a + sign after each column separating space character. Find: ^(..........)([^ ]+) +([^ ]+) +([^ ]+ ([^ ]+) ______________________________________________________________________ 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: Wed, 01 Jul 2009 20:19:51 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Replace some spaces by ", " regular expression To: nore...@sourceforge.net Message-ID: <7474565.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=7474565 By: fool4uanyway > If you text layout has fixed numbers of columns / positions, you could simply > use the corresponding number of dots in the regular expression: > > Find: > ^(..........)(...) (...) (... ...+) Of course, this should have been ^(..........)(...) (...) (.......) Not a + at the end, and just a dot for each character, if the space characters can also be at any position in the third column (or aren't present at all). ______________________________________________________________________ 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: Wed, 01 Jul 2009 21:21:01 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] Math Plugin: ver. 0.0.4.4 released (Unicode) To: nore...@sourceforge.net Message-ID: <7474666.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=7474666 By: somic Link: http://www.semelinanno.com/downloads/anmxnpp/anmXNpp_Page.html Revision: v 0.0.4.4 - some bugs fixed (thanks to fabio - countdown) - Options menu no working - added a feature (Hide Expr Line) Thanks to fabio (countdown) for bugs remark. Somic ______________________________________________________________________ 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: Thu, 02 Jul 2009 01:37:33 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: How do I insert DOS formfeed characters? To: nore...@sourceforge.net Message-ID: <7474939.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=7474939 By: normanheyen Thanks CChris, This did what you said but not really what I needed. What I have is the output from an AS400 that has been formatted so that it will print correctly on 'green bar' paper. It appears there are a different number of lines per page and I've been requested to convert this to a PDF with the page breaks matching the actual pages. The original file has the characters FF in inverse type (black background, white text) that I assumed was a formfeed. But when I convert to PDF, this seems to be ignored. Using the \x012, the FF gets converted to a DC2 (also inverted) and this to is ignored by Adobe Acrobat 7. Maybe I'm just not asking the right question. How can I convert this to match the report format to a PDF without having Page xxx in the middle of a display page? I'm at a loss and not sure what else to try. Thanks again, and sorry for the delay. I spent the last 8 hours in a conference room staring at PowerPoint slides. Maybe my brain is just in deep coma but it doesn't seem to be as simple as I hoped. Norman ______________________________________________________________________ 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: Thu, 02 Jul 2009 01:39:28 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Shortcut mapper will not remap keys on Vista To: nore...@sourceforge.net Message-ID: <7474942.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=7474942 By: jive01 Hello all, I am using both windows Vista and Windows 7 and every time I make a change in the shortcut mapper, the short cut only gets changed during that notepad++ session. When I re-open notepad++, my shortcuts are no longer configured and revert back the way they were.... Thanks for any 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=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 38, Issue 12 *************************************************