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 - Open Discussion] RE: RegEx (SourceForge.net)
   2. [notepad-plus - Plugin Development] RE:   FTP_synchronize
      0.9.5.2 (SourceForge.net)
   3. [notepad-plus - Open Discussion] RE: Highlight    problems with
      CSS (SourceForge.net)
   4. [notepad-plus - Plugin Development] RE:   FTP_synchronize
      0.9.5.2 (SourceForge.net)
   5. [notepad-plus - Plugin Development] RE:   FTP_synchronize
      0.9.5.2 (SourceForge.net)
   6. [notepad-plus - Open Discussion] RE: Highlight    problems with
      CSS (SourceForge.net)
   7. [notepad-plus - Help] RE: Any way to default to   a certain
      template? (SourceForge.net)
   8. [notepad-plus - Open Discussion] RE: "DonHo"      should be fired
      (SourceForge.net)


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

Message: 1
Date: Sat, 05 Jan 2008 07:20:34 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        RegEx
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=4705244
By: nobody

I also want to include that it has support for:
\d for digits, \D for non-digits, \w for words, \W for non-words, \s for space,
and \S for non-space and probably others.
but unfortunately doesn't support:
{number} for specifying a certain amount such as [A-Z]{3} meaning find exactly
3 contiguous characters that are in the range of A-Z. So, yeah, as one of the
previous posts mentioned, you will have to write our [A-Z][A-Z][A-Z]. But there
is another use for a number in {}. If you want to specify a range from a low
number to a high number of matches. So for example, [A-Z]{3,5} will match 3,
4, or 5 contiguous characters in the range of A-Z. Since NP++ doesn't support
? for optional characters nor |, I don't see a simple way of expressing this.
So this should definitely be looked into and support should be added.

______________________________________________________________________
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: Sat, 05 Jan 2008 07:22:04 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        FTP_synchronize 0.9.5.2
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=4705245
By: donho

I did some tries to reproduce the bug, and I see the problem more clearly.

Firstly, IMO the ini file should be read when user launch FTP_synchronize, it'll
save the Notepad++ launch time.
Secondly, I compare the behaviours between Explorer plugin and FTP_synchronize
:
Both plugin try to write their settings in %APPDATA%\Notepad++\plugins\Config\,
that's good.
But Explorer acts smarter when writting settings fails - it just uses the hard
coded default value.

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: 3
Date: Sat, 05 Jan 2008 07:24:16 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Highlight       problems with CSS
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=4705248
By: nobody

Is anyone experiencing this same problem and just didn't post? At least I could
know if I am not the only one and this is an issue with NP++ and not something
on my 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: 4
Date: Sat, 05 Jan 2008 07:53:38 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        FTP_synchronize 0.9.5.2
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=4705268
By: nobody

Well, FTP_s only falls back to the hardcoded default (which is the same dir
as the DLL) when NPPM_GETCONFIGDIR fails for some reason, since I would expect
that dir to be valid. FTP_s now creates the dir like explorer tries, although
explorer doesnt do that when 2 or more parent directories dont exist
(::CreateDirectory fails of the parent doesnt exist, I wrote a routine around
it). In the explorer source I do not see any hardcoded value btw.

Most of the ini gets read at launchtime in setInfo (its a few function calls
deep), since setInfo gets called at launchtime (part of the loading routine
afaik). Saving happens both during runtime and exit, depending on what changed
(profiles are runtime).
I think explorer and FTP_s do it exactly at the same time.

-Harry

______________________________________________________________________
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: Sat, 05 Jan 2008 07:56:47 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        FTP_synchronize 0.9.5.2
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=4705271
By: nobody

Woops, read your first comment wrong, I thought you meant the other way around
:).
I could probably do something like that, I'll take a look at it. I dont think
it makes too much of a difference though, unless we talk network drive/USB 
stick.
But that makes Notepad hang for a short moment when the user opens FTP_s which
I personally would like to avoid.

______________________________________________________________________
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: Sat, 05 Jan 2008 07:59:32 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Highlight       problems with CSS
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=4705273
By: nobody

This is more of a Lexer issue which comes from the Scintilla part of Notepad++.
It probably has to be upgraded sometime but I'm not sure if that will fix your
problem. And I don't think you're the only one, if the syntax matches everyone
has it.

Maybe its better to put the CSS in a seperate file anyway for maintainability ;)

______________________________________________________________________
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: Sat, 05 Jan 2008 08:06:10 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Any way to
        default to      a certain template?
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=4705281
By: nobody

Hey, thanks everyone for chiming in on this.

Before I made it back here again to read the new suggestions, I actually did
create a basic template and saved it on my hard drive and then moved it up into
the favorites in the explorer lite sidebar plugin. This seemed to be the most
convenient way to do it.

I'll do some more investigating on the simple script plugin. I've never heard
of it before now.

Thanks again.

______________________________________________________________________
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: Sat, 05 Jan 2008 08:08:03 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        "DonHo" should be fired
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=4705283
By: nobody

In response to the post that starts out with @trpplayer79, do you have any idea
how hard programming an application can be? Probably not since by your post
it is clear that you are not a programmer. I agree that you still have a right
to constructive criticism but the original post on here was in no way 
constructive.
I think that is the main reason everyone is so hyped up to defend NP++. If you
want to post about bugs then go right ahead but at least point out what they
are and maybe how to reproduce the error. I don't know any programmer that can
read a post that says something like "This program is SO buggy that it's barely
usable" and then say to themselves, "I know exactly what he is talking about,
let me get on that right away!" I mean seriously, saying something like that
is just asking for opposition.
As to your comment about other applications having a large number of people
working on it, I really don't see how that is any of Don Ho's fault. Should
he be recruiting? Should he have some large sign on the homepage offering people
money or something? Sure I agree there are open source projects with various
people working on them and making progress but do note that those people are
volunteers that felt the need to help. You can't force people to help out on
a project so I really don't see how this is a fault of NP++ or Don Ho. In fact,
look at it this way. If this program was as buggy as the original comment said
it was, don't you think there would be more people helping out? I mean by the
number of posts on this forum, you can safely conclude that there are a good
number of people who use this editor so if it was that buggy, one of two things
would happen. Either A) More people would be helping out on fixing these bugs
or B) there wouldn't be so many posts as people would just use something else.
In conclusion, yes you do have a right to post constructive criticism but you
don't have a right to be an ass!

______________________________________________________________________
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: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/

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

_______________________________________________
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 20, Issue 24
*************************************************

Reply via email to