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 FunctionList v
2.0 ALPHA (SourceForge.net)
2. [notepad-plus - Translation] RE: German Translation 4.1.2
Help (SourceForge.net)
3. [notepad-plus - Plugin Development] RE: New Plugin available:
FTP_synchronize (SourceForge.net)
4. [notepad-plus - Help] explorer file icons (SourceForge.net)
5. [notepad-plus - Plugin Development] RE: Delete Line Question
(SourceForge.net)
6. [notepad-plus - Help] RE: Crash when opening a dat file
(SourceForge.net)
7. [notepad-plus - Plugin Development] CRASH (SourceForge.net)
8. [notepad-plus - Open Discussion] Feature Req: Remove trailing
spaces on save (SourceForge.net)
9. [notepad-plus - Open Discussion] RE: Feature Req: Remove
trailing spaces on sa (SourceForge.net)
10. [notepad-plus - Help] RE: Wildcard text replacing?
(SourceForge.net)
11. [notepad-plus - Open Discussion] Request: Compare file
contents (SourceForge.net)
12. [notepad-plus - Help] RE: Clickable URL in all filetypes
(SourceForge.net)
13. [notepad-plus - Help] RE: Block comment in column 1
(SourceForge.net)
----------------------------------------------------------------------
Message: 1
Date: Sat, 21 Jul 2007 03:48:35 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
NEW FunctionList v 2.0 ALPHA
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=4424262
By: nobody
Please look into the HELP box. Here you can see what Function Begin/Name/End
means!
However, move the rule of FUNCEND of #1 to BODYEND.
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: 2
Date: Sat, 21 Jul 2007 04:27:32 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Translation] RE: German
Translation 4.1.2 Help
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=4424282
By: nobody
Hallo,
vielleicht w?re es an der Zeit die deutsche ?bersetzung gemeinschaftlich zu
?berarbeiten. Meiner Meinung nach w?rde sich hierf?r ein Wiki anbieten, sprich
eine Seite, auf der alle Strings aus der XML-Datei enthalten und editierbar
sind. Am besten dann auch noch mit Login, so dass es niemandem zu leicht gemacht
wird, alles kaputt zu machen.
Was haltet Ihr davon?
Gru?,
W!
______________________________________________________________________
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=558104
------------------------------
Message: 3
Date: Sat, 21 Jul 2007 04:29:31 -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=4424283
By: nobody
Please change the design. It's ugly! It do not fit into Notepad++ style! Add
for example a toolbar into your plugin to add the upload and download icons.
Use at best icons from famfamfam for your plugin:
http://www.famfamfam.com/lab/icons/silk/preview.php
Regarding the clear button. Please think about to find another solution. Maybe
right mouse botton menu to clear/copy the log messages.
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: 4
Date: Sat, 21 Jul 2007 12:34:43 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] explorer file icons
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=4424666
By: nobody
hello friends.
I think that the last installation of notepad++ messes up the file icons.
I mean, till now, associated file types would get the icon of notepad++ and
now they are showing the default windows icon (as if it does not related to
anything).
i have this problem in 2 computers. anyone knows how to fix this?
Thanks.
______________________________________________________________________
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: Sat, 21 Jul 2007 13:49:37 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
Delete Line Question
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=4424726
By: nobody
use this to remove the line content
void replaceCurrentLine(string replacement)
{
unsigned int curPosition = SendMessage(getCurScintilla(),
SCI_GETCURRENTPOS,
(WPARAM)0, (LPARAM)0);
unsigned int curLineNum = SendMessage(getCurScintilla(),
SCI_LINEFROMPOSITION,
(WPARAM)curPosition, (LPARAM)0);
unsigned int startPos = SendMessage(getCurScintilla(),
SCI_POSITIONFROMLINE,
(WPARAM)curLineNum, (LPARAM)0);
unsigned int endPos = SendMessage(getCurScintilla(),
SCI_GETLINEENDPOSITION,
(WPARAM)curLineNum, (LPARAM)0);
SendMessage(getCurScintilla(), SCI_SETSEL, (WPARAM)startPos,
(LPARAM)endPos);
SendMessage(getCurScintilla(), SCI_REPLACESEL, (WPARAM)0,
(LPARAM)replacement.c_str());
}
______________________________________________________________________
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, 21 Jul 2007 15:38:25 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Crash when
opening a dat file
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=4424783
By: nobody
I've tried the file on two pc (but both with XP).
NP crash always I try to open it.
I've also tried to change the file extension in txt, but is the same.
With notepad or Ultraedit I can open the file without problem.
What's wrong with this?
______________________________________________________________________
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: Sun, 22 Jul 2007 03:09:31 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] CRASH
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=4425087
By: nobody
This version crashes my Notepad++ when I click at Language -> User Defined
______________________________________________________________________
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: Sun, 22 Jul 2007 04:20:25 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Feature
Req: Remove trailing spaces on save
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=4425132
By: nobody
Configurable options to Remove Trailing White Spaces Before Saving and Convert
Tabs to Spaces Before Saving are welcome.
______________________________________________________________________
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: Sun, 22 Jul 2007 07:17:56 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Feature Req: Remove trailing spaces on sa
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=4425228
By: bullock
<Alt-Shift-S> will trim trailing spaces and save.
Regards.
Greg
______________________________________________________________________
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: Sun, 22 Jul 2007 07:24:32 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Wildcard text
replacing?
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=4425230
By: bullock
<Ctrl-H>
Enter ' for Find what
Enter " for Replace with
Make sure "Regular expression" is not checked.
Make sure "Match whole word only" is not checked.
Click the button of your choice: Find Next, Replace, Replace All, etc.
Regards.
Greg
______________________________________________________________________
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: Sun, 22 Jul 2007 10:11:51 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Request:
Compare file contents
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=4425346
By: nobody
Hello,
is there any way of comparing the text within two files? Would be great if I
could see only the different lines.
Thank you!
______________________________________________________________________
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: Sun, 22 Jul 2007 13:14:39 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Clickable URL
in all filetypes
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=4425477
By: coder775
You bumped an old thread. Old threads are not updated often; this type
of information is usually in the version release comments.
Yes, this feature is implemented in the latest versions. See the Settings menu
> Preferences dialog > MISC tab > Clickable links setting. HTTP support only,
at the moment. --Joel
______________________________________________________________________
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: 13
Date: Sun, 22 Jul 2007 13:21:29 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Block comment
in column 1
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=4425483
By: coder775
I don't think you can, currently (4.1.2), or at least I've not seen a way.
You might want to submit a feature request or check if a similar one has already
been posted. Look at the Tracker menu above. --Joel
______________________________________________________________________
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
------------------------------
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
------------------------------
_______________________________________________
Notepad-plus-plus mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus
End of Notepad-plus-plus Digest, Vol 14, Issue 32
*************************************************