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 - Help] shortcut for uploading files via ftp
plugin (SourceForge.net)
2. [notepad-plus - Open Discussion] I found a serious bug.
(SourceForge.net)
3. [notepad-plus - Help] regular expression for a number
(SourceForge.net)
4. [notepad-plus - Plugin Development] Guidance for developping
an UNICODE plugin (SourceForge.net)
5. [notepad-plus - Help] regular expression for version number
(SourceForge.net)
6. [notepad-plus - Open Discussion] RE: I found a serious bug -
WHAT THE HECK?! (SourceForge.net)
7. [notepad-plus - Translation] RE: Notepad++ v5.4 english.xml
is updated (SourceForge.net)
8. [notepad-plus - Help] block highlight for delete?
(SourceForge.net)
9. [notepad-plus - Help] How to comment a line where the cursor
is? (SourceForge.net)
10. [notepad-plus - Plugin Development] File Switcher 1.0.3.0
(SourceForge.net)
11. [notepad-plus - Plugin Development] RE: Guidance for
developping an UNICODE plugin (SourceForge.net)
----------------------------------------------------------------------
Message: 1
Date: Fri, 12 Jun 2009 15:34:19 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] shortcut for
uploading files via ftp plugin
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=7441058
By: soelen
Hello there, I just wanted to ask if there's a shortcut which I can upload my
current file via the n++ ftp plugin
Also if there's not shortcut, how can I add one?
regards, soelen!
______________________________________________________________________
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: 2
Date: Fri, 12 Jun 2009 20:07:02 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] I found
a serious 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=7441468
By: rewwreww
please, look this
http://images.upload2world.com/get-6-2009-upload2world_com_jvek.PNG
______________________________________________________________________
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: 3
Date: Fri, 12 Jun 2009 20:36:30 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] regular expression
for a number
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=7441496
By: fool4uanyway
> Even the simple pattern ([0-9])+ fails.
Try either of the following:
[0-9]+
([0-9]+)
\d+
(\d+)
______________________________________________________________________
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: Fri, 12 Jun 2009 20:45:14 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development]
Guidance for developping an UNICODE plugin
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=7441518
By: labz37
I intend to develop a plugin, that basically could process one file or all the
open files within the text editor, based on a modal dialog box. So this does
not appear too complicated.
I am however much worried with new UNICODE thing, that is now in the main stream
with Notepad++.
Of course, compiling a DLL as unicode should not be a problem.
I suspect the NppInsertPlugin sample you can download on the FAQ page does not
deal with Unicode.
To add worries, the link to "Notepad_plus_msgs.h" is broken.
And it's unclear how to deal with 16-bit strings through Scintilla as functions
such as SCI_GETTEXT and SCI_SETTEXTstill deal with pointers to char type.
So ladies and gents, is there any tutorial or reference project that covers
the topics that worry me?
Thanks a lot and hope I can advise on this new plugin fairly soon! :-)
/g
______________________________________________________________________
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: Fri, 12 Jun 2009 20:48:33 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] regular expression
for version number
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=7441525
By: fool4uanyway
> Searching for software version numbers
> (e.g. 1.0.36.14 or 11.1.20090101, etc.)
> Pattern: ([0-9]+)(\.[0-9]+)*
Well, let's see, you want some string that contains digits and dots, but with
additional requirement of a digit to start and end with, I guess.
Try the following:
\d[\.\d]+\d
If a dot is required:
\d+\.\d[\.\d]+\d
If two dots are required:
\d+\.\d[\.\d]+\d\.\d+
Of course, these regular expressions don't exclude strings with multiple
consecutive
dots.
You might just expand the regex to contain the exact number of dots and numbers
by simply mentioning them:
\d+\.\d+\.d+\.\d+
______________________________________________________________________
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: Fri, 12 Jun 2009 20:58:55 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: I
found a serious bug - WHAT THE HECK?!
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=7441540
By: fool4uanyway
Could you please describe what you mean?
First of all, the title seems alarming, but it would be really helpful if you
would include what the bug is about. What part or functionality in Notepad++
does it relate to?
The same goes for your message. Of course, you could extensively descriptibe
the bug, what happens, what not, under what circumstances. Use as many specific
words that may help the search engine to find this occurrence or report of the
bug.
It would be very inconvenient if someone searches for (a solution to) a bug,
but can never find it, simply because it never has been described!
______________________________________________________________________
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: Fri, 12 Jun 2009 21:38:22 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Translation] RE:
Notepad++ v5.4 english.xml is updated
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=7441596
By: igniter
Add "follow current doc" checkbox in Find in file dialog:
<Item id = "1661" name = "follow current doc"/>
______________________________________________________________________
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: 8
Date: Sat, 13 Jun 2009 03:27:22 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] block highlight for
delete?
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=7441892
By: starfire151
How can I use Notepad++ to highlight a range of rows for deletion (aside for
dragging with a mouse)?
Is there a shortcut key for tagging the beginning of a block and another for
tagging the end of the block to highlight the block for copying, moving,
deleting,
etc?
______________________________________________________________________
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: Sat, 13 Jun 2009 05:09:50 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] How to comment a
line where the cursor is?
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=7441966
By: ashleya25
How to comment a single line where the cursor is currently located without
having
to highlight some text in that line. Is this feature even available in
Notepad++???
almost all editors have this feature, even SciTE has this. Can this feature
be added in Notepad++.
Thanks
Ash
______________________________________________________________________
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: Sat, 13 Jun 2009 07:12:58 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] File
Switcher 1.0.3.0
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=7442060
By: davegb3
Hi all,
File Switcher 1.0.3.0 has just been released. It has now been updated to
use the new read only plugin message available in Notepad++ 5.4.3 and above.
This fixes the issue with folds being forgotten when you switch between files.
Also there is now an option to use home and end in either the edit box or the
list box, depending on your preference. Ctrl-Home and Ctrl-End will do the
opposite.
The files are available in their new home on the Notepad++ Plugins project:
http://sourceforge.net/project/showfiles.php?group_id=189927&package_id=323823
There's also a forum over there to discuss it or report any bugs.
Many thanks,
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: 11
Date: Fri, 12 Jun 2009 23:02:00 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
Guidance for developping an UNICODE plugin
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=7441671
By: cchris
The link is not broken for Firefox, though it is indeed in Internet Explorer
(at least 6.0). Since SF says MSIE6.0 is not supported.... we probably can't
help.
CChris
______________________________________________________________________
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
------------------------------
------------------------------------------------------------------------------
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing
server and web deployment.
http://p.sf.net/sfu/businessobjects
------------------------------
_______________________________________________
Notepad-plus-plus mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus
End of Notepad-plus-plus Digest, Vol 37, Issue 35
*************************************************