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: OUCH!! NPPM_GETCURRENTSCINTILLA (SourceForge.net) 2. [notepad-plus - Help] 2 bugs and 1 freeze (my first try with NPP) (SourceForge.net) 3. [notepad-plus - Help] Convert paragraph to one line (SourceForge.net) 4. [notepad-plus - Open Discussion] RE: Vista bug? SetWindowsHookEx(KEYBOARD) failed (SourceForge.net) 5. [notepad-plus - Help] Notepad++ error "CreateProcess() failed" (SourceForge.net) 6. [notepad-plus - Open Discussion] RE: Column mode selection request (SourceForge.net) 7. [notepad-plus - Plugin Development] RE: Keyboard file switching plugin available (SourceForge.net) 8. [notepad-plus - Open Discussion] Problem with notepad++ and iexplorer (SourceForge.net) 9. [notepad-plus - Open Discussion] RE: Column mode selection request (SourceForge.net) 10. [notepad-plus - Open Discussion] RE: Column mode selection request (SourceForge.net) 11. [notepad-plus - Help] RE: Notepad++ error "CreateProcess() failed" (SourceForge.net) ---------------------------------------------------------------------- Message: 1 Date: Tue, 31 Mar 2009 15:34:04 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE: OUCH!! NPPM_GETCURRENTSCINTILLA To: nore...@sourceforge.net Message-ID: <7032927.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=7032927 By: aathell Actually, the previously posted code needed an edit, here's the modified routine in case anyone else had issues: // Update handle pointer to the currently active view. HWND updateCurrViewHandle() { static HWND hPrevCurrView; _bRefreshCurrViewH = false; int currentEdit; ::SendMessage(_hNpp, NPPM_GETCURRENTSCINTILLA, 0, (LPARAM)¤tEdit); if ( currentEdit != -1 ) { hPrevCurrView = ( currentEdit == 0 ) ? ( _hScintillaMain ): ( _hScintillaSecond ); } return ( hPrevCurrView ); } HWND hCurrView() { if ( _bRefreshCurrViewH || !_isReady ) { _hCurrView = updateCurrViewHandle(); } return _hCurrView; } HWND hAltView() { return ( ( hCurrView() == _hScintillaMain ) ? ( _hScintillaSecond ) : ( _hScintillaMain ) ); } ______________________________________________________________________ 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: Tue, 31 Mar 2009 15:44:24 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] 2 bugs and 1 freeze (my first try with NPP) To: nore...@sourceforge.net Message-ID: <7032976.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=7032976 By: sacharja 1. Autoscroll on mouse moving while selecting is not working if word wrap is used and the file has only one line (no new line characters). The following test file is such a file. 2. The file http://rapidshare.de/files/46452426/new_1.txt.html freezes NPP if you scroll to the end. The letters overlap and if you select sth. of these overlapping letters it freezes. Despite that it shows not the complete file. 3. Big files (~150MB and more) are not opened at all. That's sad because normally you just want to see the beginning or the end of such big files and that's no problelm for most text editors. The advanced ones reload the required data into RAM if the user scrolls within them. ______________________________________________________________________ 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, 31 Mar 2009 17:38:46 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] Convert paragraph to one line To: nore...@sourceforge.net Message-ID: <7033781.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=7033781 By: cliff2 Is this action available either natively or thru a plugin? ______________________________________________________________________ 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: Tue, 31 Mar 2009 18:18:34 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Vista bug? SetWindowsHookEx(KEYBOARD) failed To: nore...@sourceforge.net Message-ID: <7034061.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=7034061 By: leviathant Addendum: An alert sometimes appears that says GetLastError() Returned 1428 ______________________________________________________________________ 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: Tue, 31 Mar 2009 19:48:55 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] Notepad++ error "CreateProcess() failed" To: nore...@sourceforge.net Message-ID: <7034690.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=7034690 By: arseniciodide I'm fairly new to Notepad++, but I had used it on occasion a few months prior to wiping my computer. After re-installing it today I wrote a program and proceeded to compile when I ended up with the following error: CreateProcess() failed with error code 2: The system cannot find the file specified. I googled it, and searched the source forge forums for threads relating to this, but I couldn't find anything that pertained to it. I assume that it has to do with the environment variables, but if I didn't have to do anything about it last time, why should I have a problem now? Any help with this is greatly appreciated! ______________________________________________________________________ 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, 31 Mar 2009 19:51:20 +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: <7034711.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=7034711 By: donho > It has an item about allowing cursor to go past EoL. Could you point it out to me? I checked Scintilla online document but I found nothing. > ConText has been doing this for a long time anyway. Just checked Context as well, it seems to me that it does not use Scintilla. 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=331753 ------------------------------ Message: 7 Date: Tue, 31 Mar 2009 20:13:24 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE: Keyboard file switching plugin available To: nore...@sourceforge.net Message-ID: <7034833.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=7034833 By: davegb3 Sorry i misread your post, what ideas have you got for combining them? I can obviously make tab and shift tab move the listbox selection, but not sure thats more intuitive than just up and down. If you can explain what you meant i'll certainly have a go. Thanks again, 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=482781 ------------------------------ Message: 8 Date: Tue, 31 Mar 2009 20:51:19 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Problem with notepad++ and iexplorer To: nore...@sourceforge.net Message-ID: <7035143.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=7035143 By: aviramof i have recnetly noticed a problem with ie and mirana open source option the problem begen shortly after updating notepad++ the problem was that when i tried to use the option show source i would have open miranda or desktop directory instead of a txt file an first i thought it was caused by my recnet attempt to install explorer 8 but then i heard about a similer problem with ultra edit that the open source option lead to explorer.exe instead of notepad.exe or notepad++.exe any way i uninstalled notepad++ and the problem vanished into thin air so i just wanted to let you know about it so please fix it in the next notepad++ release and thanks in advance.:) ______________________________________________________________________ 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: 9 Date: Tue, 31 Mar 2009 22:01:05 +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: <7035564.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=7035564 By: fool4uanyway > Ummmm, Yeah you can do this stuff in other ways. > You could for example, just edit each line by hand. > That is not the point. Please explain to me how this is to be considered "constructive criticism". I don't see the use in yet another thread about things that have been requested long before. Poster reports a problem. I report a work-around. Thanks for pointing out this has no use! ______________________________________________________________________ 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: Tue, 31 Mar 2009 23:34:31 +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: <7036200.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=7036200 By: donho >> 1. With a column-selection active, if you hit >> backspace or delete, it clears the whole >> selection, but you then lose the selection. > It's an expected behaviour for me. It's still an expected behaviour for me. >> 2. With a zero-width column selection active, >> nothing you type appears anywhere. > zero-width selection should be used with column editor. zero-width column selection will allow user to insert any character. >> 3. An extension of #2 - when the column >> selection is more than zero characters, the >> entire box is filled with each character I hit, >> leaving me with a block of "c" if I type "abc". The expected behaviour will be in the next release. 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=331753 ------------------------------ Message: 11 Date: Tue, 31 Mar 2009 23:46:47 +0000 From: "SourceForge.net" <nore...@sourceforge.net> Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Notepad++ error "CreateProcess() failed" To: nore...@sourceforge.net Message-ID: <7036252.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=7036252 By: arseniciodide Never mind, problem solved! ______________________________________________________________________ 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 35, Issue 1 ************************************************