Send Notepad-plus-plus mailing list submissions to
        [email protected]

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 - Plugin Development] RE: New       Plugin available:
      FTP_synchronize (SourceForge.net)
   2. [notepad-plus - Help] RE: "*" ??? (SourceForge.net)
   3. [notepad-plus - Plugin Development] RE: New       Plugin available:
      FTP_synchronize (SourceForge.net)
   4. [notepad-plus - Help] RE: Hard to explain:        Cursor remembers
      placeme (SourceForge.net)
   5. [notepad-plus - Help] RE: Copy content of "Find   result"
      window to e (SourceForge.net)
   6. [notepad-plus - Help] RE: Custom defined Lang:    Regex for
      Numbers? (SourceForge.net)
   7. [notepad-plus - Help] RE: Ruby Blue Theme Problem
      (SourceForge.net)
   8. [notepad-plus - Help] RE: Custom defined Lang:    Regex for
      Numbers? (SourceForge.net)
   9. [notepad-plus - Help] RE: Notepad++ For LINUX (SourceForge.net)
  10. [notepad-plus - Help] Change Ctrl+MouseWheel (SourceForge.net)
  11. [notepad-plus - Open Discussion] RE: Go to        another view why
      just horizontal? (SourceForge.net)
  12. [notepad-plus - Plugin Development] RE: A stupid question by
      a newbie (help, please) (SourceForge.net)
  13. [notepad-plus - Plugin Development] RE: New       Plugin available:
      FTP_synchronize (SourceForge.net)


----------------------------------------------------------------------

Message: 1
Date: Tue, 11 Sep 2007 17:18:10 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        New     Plugin available: FTP_synchronize
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=4513511
By: donho

Harry,

Strangely, I can not reproduce the crash at all (With AMD 64 Dual core 2.21
Ghz + 2 GB memory + 32 bits vista).

The Plugin Manager of Notepad++ does 2 things essentially : 
1. Load dlls after its launch.
2. Free dlls before it quits.

It means you should do all initialization on the DLL_PROCESS_ATTACH (that you
do it well) and all the clean up on the DLL_PROCESS_DETACH.

After a quick view Ftp_Synchronize source code, I can imagine such scenario :
- User clicks close button of Notepad++.
- Plugin Manager unloads each plugin, including Ftp_Synchronize.
- Ftp_Synchronize do a clean up without waiting all threads terminated.

so I have 2 suggestions :
1. First of all, remove all the cleanup (including "delete") in 
DLL_PROCESS_DETACH,
then see if the crash still happens.
2. Try to wait for all the thread terminates in DLL_PROCESS_DETACH by using
a Mutex.

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: 2
Date: Tue, 11 Sep 2007 17:44:37 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: "*" ???
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=4513542
By: pshute

Using the advanced find/replace (control+R), with regex enabled:
Find: ".*"
Replace: "Mobiles Radar 50 km/h"

That will change even lines where something other than "6543 M50; Laser; Rtg.
Italien NAUDERS" is contained within the "".  Is that what you meant?

If so, and if every field is the same width in each line, then you could also
try the new column mode (alt+C) and simply type in the replacement text.  
Requires
version 4.2.2, I think.

______________________________________________________________________
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, 11 Sep 2007 18:11:54 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        New     Plugin available: FTP_synchronize
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=4513569
By: harrybharry

I have removed every single plugin and used a fresh installation and still the
crash sometimes occurs. When I run the app from the debugger, the callstack
shows GDI32, kernel32 and gdi32 in that order, but nothing more (the actual
break has no sourcecode). When I run Win32DASM over GDI32.dll at the given 
address
at the stack, I see MultiByteToWideChar with reference to kernel32, so it seems
that some GDI function gets some ascii string which it wants to convert to 
unicode
(because its winXP) but it goes wrong somewhere? Do you know of any GDI function
that wants a string?

______________________________________________________________________
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: 4
Date: Tue, 11 Sep 2007 18:17:42 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Hard to
        explain:        Cursor remembers placeme
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=4513578
By: pshute

So you just want to add // in front of some lines?

You could press Home and Down at the same time with your left hand, then //
with your right hand. That would get you quickly through the changes.

You could try the new column mode (alt+c) in v4.2.2, but that would add them
to the blank lines too.

You might be able to create a regex expression to do this with find/replace,
then you'd just have to click Find or Repl&FindAgain each time.

______________________________________________________________________
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: Tue, 11 Sep 2007 18:30:58 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Copy content of
        "Find   result" window to e
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=4513588
By: pshute

I'll confirm again that it does work for me with v4.2.2.  I used Find In Files
to get some results in the window.  Then I clicked in the window and pressed
control+A then control+C.  Then I clicked in editing window and pressed 
control+V,
and the results were pasted in.

I'm using windows XP.

______________________________________________________________________
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, 11 Sep 2007 18:48:21 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Custom defined
        Lang:   Regex for Numbers?
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=4513598
By: pshute

Sorry, I completely misunderstood the question. I doubt you can fix it, but
I don't know for sure.  I've never come across a language where you can do that
before (not knowingly, anyway).  I guess you could just remove the underscores
- they're optional, aren't they?

Other than that, I think it would be a programming job.

______________________________________________________________________
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: Tue, 11 Sep 2007 18:52:05 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Ruby Blue Theme
        Problem
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=4513601
By: nobody

To change the theme you must overwrite the stylers.xml file in your appdata
folder, not the actual Notepad++ installation directory.  In some ways you can
access this using a browser and going to c > Documents and Settings > user >
appdata > Notepad++

Or, even more simply: Click Start > click Run > enter: %APPDATA%\Notepad++

After entering %APPDATA%\Notepad++ in the run dialogue, a folder will open in
front of you containing a stylers.xml file.  That is the file you need to 
replace
with the Ruby Blue stylers.xml file.

Hope this helps

______________________________________________________________________
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, 11 Sep 2007 19:10:16 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Custom defined
        Lang:   Regex for Numbers?
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=4513621
By: pshute

Actually, I just entered some numbers into a file set to C language, and it
made 1_000_000 all red.  It seems like it knows to treat underscores as digits
for some languages.  It doesn't do it for VB, so it's language specific.  No
idea whether this is configurable or is hard coded.

______________________________________________________________________
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: Tue, 11 Sep 2007 19:17:23 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Notepad++ For
        LINUX
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=4513630
By: nobody

Pretty much none.

The HEX editor messes up on highlighting properly, but that's about it really.

______________________________________________________________________
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: 10
Date: Wed, 12 Sep 2007 00:31:46 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Change
        Ctrl+MouseWheel
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=4513926
By: nobody

Is there any way to change this control not to be zoom in/out, but next/previous
page (not tab, but page... like in Delphi). Thanx

______________________________________________________________________
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: 11
Date: Wed, 12 Sep 2007 00:56:12 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Go
        to      another view why just horizontal?
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=4513952
By: nobody

Thank you very much!

______________________________________________________________________
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: 12
Date: Wed, 12 Sep 2007 02:48:17 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE: A
        stupid question by a newbie (help, please)
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=4514122
By: nobody

This plugin has not the latest file versions. To get the latest one, please
have a look to the Common folder here:

http://npp-plugins.cvs.sourceforge.net/npp-plugins/NppPlugins/

Best Regards
Jens

______________________________________________________________________
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: 13
Date: Wed, 12 Sep 2007 02:54:35 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        New     Plugin available: FTP_synchronize
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=4514132
By: nobody

Remove FunctionList plugin and I think you should get rid of this issue. I 
remember
Don told me that it sometimes crash on shut down during it. Please tell me if
I am correct.

Best Regards
Jens

______________________________________________________________________
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



------------------------------

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/

------------------------------

_______________________________________________
Notepad-plus-plus mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus


End of Notepad-plus-plus Digest, Vol 16, Issue 29
*************************************************

Reply via email to