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 - Open Discussion] RE: Boycott Beijing 2008?
why? (SourceForge.net)
2. [notepad-plus - Help] RE: "Find" bug (seems serious...)
(SourceForge.net)
3. [notepad-plus - Open Discussion] Escape chars in user
language (patch included (SourceForge.net)
4. [notepad-plus - Help] RE: Does Update = Lose all
configuration? (SourceForge.net)
5. [notepad-plus - Plugin Development] Edit timecode in
subtitle-files (.srt) (SourceForge.net)
6. [notepad-plus - Plugin Development] RE: Plugin: NPPTextFX
(SourceForge.net)
7. [notepad-plus - Plugin Development] RE: Plugin: NPPTextFX
(SourceForge.net)
8. [notepad-plus - Plugin Development] RE: About the last update
NPP version exist BUG. (SourceForge.net)
9. [notepad-plus - Plugin Development] RE: Edit timecode in
subtitle-files (.srt) (SourceForge.net)
10. [notepad-plus - Help] RE: "Find" bug (seems serious...)
(SourceForge.net)
11. [notepad-plus - Help] RE: Does Update = Lose all
configuration? (SourceForge.net)
12. [notepad-plus - Open Discussion] RE: Boycotting NotePad++ in
China (SourceForge.net)
----------------------------------------------------------------------
Message: 1
Date: Thu, 17 Apr 2008 21:17:22 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Boycott Beijing 2008? why?
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=4912373
By: yenoh
TO anyone who wants to Free Tibet,
Do you know the truth about Tibet?
If you believe so, check your source again and from different angles.
I am not implying that you should believe what the Chinese says,
but question yourself before you bark our loud.
If you are Americans, let's talk about native Indians first! Then Iraq, etc.
If you are Africans, let's talk about AIDS, clean water, etc.
If you are Europeans, then we have a very long history.
If these are not the case, you might come from Australinea
and I suggest you visit Tibet and come back here.
______________________________________________________________________
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: Thu, 17 Apr 2008 22:06:27 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: "Find" bug
(seems serious...)
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=4912415
By: nobody
Dunno where this should be put, but there's also a bug in the Find/Replace
function
in that it freaks out with Unicode characters, even though "regular" Notepad
can handle it fine... I still stick to NP++, but its annoying to do a mass
copy-paste
to another program just to fix a Unicode character replacement...
______________________________________________________________________
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: Thu, 17 Apr 2008 22:53:17 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Escape
chars in user language (patch included
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=4912461
By: neclepsio
Hi everyone.
I've just started using Notepad++ and find it wonderful. I found a problem in
user language syntax hilighting because it does not allow escape characters
in strings (as in " \" "). I modified the lexer to allow them (patch attached),
but I did not provide a patch for the user interface. You have to modify
userDefineLang.xml to include the escape chars at the end of the delimiters
(so that, for example, you have the value <"00"00\00>). I hope the setting is
not lost when modifying the definition using the GUI.
I hope I have been useful.
Thank you,
Ignazio
---
--- LexUser.cxx.orig 2008-02-10 00:08:36.000000000 +0100
+++ LexUser.cxx 2008-04-17 15:25:20.723681800 +0200
@@ -238,11 +238,13 @@
char delimOpen[3];
char delimClose[3];
-
+ char delimEscape[3];
+
for (int i = 0 ; i < 3 ; i++)
{
delimOpen[i] = keywords.words[0][i] ==
'0'?'\0':keywords.words[0][i];
delimClose[i] = keywords.words[0][i+3] ==
'0'?'\0':keywords.words[0][i+3];
+ delimEscape[i] = (strlen(keywords.words[0]) < 9 ||
keywords.words[0][i+6]
== '0') ? '\0' : keywords.words[0][i+6];
}
StyleContext sc(startPos, length, initStyle, styler);
@@ -262,21 +264,21 @@
case SCE_USER_DELIMITER1 :
{
- if (delimClose[0] && (sc.ch == delimClose[0]))
+ if (delimClose[0] && (sc.ch == delimClose[0])
&& chPrevNonWhite !=
delimEscape[0])
sc.ForwardSetState(SCE_USER_DEFAULT);
break;
}
case SCE_USER_DELIMITER2 :
{
- if (delimClose[0] && (sc.ch == delimClose[1]))
+ if (delimClose[0] && (sc.ch == delimClose[1])
&& chPrevNonWhite !=
delimEscape[1])
sc.ForwardSetState(SCE_USER_DEFAULT);
break;
}
case SCE_USER_DELIMITER3 :
{
- if (delimClose[0] && (sc.ch == delimClose[2]))
+ if (delimClose[0] && (sc.ch == delimClose[2])
&& chPrevNonWhite !=
delimEscape[2])
sc.ForwardSetState(SCE_USER_DEFAULT);
break;
}
______________________________________________________________________
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: Fri, 18 Apr 2008 00:23:53 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Does Update =
Lose all configuration?
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=4912559
By: ashayak
Hi ,
After i updated to the new version of Notepad++ , the function list plugin
was not working properly , i manually downloaded the 1.2 version of the same
and installed the plugin again , now it works fine.
Can somebody please tell me what the problem was ?...
______________________________________________________________________
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: Fri, 18 Apr 2008 00:43:25 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] Edit
timecode in subtitle-files (.srt)
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=4912589
By: nobody
It would be great if someone would add a plugin to Notepad++ which could alter
all timecodes by a given amount of time... e.g.:
shift all values with 1,700 seconds
or
adjust all timecodes to a start and end time.
If I could I would have done it already ;)
grtz,
GraphMan
______________________________________________________________________
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: Fri, 18 Apr 2008 01:26:56 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
Plugin: NPPTextFX
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=4912670
By: nobody
> The TextFX short seems not to work correctly.
No, it is you who does not seem to understand the sorting.
All lines are sorted by their characters, compared position by position.
All characters up to the dot (.) are all the same.
The next position contains the characters 1 or 2.
The character 1 (ASCII code 49) is "less than" 2 (ASCII code 50).
Therefor, all lines have a 1 at that position will be placed before all lines
with a 2 at that position.
There are three lines with a 1, one ending there, two with an additional
character,
0 or 9. They are also sorted in the correct order.
You may even add an extra digit to one of those lines (.109 and .19 for example)
to get similar results: .109 will appear before .19.
You see numbers, but Notepad++ doesn't.
But you can fool Notepad++ if you like, by prefixing shorter numbers with
zero's:
document.01
document.02
document.10
document.19
or
document.001
document.002
document.019
document.109
There lines will always sort in this order you "expect".
______________________________________________________________________
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: 7
Date: Fri, 18 Apr 2008 01:30:13 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
Plugin: NPPTextFX
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=4912684
By: nobody
How do you think Notepad++ should sort the following texts?
0.1
0.10
0.19
0.2
0,109
0,19
0,2
______________________________________________________________________
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: Fri, 18 Apr 2008 01:31:29 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
About the last update NPP version exist BUG.
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=4912687
By: nobody
Does this have anything to do with Plugin Development?
______________________________________________________________________
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: 9
Date: Fri, 18 Apr 2008 01:32:28 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
Edit timecode in subtitle-files (.srt)
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=4912689
By: nobody
Sure, I guess you do not have Excel on your computer?
'Cause if you would, you would have used that.
______________________________________________________________________
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: 10
Date: Fri, 18 Apr 2008 01:39:11 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: "Find" bug
(seems serious...)
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=4912704
By: nobody
These referenced threads clearly describe what the problem is.
> When you use Find, and the next result isn't in the current view, Notepad++
does NOT
> scroll down to show it---or any of the subsequent results, either.
The original problem of this thread states that Notepad++ does not scroll at
all.
So this seems to be another, unrelated, problem.
______________________________________________________________________
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: Fri, 18 Apr 2008 01:42:41 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Does Update =
Lose all configuration?
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=4912710
By: nobody
"Function list"
http://sourceforge.net/forum/forum.php?thread_id=1755373&forum_id=482781
______________________________________________________________________
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: 12
Date: Fri, 18 Apr 2008 02:06:41 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Boycotting NotePad++ in China
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=4912745
By: quzhi
We should boycott NotePad++ in China...
i have removed NotePad++
______________________________________________________________________
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 2008 JavaOne(SM) Conference
Don't miss this year's exciting event. There's still time to save $100.
Use priority code J8TL2D2.
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
------------------------------
_______________________________________________
Notepad-plus-plus mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus
End of Notepad-plus-plus Digest, Vol 23, Issue 50
*************************************************