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: how to make plugins
(SourceForge.net)
2. [notepad-plus - Open Discussion] RE: Very Slow Replacement in
Column Selections (SourceForge.net)
3. [notepad-plus - Open Discussion] RE: Very Slow Replacement in
Column Selections (SourceForge.net)
4. [notepad-plus - Plugin Development] RE: Plugin to change the
cursor jump acting ? (SourceForge.net)
5. [notepad-plus - Open Discussion] RE: Very Slow Replacement in
Column Selections (SourceForge.net)
6. [notepad-plus - Help] How to preview php file from localhost?
(SourceForge.net)
7. [notepad-plus - Open Discussion] Notepad++ 4.9 release (May
be UNSTABLE) (SourceForge.net)
8. [notepad-plus - Open Discussion] Feature request - MRU w/o
document switcher (SourceForge.net)
9. [notepad-plus - Open Discussion] RE: Notepad++ 4.9 release
(May be UNSTABLE) (SourceForge.net)
10. [notepad-plus - Open Discussion] Microsoft & OpenOffice
(SourceForge.net)
11. [notepad-plus - Open Discussion] RE: Microsoft & OpenOffice
(SourceForge.net)
12. [notepad-plus - Help] Change the size of the indent?
(SourceForge.net)
----------------------------------------------------------------------
Message: 1
Date: Sat, 26 Apr 2008 12:28:53 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
how to make plugins
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=4929986
By: mathgod
Yeah, your question is pretty stupid. Joke. Have you considered if your plugin
will return information to npp? I imagine that a functional IDE or front end
will have some feature that reports the lines of where compilation fails. Your
plugin can have a GUI where command switches are selected and after running
a docked window displays results of the captured output.
Tell us what programming you intend to use.
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: Sat, 26 Apr 2008 12:30:27 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Very
Slow Replacement in Column Selections
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=4929987
By: fool4uanyway
You may also be interested in these messages, search results for "+column
+range":
http://sourceforge.net/search/?words=%2Bcolumn+%2Brange&sort=posted_date&sortdir
=desc&offset=0&group_id=95717&forum_id=331753&type_of_search=forums&pmode=0&limi
t=25
Take a look here for an alternative way to do column block selection
replacement,
but think of the possible impact of using this method:
"[featutre Request] column selecting"
http://sourceforge.net/forum/forum.php?thread_id=1877271&forum_id=331753
Perhaps you can even get your desired results by doing a regular expression
replacement on full lines, by accounting for the number of characters before
and after the column range to be changed (or to be deleted) by using
TextCrawler.
"Tools to find and copy regex matches in files" (New)
By: Fool4UAnyway (fool4uanyway) - 2008-04-20 01:49
http://sourceforge.net/forum/message.php?msg_id=4915704
in the thread
"copy to clip all text matching regex pattern" (Help forum)
http://sourceforge.net/forum/forum.php?thread_id=2012623&forum_id=331754
dealing with the question how to extract only all matches instead of complete
lines.
I didn't check, but I assume you can simply perform a search for
"
(# number of characters from the beginning of the line)
(# number of characters to be changed)
(perhaps anyting else like a regex that marks the end of the part to be
changed)
"
and replace that by putting back the front and the end and the desired columns
in-between:
"
\1
here's what you want to get
\3
"
Put the regex on one line. I just cut it into three lines and grouped all
expressions
to clarify the idea.
______________________________________________________________________
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: Sat, 26 Apr 2008 12:35:34 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Very
Slow Replacement in Column Selections
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=4929994
By: fool4uanyway
So, if you want to delete the columns 30-50 the Find and Replace fields would
have something like this:
Find field:
^(.{29})(.{21})(.*$)
Replace field:
\1\3
Or, if you don't (want to) group the second column range (there is no need to):
Find field:
^(.{29}).{21}(.*$)
Replace field:
\1\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=331753
------------------------------
Message: 4
Date: Sat, 26 Apr 2008 11:59:40 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
Plugin to change the cursor jump acting ?
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=4929950
By: nobody
What is strg? Is that Ctrl?
______________________________________________________________________
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, 26 Apr 2008 12:10:47 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Very
Slow Replacement in Column Selections
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=4929963
By: fool4uanyway
Keep using ConText in that case.
These are known problems. Look at the search results for "+column +slow".
http://sourceforge.net/search/?words=%2Bcolumn+%2Bslow&sort=posted_date&sortdir=
desc&offset=0&group_id=95717&forum_id=331753&type_of_search=forums&pmode=0&limit
=25
______________________________________________________________________
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: 6
Date: Sat, 26 Apr 2008 14:56:58 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] How to preview php
file from localhost?
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=4930126
By: nobody
Hi, I was wondering if there was a way to preview a php file I was working on
to find the localhost path? For example, if I preview the file it will load
"C:/myfolderhere/test.php" instead of "http://localhost/test.php".
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: 7
Date: Sat, 26 Apr 2008 15:22:53 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion]
Notepad++ 4.9 release (May be UNSTABLE)
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=4930155
By: donho
https://sourceforge.net/project/showfiles.php?group_id=95717&package_id=102072&r
elease_id=595183
You will love this version. At least I do.
Notepad++ v4.9 steals a few of functionalities shamelessly from the other
software.
For example smart highlight (highlight all same tokens while a word is selected)
from Eclipse, Auto-hide menu (toggle by Alt or F10) from IE7 and "Highlight
all" in Incremental search from Firefox.
There're a lot of goodies in this release. Take your time to discover them.
Notepad++ v4.9 fixed bugs and added features (from v4.8.5) :
1. Add smart highlighting feature (double click a word to highlight all the
same word in the document).
2. Enhance visual effect of Mark all feature.
3. Enhance Incremental search dialog docking.
4. Enhance Incremental search : add Highlight all feature.
5. Add auto-hide menu feature (IE7 style menu - Alt or F10 to toggle)
6. Enhance tool bar GUI usability (display a chevron while some tool icons
hidden).
7. Add style transparency feature, right click on color to enable.
8. Fix the files not opening by DnD bug.
9. Enhance Find Replace dialog : Add "Extended" option - search (and replace)
for tabs(\t), newline(\n\r), and a characters by it's value (\o, \x, \b, \d,
\t, \n, \r and \\).
10. Bug fixed : Find dialog always scrolls text into view now.
11. Add places bar in save as dialog
12. Fix non-recognized relative path bug in command line mode (under Dos
prompt).
13. Add 2 messages for doc monitor plugin.
Included plugins :
1. TexFX v0.24a
2. NppExec v0.2 RC3.2
3. Spell Checker v1.3.1
4. MIME Tools v1.4
5. FTP_synchronize v0.9.6
6. NppExport v0.2.7.3
7. Compare plugin v1.5.1
8. Light Explorer v1.4
9. Doc Monitor v2.0
As usual, post here if you find any critical bugs.
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=331753
------------------------------
Message: 8
Date: Sat, 26 Apr 2008 16:27:25 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Feature
request - MRU w/o document switcher
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=4930233
By: nobody
Hello there,
Thank you very much and well done for this editor, I think it's great.
I notice it's not possible to have a MRU-style switching (CTRL+TAB) without
using a document switcher. This is a shame, and it's quite puzzling. Is there
a reason for that? I would have thought these two features were independent.
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=331753
------------------------------
Message: 9
Date: Sat, 26 Apr 2008 16:31:20 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Notepad++ 4.9 release (May be UNSTABLE)
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=4930239
By: nobody
Incremental search RULES!
Highlighting incremental search is even better!!
Thank you so much, looking forward to it.
______________________________________________________________________
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: Sat, 26 Apr 2008 17:26:35 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion]
Microsoft & OpenOffice
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=4930284
By: nobody
I have been in a couple situations that needed a microsoft word doc to be opened
(.doc) or a OpenOffice Document (.odt) and I always wind up thinking too bad
my Notepad++ can't do it. Would this be possible?
______________________________________________________________________
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: 11
Date: Sat, 26 Apr 2008 18:14:34 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Microsoft & OpenOffice
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=4930345
By: nobody
I think this is way outside of the scope for this project. I think you want
this
http://why.openoffice.org/why_great.html
______________________________________________________________________
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: Sat, 26 Apr 2008 18:46:04 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Change the size of
the indent?
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=4930367
By: nobody
Can you change the size of the indentation?
______________________________________________________________________
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 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 71
*************************************************