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: Simple scripting
plugin in development (SourceForge.net)
2. [notepad-plus - Plugin Development] RE: Simple scripting
plugin in development (SourceForge.net)
3. [notepad-plus - Help] multiple instances of NP++ w/ tabs
(SourceForge.net)
4. [notepad-plus - Help] Light Explorer and shortcuts
(SourceForge.net)
5. [notepad-plus - Help] Language associations..xml, asp.net
(SourceForge.net)
6. [notepad-plus - Plugin Development] RE: Simple scripting
plugin in development (SourceForge.net)
7. [notepad-plus - Open Discussion] Is it possible to mark /
copy a BLOCK of text (SourceForge.net)
8. [notepad-plus - Open Discussion] RE: Is it possible to mark /
copy a BLOCK of (SourceForge.net)
----------------------------------------------------------------------
Message: 1
Date: Fri, 16 Nov 2007 12:05:00 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
Simple scripting plugin in development
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=4627694
By: fidvo
I've got a few more functions at least started:
lowercase(): Converts the entire document to lowercase letters.
reverselines(): Reverses the order of all the lines.
setlineformat(style)*: 1=Windows, 2=Unix, 3=Mac
sortcase(): like sort, but case-sensitive.
uppercase(): Converts the entire document to uppercase letters.
upperfirst(): Capitalizes the first letter of every word, lowercases all other
letters.
*I included this as a workaround because some of the functions use Delphi's
TStringList type, which means that any calls to those functions will convert
the text to Windows Format. You can run this function at the end of a script
to convert it back to your favorite style.
And here are some that I haven't worked on yet, but should make it into the
final product. These are probably useful for converting between fixed-length
and delimited text files.
splitlines(delimiter): splits each line into multiple lines based on the chosen
delimiter
unwrapdelim(blanklinecount,spacecount,tabcount,delimiter): like unwrap, but
converts line breaks to delimiters.
stripleft(text): For each line, if the beginning of the line matches the text,
strip off that text.
stripright(text): For each line, if the end of the line matches the text, strip
off that text.
cutleft(count): Removes count characters from the beginning of each line.
cutright(count): Removes count characters from the end of each line.
shortenleft(length): Removes characters from the beginning of each line if the
line is too long
shortenright(length): Removes characters from the end of each line if the line
is too long
padleft(padchar,length): Pads the beginning of each line with padchar to extend
the length where necessary
padright(padchar,length): Pads the end of each line with padchar to extend the
length where necessary
sizeleft(padchar,length): Pads or cuts the beginning of each line to make it
the exact length
sizeright(padchar,length): Pads or cuts the end of each line to make it the
exact length
It's actually going faster than I had anticipated; I might even have a working
plugin some time this weekend.
Any other ideas for functions you would like to see?
______________________________________________________________________
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: Fri, 16 Nov 2007 12:23:05 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
Simple scripting plugin in development
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=4627705
By: merijnb
on regular expression in delphi check:
http://www.regexpstudio.com/TRegExpr/TRegExpr.html
and
http://www.yunqa.de/delphi/doku.php/products/regex/index
______________________________________________________________________
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: Fri, 16 Nov 2007 12:27:26 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] multiple instances
of NP++ w/ tabs
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=4627709
By: nobody
I can't open multiple instances of notepad++, is it possible? I would like
to have 2-3 open, all with tabbed view, not just one.
Thanks
RW
______________________________________________________________________
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, 16 Nov 2007 12:28:25 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Light Explorer and
shortcuts
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=4627712
By: nobody
Light Explorer opens shortcuts to a folder as a file and doesnt follow them
to the pointing file or folder. Also, does not show folders with a dot at the
start of the folder name, ie ".MyFolder"
Thanks
RW
______________________________________________________________________
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, 16 Nov 2007 12:31:14 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Language
associations..xml, asp.net
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=4627720
By: nobody
web.config files and other web-based files do not register as an xml, asp.net
or html file. How do you configure NP++ to open in a language based on the
type of syntax the file has?
Thanks
RW
______________________________________________________________________
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, 16 Nov 2007 13:11:02 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
Simple scripting plugin in development
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=4627776
By: fidvo
Thanks for the links.
I might play around with those a little in my programming for myself, but
unfortunately, since I'm using a template that Zobo sent me that's licensed
under the GPL, I can't release my plugin unless it only uses code that's under
a GPL-compatible license. Neither of the ones you linked to fit the criteria.
Thanks anyway, though. I appreciate the effort.
______________________________________________________________________
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, 16 Nov 2007 13:49:37 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Is it
possible to mark / copy a BLOCK of text
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=4627824
By: nobody
Is it possible to mark text (for copy/cut) by row and column eg. mark column
10-25, line 4-10). This would be handy when editing test data. Furthermore it
would be great if changes (REPLACE) would only work on that selected block.
______________________________________________________________________
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: Fri, 16 Nov 2007 14:17:40 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Is
it possible to mark / copy a BLOCK of
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=4627867
By: fidvo
If you're just talking about dragging the mouse from point A to point B to
select,
then hold down the ALT key while you drag. This should highlight a rectangular
block.
______________________________________________________________________
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
[email protected]
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus
End of Notepad-plus-plus Digest, Vol 18, Issue 49
*************************************************